Home | History | Annotate | Download | only in detail

Lines Matching refs:Value

49 	/// modulo pow(2, 32). The value carry is set to 0 if the sum was
64 /// otherwise. The value borrow is set to 0 if x >= y, or to 1 otherwise.
106 /// Extracts bits [offset, offset + bits - 1] from value,
110 /// most significant bits will be set to the value of bit offset + base - 1.
123 genIUType const & Value,
148 /// Returns the reversal of the bits of value.
149 /// The bit numbered n of the result will be taken from bit (bits - 1) - n of value,
150 /// where bits is the total number of bits used to represent value.
157 GLM_FUNC_DECL genIUType bitfieldReverse(genIUType const & Value);
159 /// Returns the number of bits set to 1 in the binary representation of value.
168 GLM_FUNC_DECL typename genIUType<T>::signed_type bitCount(genIUType<T> const & Value);
171 /// 1 in the binary representation of value.
172 /// If value is zero, -1 will be returned.
181 GLM_FUNC_DECL typename genIUType<T>::signed_type findLSB(genIUType<T> const & Value);
183 /// Returns the bit number of the most significant bit in the binary representation of value.
186 /// bit set to 0. For a value of zero or negative one, -1 will be returned.
195 GLM_FUNC_DECL typename genIUType<T>::signed_type findMSB(genIUType<T> const & Value);