Home | History | Annotate | Download | only in debase

Lines Matching refs:deInt32

238 DE_INLINE deInt32 deAlign32 (deInt32 val, deInt32 align)
293 DE_INLINE int deLog2Floor32 (deInt32 a)
304 DE_INLINE int deLog2Ceil32 (deInt32 a)
314 DE_INLINE deUint32 deLog2Clz(deInt32 a)
354 DE_INLINE deInt32 deSafeMul32 (deInt32 a, deInt32 b)
356 deInt32 res = a * b;
361 DE_INLINE deInt32 deSafeAdd32 (deInt32 a, deInt32 b)
369 DE_INLINE deInt32 deMulAsr32 (deInt32 a, deInt32 b, int shift)
371 return (deInt32)(((deInt64)a * (deInt64)b) >> shift);
374 DE_INLINE deInt32 deSafeMulAsr32 (deInt32 a, deInt32 b, int shift)
377 DE_ASSERT(res == (deInt64)(deInt32)res);
378 return (deInt32)res;
388 DE_INLINE deInt64 deMul32_32_64 (deInt32 a, deInt32 b)
402 return deClz32((deInt32)(a >> 32));
403 return deClz32((deInt32)a) + 32;
408 DE_INLINE deUint32 deInt32Hash (deInt32 a)
435 DE_INLINE int deUint16Hash (deUint16 v) { return deInt32Hash((deInt32)v); }
436 DE_INLINE int deUint32Hash (deUint32 v) { return deInt32Hash((deInt32)v); }
441 DE_INLINE deBool deInt32Equal (deInt32 a, deInt32 b) { return (a == b); }
467 DE_INLINE deInt32 deInt32ModF(deInt32 n, deInt32 d)
469 deInt32 r = n%d;