Home | History | Annotate | Download | only in debase

Lines Matching defs:sizeof

28 DE_STATIC_ASSERT(sizeof(deUint8)	== 1);
29 DE_STATIC_ASSERT(sizeof(deUint16) == 2);
30 DE_STATIC_ASSERT(sizeof(deUint32) == 4);
31 DE_STATIC_ASSERT(sizeof(deUint64) == 8);
32 DE_STATIC_ASSERT(sizeof(deInt8) == 1);
33 DE_STATIC_ASSERT(sizeof(deInt16) == 2);
34 DE_STATIC_ASSERT(sizeof(deInt32) == 4);
35 DE_STATIC_ASSERT(sizeof(deInt64) == 8);
36 DE_STATIC_ASSERT(sizeof(deUintptr) == sizeof(void*));
37 DE_STATIC_ASSERT(sizeof(deIntptr) == sizeof(void*));
38 DE_STATIC_ASSERT(DE_PTR_SIZE == sizeof(void*));