Home | History | Annotate | Download | only in debase

Lines Matching refs:deBool

110 DE_INLINE deBool deInRange32 (int a, int mn, int mx)
124 DE_INLINE deBool deInBounds32 (int a, int mn, int mx)
203 DE_INLINE deBool deIsPowerOfTwo32 (int a)
215 DE_INLINE deBool deIsPowerOfTwo64 (deUint64 a)
227 DE_INLINE deBool deIsPowerOfTwoSize (size_t a)
244 DE_INLINE deBool deIsAligned32 (int a, int align)
256 DE_INLINE deBool deIsAlignedPtr (const void* ptr, deUintptr align)
532 DE_INLINE deBool deInt16Equal (deInt16 a, deInt16 b) { return (a == b); }
533 DE_INLINE deBool deUint16Equal (deUint16 a, deUint16 b) { return (a == b); }
534 DE_INLINE deBool deInt32Equal (deInt32 a, deInt32 b) { return (a == b); }
535 DE_INLINE deBool deUint32Equal (deUint32 a, deUint32 b) { return (a == b); }
536 DE_INLINE deBool deInt64Equal (deInt64 a, deInt64 b) { return (a == b); }
537 DE_INLINE deBool deUint64Equal (deUint64 a, deUint64 b) { return (a == b); }
551 DE_INLINE deBool dePointerEqual (const void* a, const void* b)
567 DE_INLINE deBool deInt64InInt32Range (deInt64 x)
629 deBool signSet = ((deUint32)value & (1u<<(numBits-1))) != 0;