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)
214 DE_INLINE deBool deIsAligned32 (int a, int align)
226 DE_INLINE deBool deIsAlignedPtr (const void* ptr, deUintptr align)
439 DE_INLINE deBool deInt16Equal (deInt16 a, deInt16 b) { return (a == b); }
440 DE_INLINE deBool deUint16Equal (deUint16 a, deUint16 b) { return (a == b); }
441 DE_INLINE deBool deInt32Equal (deInt32 a, deInt32 b) { return (a == b); }
442 DE_INLINE deBool deUint32Equal (deUint32 a, deUint32 b) { return (a == b); }
443 DE_INLINE deBool deInt64Equal (deInt64 a, deInt64 b) { return (a == b); }
444 DE_INLINE deBool deUint64Equal (deUint64 a, deUint64 b) { return (a == b); }
458 DE_INLINE deBool dePointerEqual (const void* a, const void* b)
474 DE_INLINE deBool deInt64InInt32Range(deInt64 x)