Back to Mame

0.9.8: func_integer.hpp Source File

3rdparty/glm/doc/api/a00032_source.html

latest6.7 KB
Original Source

| | 0.9.8 |

func_integer.hpp

Go to the documentation of this file.

1

13 #pragma once

14

15 #include "setup.hpp"

16 #include "precision.hpp"

17 #include "func_common.hpp"

18 #include "func_vector_relational.hpp"

19

20 namespace glm

21 {

24

33template <precision P, template <typename, precision> class vecType>

34 GLM_FUNC_DECL vecType<uint, P> uaddCarry(

35 vecType<uint, P> const & x,

36 vecType<uint, P> const & y,

37 vecType<uint, P> & carry);

38

47template <precision P, template <typename, precision> class vecType>

48 GLM_FUNC_DECL vecType<uint, P> usubBorrow(

49 vecType<uint, P> const & x,

50 vecType<uint, P> const & y,

51 vecType<uint, P> & borrow);

52

61template <precision P, template <typename, precision> class vecType>

62 GLM_FUNC_DECL void umulExtended(

63 vecType<uint, P> const & x,

64 vecType<uint, P> const & y,

65 vecType<uint, P> & msb,

66 vecType<uint, P> & lsb);

67

76template <precision P, template <typename, precision> class vecType>

77 GLM_FUNC_DECL void imulExtended(

78 vecType<int, P> const & x,

79 vecType<int, P> const & y,

80 vecType<int, P> & msb,

81 vecType<int, P> & lsb);

82

98template <typename T, precision P, template <typename, precision> class vecType>

99 GLM_FUNC_DECL vecType<T, P> bitfieldExtract(

100 vecType<T, P> const & Value,

101int Offset,

102int Bits);

103

118template <typename T, precision P, template <typename, precision> class vecType>

119 GLM_FUNC_DECL vecType<T, P> bitfieldInsert(

120 vecType<T, P> const & Base,

121 vecType<T, P> const & Insert,

122int Offset,

123int Bits);

124

133template <typename T, precision P, template <typename, precision> class vecType>

134 GLM_FUNC_DECL vecType<T, P> bitfieldReverse(vecType<T, P> const & v);

135

142template <typename genType>

143 GLM_FUNC_DECL int bitCount(genType v);

144

151template <typename T, precision P, template <typename, precision> class vecType>

152 GLM_FUNC_DECL vecType<int, P> bitCount(vecType<T, P> const & v);

153

162template <typename genIUType>

163 GLM_FUNC_DECL int findLSB(genIUType x);

164

173template <typename T, precision P, template <typename, precision> class vecType>

174 GLM_FUNC_DECL vecType<int, P> findLSB(vecType<T, P> const & v);

175

185template <typename genIUType>

186 GLM_FUNC_DECL int findMSB(genIUType x);

187

197template <typename T, precision P, template <typename, precision> class vecType>

198 GLM_FUNC_DECL vecType<int, P> findMSB(vecType<T, P> const & v);

199

201 }//namespace glm

202

203 #include "func_integer.inl"

glm::uaddCarry

GLM_FUNC_DECL vecType< uint, P > uaddCarry(vecType< uint, P > const &x, vecType< uint, P > const &y, vecType< uint, P > &carry)

Adds 32-bit unsigned integer x and y, returning the sum modulo pow(2, 32).

glm::usubBorrow

GLM_FUNC_DECL vecType< uint, P > usubBorrow(vecType< uint, P > const &x, vecType< uint, P > const &y, vecType< uint, P > &borrow)

Subtracts the 32-bit unsigned integer y from x, returning the difference if non-negative, or pow(2, 32) plus the difference otherwise.

glm::bitfieldInsert

GLM_FUNC_DECL vecType< T, P > bitfieldInsert(vecType< T, P > const &Base, vecType< T, P > const &Insert, int Offset, int Bits)

Returns the insertion the bits least-significant bits of insert into base.

glm::umulExtended

GLM_FUNC_DECL void umulExtended(vecType< uint, P > const &x, vecType< uint, P > const &y, vecType< uint, P > &msb, vecType< uint, P > &lsb)

Multiplies 32-bit integers x and y, producing a 64-bit result.

glm::bitfieldExtract

GLM_FUNC_DECL vecType< T, P > bitfieldExtract(vecType< T, P > const &Value, int Offset, int Bits)

Extracts bits [offset, offset + bits - 1] from value, returning them in the least significant bits of...

glm::findLSB

GLM_FUNC_DECL vecType< int, P > findLSB(vecType< T, P > const &v)

Returns the bit number of the least significant bit set to 1 in the binary representation of value...

glm::bitfieldReverse

GLM_FUNC_DECL vecType< T, P > bitfieldReverse(vecType< T, P > const &v)

Returns the reversal of the bits of value.

glm

Definition: _noise.hpp:11

func_common.hpp

GLM Core

glm::bitCount

GLM_FUNC_DECL vecType< int, P > bitCount(vecType< T, P > const &v)

Returns the number of bits set to 1 in the binary representation of value.

setup.hpp

GLM Core

glm::imulExtended

GLM_FUNC_DECL void imulExtended(vecType< int, P > const &x, vecType< int, P > const &y, vecType< int, P > &msb, vecType< int, P > &lsb)

Multiplies 32-bit integers x and y, producing a 64-bit result.

glm::findMSB

GLM_FUNC_DECL vecType< int, P > findMSB(vecType< T, P > const &v)

Returns the bit number of the most significant bit in the binary representation of value...

precision.hpp

GLM Core

func_vector_relational.hpp

GLM Core


Generated by 1.8.10