Lines Matching refs:DE_INLINE
52 DE_INLINE int deAbs32 (int a) in deAbs32()
64 DE_INLINE int deMin32 (int a, int b) in deMin32()
75 DE_INLINE int deMax32 (int a, int b) in deMax32()
86 DE_INLINE deUint32 deMinu32 (deUint32 a, deUint32 b) in deMinu32()
97 DE_INLINE deUint64 deMinu64 (deUint64 a, deUint64 b) in deMinu64()
108 DE_INLINE deUint32 deMaxu32 (deUint32 a, deUint32 b) in deMaxu32()
122 DE_INLINE deBool deInRange32 (int a, int mn, int mx) in deInRange32()
136 DE_INLINE deBool deInBounds32 (int a, int mn, int mx) in deInBounds32()
148 DE_INLINE int deClamp32 (int a, int mn, int mx) in deClamp32()
161 DE_INLINE int deSign32 (int a) in deSign32()
173 DE_INLINE deInt32 deSignBit32 (deInt32 a) in deSignBit32()
184 DE_INLINE int deRor32 (int val, int r) in deRor32()
199 DE_INLINE int deRol32 (int val, int r) in deRol32()
215 DE_INLINE deBool deIsPowerOfTwo32 (int a) in deIsPowerOfTwo32()
227 DE_INLINE deBool deIsPowerOfTwo64 (deUint64 a) in deIsPowerOfTwo64()
239 DE_INLINE deBool deIsPowerOfTwoSize (size_t a) in deIsPowerOfTwoSize()
255 DE_INLINE deUint32 deSmallestGreaterOrEquallPowerOfTwoU32 (deUint32 a) in deSmallestGreaterOrEquallPowerOfTwoU32()
271 DE_INLINE deUint64 deSmallestGreaterOrEquallPowerOfTwoU64 (deUint64 a) in deSmallestGreaterOrEquallPowerOfTwoU64()
288 DE_INLINE size_t deSmallestGreaterOrEquallPowerOfTwoSize (size_t a) in deSmallestGreaterOrEquallPowerOfTwoSize()
305 DE_INLINE deBool deIsAligned32 (int a, int align) in deIsAligned32()
317 DE_INLINE deBool deIsAligned64 (deInt64 a, deInt64 align) in deIsAligned64()
329 DE_INLINE deBool deIsAlignedPtr (const void* ptr, deUintptr align) in deIsAlignedPtr()
341 DE_INLINE deInt32 deAlign32 (deInt32 val, deInt32 align) in deAlign32()
353 DE_INLINE deInt64 deAlign64 (deInt64 val, deInt64 align) in deAlign64()
365 DE_INLINE void* deAlignPtr (void* ptr, deUintptr align) in deAlignPtr()
378 DE_INLINE size_t deAlignSize (size_t val, size_t align) in deAlignSize()
391 DE_INLINE int deClz32 (deUint32 a) in deClz32()
422 DE_INLINE int deCtz32 (deUint32 a) in deCtz32()
451 DE_INLINE int deLog2Floor32 (deInt32 a) in deLog2Floor32()
462 DE_INLINE int deLog2Ceil32 (deInt32 a) in deLog2Ceil32()
476 DE_INLINE int dePop32 (deUint32 a) in dePop32()
492 DE_INLINE int dePop64 (deUint64 a) in dePop64()
502 DE_INLINE deUint32 deReverseBytes32 (deUint32 v) in deReverseBytes32()
516 DE_INLINE deUint16 deReverseBytes16 (deUint16 v) in deReverseBytes16()
521 DE_INLINE deInt32 deSafeMul32 (deInt32 a, deInt32 b) in deSafeMul32()
528 DE_INLINE deInt32 deSafeAdd32 (deInt32 a, deInt32 b) in deSafeAdd32()
534 DE_INLINE deInt32 deDivRoundUp32 (deInt32 a, deInt32 b) in deDivRoundUp32()
545 DE_INLINE deInt32 deRoundUp32(deInt32 a, deInt32 b) in deRoundUp32()
553 DE_INLINE deInt32 deMulAsr32 (deInt32 a, deInt32 b, int shift) in deMulAsr32()
558 DE_INLINE deInt32 deSafeMulAsr32 (deInt32 a, deInt32 b, int shift) in deSafeMulAsr32()
565 DE_INLINE deUint32 deSafeMuluAsr32 (deUint32 a, deUint32 b, int shift) in deSafeMuluAsr32()
572 DE_INLINE deInt64 deMul32_32_64 (deInt32 a, deInt32 b) in deMul32_32_64()
577 DE_INLINE deInt64 deAbs64 (deInt64 a) in deAbs64()
583 DE_INLINE int deClz64 (deUint64 a) in deClz64()
592 DE_INLINE deUint32 deInt32Hash (deInt32 a) in deInt32Hash()
604 DE_INLINE deUint32 deInt64Hash (deInt64 a) in deInt64Hash()
618 DE_INLINE deUint32 deInt16Hash (deInt16 v) { return deInt32Hash(v); } in deInt16Hash()
619 DE_INLINE deUint32 deUint16Hash (deUint16 v) { return deInt32Hash((deInt32)v); } in deUint16Hash()
620 DE_INLINE deUint32 deUint32Hash (deUint32 v) { return deInt32Hash((deInt32)v); } in deUint32Hash()
621 DE_INLINE deUint32 deUint64Hash (deUint64 v) { return deInt64Hash((deInt64)v); } in deUint64Hash()
623 DE_INLINE deBool deInt16Equal (deInt16 a, deInt16 b) { return (a == b); } in deInt16Equal()
624 DE_INLINE deBool deUint16Equal (deUint16 a, deUint16 b) { return (a == b); } in deUint16Equal()
625 DE_INLINE deBool deInt32Equal (deInt32 a, deInt32 b) { return (a == b); } in deInt32Equal()
626 DE_INLINE deBool deUint32Equal (deUint32 a, deUint32 b) { return (a == b); } in deUint32Equal()
627 DE_INLINE deBool deInt64Equal (deInt64 a, deInt64 b) { return (a == b); } in deInt64Equal()
628 DE_INLINE deBool deUint64Equal (deUint64 a, deUint64 b) { return (a == b); } in deUint64Equal()
630 DE_INLINE deUint32 dePointerHash (const void* ptr) in dePointerHash()
642 DE_INLINE deBool dePointerEqual (const void* a, const void* b) in dePointerEqual()
651 DE_INLINE deInt32 deInt32ModF (deInt32 n, deInt32 d) in deInt32ModF()
658 DE_INLINE deBool deInt64InInt32Range (deInt64 x) in deInt64InInt32Range()
664 DE_INLINE deUint32 deBitMask32 (int leastSignificantBitNdx, int numBits) in deBitMask32()
681 DE_INLINE deUint32 deUintMaxValue32 (int numBits) in deUintMaxValue32()
690 DE_INLINE deInt32 deIntMaxValue32 (int numBits) in deIntMaxValue32()
702 DE_INLINE deInt32 deIntMinValue32 (int numBits) in deIntMinValue32()
714 DE_INLINE deInt32 deSignExtendTo32 (deInt32 value, int numBits) in deSignExtendTo32()
731 DE_INLINE int deIntIsPow2(int powerOf2) in deIntIsPow2()
738 DE_INLINE int deIntRoundToPow2(int number, int powerOf2) in deIntRoundToPow2()
754 DE_INLINE deInt32