/external/deqp/framework/delibs/debase/ |
deMath.h | 65 DE_INLINE int deFloatIsInf (float x) { return (x > FLT_MAX) - (x < -FLT_MAX); } 66 DE_INLINE deBool deFloatIsNaN (float x) { return (x != x); } 68 DE_INLINE int deIsInf (double x) { return (x > DBL_MAX) - (x < -DBL_MAX); } 69 DE_INLINE deBool deIsNaN (double x) { return (x != x); } 73 DE_INLINE float deFloatAbs (float x) { return (x >= 0.0f) ? x : -x; } 74 DE_INLINE float deFloatMin (float a, float b) { return (a <= b) ? a : b; } 75 DE_INLINE float deFloatMax (float a, float b) { return (a >= b) ? a : b; } 76 DE_INLINE float deFloatClamp (float x, float mn, float mx) { return (x <= mn) ? mn : ((x >= mx) ? mx : x); } 78 DE_INLINE double deAbs (double x) { return (x >= 0.0) ? x : -x; } 79 DE_INLINE double deMin (double a, double b) { return (a <= b) ? a : b; [all...] |
deInt32.h | 51 DE_INLINE int deAbs32 (int a) 63 DE_INLINE int deMin32 (int a, int b) 74 DE_INLINE int deMax32 (int a, int b) 85 DE_INLINE deUint32 deMinu32 (deUint32 a, deUint32 b) 96 DE_INLINE deUint32 deMaxu32 (deUint32 a, deUint32 b) 110 DE_INLINE deBool deInRange32 (int a, int mn, int mx) 124 DE_INLINE deBool deInBounds32 (int a, int mn, int mx) 136 DE_INLINE int deClamp32 (int a, int mn, int mx) 149 DE_INLINE int deSign32 (int a) 161 DE_INLINE deInt32 deSignBit32 (deInt32 a [all...] |
deMemory.h | 52 DE_INLINE void deMemset (void* ptr, int value, size_t numBytes) 58 DE_INLINE int deMemCmp (const void* a, const void* b, size_t numBytes) 70 DE_INLINE void* deMemcpy (void* dst, const void* src, size_t numBytes) 75 DE_INLINE void* deMemmove (void* dst, const void* src, size_t numBytes)
|
deDefs.h | 234 # define DE_INLINE __forceinline 236 # define DE_INLINE static __inline__ 238 # define DE_INLINE inline /*!< Function inline. */ 270 DE_INLINE deBool deGetFalse (void) { return DE_FALSE; } 271 DE_INLINE deBool deGetTrue (void) { return DE_TRUE; }
|
deMemory.c | 126 DE_INLINE AlignedAllocHeader* getAlignedAllocHeader (void* ptr)
|
/external/deqp/framework/delibs/destream/ |
deInStream.h | 38 DE_INLINE deStreamResult deInStream_read (deInStream* stream, void* buf, deInt32 bufSize, deInt32* numWritten); 39 DE_INLINE deStreamResult deInStream_deinit (deInStream* stream); 40 DE_INLINE const char* deInStream_getError (deInStream* stream); 41 DE_INLINE deStreamStatus deInStream_getStatus(deInStream* stream); 44 DE_INLINE deStreamResult deInStream_read (deInStream* stream, void* buf, deInt32 bufSize, deInt32* numWritten) 49 DE_INLINE deStreamResult deInStream_deinit (deInStream* stream) 54 DE_INLINE const char* deInStream_getError (deInStream* stream) 59 DE_INLINE deStreamStatus deInStream_getStatus(deInStream* stream)
|
deOutStream.h | 38 DE_INLINE deStreamResult deOutStream_write (deOutStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten); 39 DE_INLINE deStreamResult deOutStream_flush (deOutStream* stream); 40 DE_INLINE deStreamResult deOutStream_deinit (deOutStream* stream); 41 DE_INLINE const char* deOutStream_getError (deOutStream* stream); 42 DE_INLINE deStreamStatus deOutStream_getStatus (deOutStream* stream); 45 DE_INLINE deStreamResult deOutStream_write (deOutStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten) 50 DE_INLINE deStreamResult deOutStream_flush (deOutStream* stream) 55 DE_INLINE deStreamResult deOutStream_deinit (deOutStream* stream) 60 DE_INLINE const char* deOutStream_getError (deOutStream* stream) 65 DE_INLINE deStreamStatus deOutStream_getStatus (deOutStream* stream [all...] |
deIOStream.h | 77 DE_INLINE deStreamResult deIOStream_read (deIOStream* stream, void* buf, deInt32 bufSize, deInt32* numRead); 78 DE_INLINE deStreamResult deIOStream_write (deIOStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten); 79 DE_INLINE const char* deIOStream_getError (deIOStream* stream); 80 DE_INLINE deStreamStatus deIOStream_getStatus (deIOStream* stream); 81 DE_INLINE deStreamResult deIOStream_flush (deIOStream* stream); 82 DE_INLINE deStreamResult deIOStream_deinit (deIOStream* stream); 86 DE_INLINE deStreamResult deIOStream_write (deIOStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten) 95 DE_INLINE deStreamResult deIOStream_read (deIOStream* stream, void* buf, deInt32 bufSize, deInt32* numRead) 104 DE_INLINE const char* deIOStream_getError (deIOStream* stream) 113 DE_INLINE deStreamResult deIOStream_flush (deIOStream* stream [all...] |
/external/deqp/framework/delibs/deimage/ |
deARGB.h | 32 DE_INLINE deARGB deARGB_set (int r, int g, int b, int a) 41 DE_INLINE deARGB deARGB_white (void) { return deARGB_set(0xFF, 0xFF, 0xFF, 0xFF); } 42 DE_INLINE deARGB deARGB_black (void) { return deARGB_set(0, 0, 0, 0xFF); } 44 DE_INLINE int deARGB_getRed (deARGB argb) { return (int)((argb >> 16) & 0xFF); } 45 DE_INLINE int deARGB_getGreen (deARGB argb) { return (int)((argb >> 8) & 0xFF); } 46 DE_INLINE int deARGB_getBlue (deARGB argb) { return (int)((argb >> 0) & 0xFF); } 47 DE_INLINE int deARGB_getAlpha (deARGB argb) { return (int)((argb >> 24) & 0xFF); } 49 DE_INLINE deARGB deARGB_multiply (deARGB argb, int f) 61 DE_INLINE deARGB deARGB_add (deARGB a, deARGB b)
|
/external/deqp/framework/delibs/depool/ |
dePoolArray.h | 106 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool); \ 107 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* arr) DE_UNUSED_FUNCTION; \ 108 DE_INLINE deBool TYPENAME##_reserve (TYPENAME* arr, int capacity) DE_UNUSED_FUNCTION; \ 109 DE_INLINE deBool TYPENAME##_setSize (TYPENAME* arr, int size) DE_UNUSED_FUNCTION; \ 110 DE_INLINE void TYPENAME##_reset (TYPENAME* arr) DE_UNUSED_FUNCTION; \ 111 DE_INLINE VALUETYPE TYPENAME##_get (const TYPENAME* arr, int ndx) DE_UNUSED_FUNCTION; \ 112 DE_INLINE void TYPENAME##_set (TYPENAME* arr, int ndx, VALUETYPE elem) DE_UNUSED_FUNCTION; \ 113 DE_INLINE deBool TYPENAME##_pushBack (TYPENAME* arr, VALUETYPE elem) DE_UNUSED_FUNCTION; \ 114 DE_INLINE VALUETYPE TYPENAME##_popBack (TYPENAME* arr) DE_UNUSED_FUNCTION; \ 115 DE_INLINE deBool TYPENAME##_copy (TYPENAME* dst, const TYPENAME* src) DE_UNUSED_FUNCTION; [all...] |
dePoolHeap.h | 66 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool); \ 67 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* heap) DE_UNUSED_FUNCTION; \ 68 DE_INLINE deBool TYPENAME##_reserve (TYPENAME* heap, int capacity) DE_UNUSED_FUNCTION; \ 69 DE_INLINE void TYPENAME##_reset (TYPENAME* heap) DE_UNUSED_FUNCTION; \ 70 DE_INLINE void TYPENAME##_moveDown (TYPENAME* heap, int ndx) DE_UNUSED_FUNCTION; \ 71 DE_INLINE void TYPENAME##_moveUp (TYPENAME* heap, int ndx) DE_UNUSED_FUNCTION; \ 72 DE_INLINE deBool TYPENAME##_push (TYPENAME* heap, VALUETYPE elem) DE_UNUSED_FUNCTION; \ 73 DE_INLINE VALUETYPE TYPENAME##_popMin (TYPENAME* heap) DE_UNUSED_FUNCTION; \ 75 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool) \ 86 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* heap) [all...] |
dePoolHashSet.h | 66 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool); \ 67 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* hashSet) DE_UNUSED_FUNCTION; \ 68 DE_INLINE TYPENAME##Hash* TYPENAME##_getHash (const TYPENAME* hashSet) DE_UNUSED_FUNCTION; \ 69 DE_INLINE deBool TYPENAME##_insert (TYPENAME* hashSet, KEYTYPE key, VALUETYPE value) DE_UNUSED_FUNCTION; \ 70 DE_INLINE deBool TYPENAME##_safeInsert (TYPENAME* hashSet, KEYTYPE key, VALUETYPE value) DE_UNUSED_FUNCTION; \ 71 DE_INLINE TYPENAME##Set* TYPENAME##_find (const TYPENAME* hashSet, KEYTYPE key) DE_UNUSED_FUNCTION; \ 72 DE_INLINE void TYPENAME##_delete (TYPENAME* hashSet, KEYTYPE key, VALUETYPE value) DE_UNUSED_FUNCTION; \ 73 DE_INLINE deBool TYPENAME##_exists (const TYPENAME* hashSet, KEYTYPE key, VALUETYPE value) DE_UNUSED_FUNCTION; \ 75 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool) \ 84 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* hashSet) [all...] |
dePoolHashArray.h | 74 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* hashArray) DE_UNUSED_FUNCTION; \ 75 DE_INLINE VALUETYPE* TYPENAME##_find (const TYPENAME* hashArray, KEYTYPE key) DE_UNUSED_FUNCTION; \ 76 DE_INLINE void TYPENAME##_reset (TYPENAME* hashArray) DE_UNUSED_FUNCTION; \ 78 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* hashArray) \ 83 DE_INLINE VALUETYPE* TYPENAME##_find (const TYPENAME* hashArray, KEYTYPE key) \ 100 DE_INLINE void TYPENAME##_reset (TYPENAME* hashArray) \
|
dePoolHash.h | 104 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* hash) DE_UNUSED_FUNCTION; \ 105 DE_INLINE void TYPENAME##Iter_init (const TYPENAME* hash, TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \ 106 DE_INLINE deBool TYPENAME##Iter_hasItem (const TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \ 107 DE_INLINE void TYPENAME##Iter_next (TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \ 108 DE_INLINE KEYTYPE TYPENAME##Iter_getKey (const TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \ 109 DE_INLINE VALUETYPE TYPENAME##Iter_getValue (const TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \ 111 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* hash) \ 116 DE_INLINE void TYPENAME##Iter_init (const TYPENAME* hash, TYPENAME##Iter* iter) \ 139 DE_INLINE deBool TYPENAME##Iter_hasItem (const TYPENAME##Iter* iter) \ 144 DE_INLINE void TYPENAME##Iter_next (TYPENAME##Iter* iter) [all...] |
dePoolSet.h | 102 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* set) DE_UNUSED_FUNCTION; \ 103 DE_INLINE void TYPENAME##Iter_init (const TYPENAME* hash, TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \ 104 DE_INLINE deBool TYPENAME##Iter_hasItem (const TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \ 105 DE_INLINE void TYPENAME##Iter_next (TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \ 106 DE_INLINE KEYTYPE TYPENAME##Iter_getKey (const TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \ 107 DE_INLINE deBool TYPENAME##_safeInsert (TYPENAME* set, KEYTYPE key) DE_UNUSED_FUNCTION; \ 108 DE_INLINE void TYPENAME##_safeDelete (TYPENAME* set, KEYTYPE key) DE_UNUSED_FUNCTION; \ 110 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* set) \ 115 DE_INLINE void TYPENAME##Iter_init (const TYPENAME* hash, TYPENAME##Iter* iter) \ 138 DE_INLINE deBool TYPENAME##Iter_hasItem (const TYPENAME##Iter* iter) [all...] |
dePoolHeap.c | 36 DE_INLINE HeapItem HeapItem_create (int priority, int value) 44 DE_INLINE int HeapItem_cmp (HeapItem a, HeapItem b)
|
dePoolMultiSet.h | 76 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* set) \ 81 DE_INLINE int TYPENAME##_getKeyCount (const TYPENAME* set, KEYTYPE key) \ 89 DE_INLINE deBool TYPENAME##_exists (const TYPENAME* set, KEYTYPE key) \ 94 DE_INLINE deBool TYPENAME##_insert (TYPENAME* set, KEYTYPE key) \ 100 DE_INLINE void TYPENAME##_delete (TYPENAME* set, KEYTYPE key) \
|
deMemPool.c | 426 DE_INLINE void* deMemPool_allocInternal (deMemPool* pool, size_t numBytes, deUint32 alignBytes)
|
/external/deqp/framework/delibs/dethread/ |
deAtomic.h | 39 DE_INLINE deInt32 deAtomicIncrementInt32 (volatile deInt32* dstAddr) 55 DE_INLINE deUint32 deAtomicIncrementUint32 (volatile deUint32* dstAddr) 65 DE_INLINE deInt32 deAtomicDecrementInt32 (volatile deInt32* dstAddr) 81 DE_INLINE deUint32 deAtomicDecrementUint32 (volatile deUint32* dstAddr) 100 DE_INLINE deUint32 deAtomicCompareExchangeUint32 (volatile deUint32* dstAddr, deUint32 compare, deUint32 exchange) 123 DE_INLINE deInt64 deAtomicIncrementInt64 (volatile deInt64* dstAddr) 139 DE_INLINE deUint64 deAtomicIncrementUint64 (volatile deUint64* dstAddr) 149 DE_INLINE deInt64 deAtomicDecrementInt64 (volatile deInt64* dstAddr) 165 DE_INLINE deUint64 deAtomicDecrementUint64 (volatile deUint64* dstAddr) 184 DE_INLINE deUint64 deAtomicCompareExchangeUint64 (volatile deUint64* dstAddr, deUint64 compare, deUint64 exc (…) [all...] |
/external/deqp/framework/qphelper/ |
qpXmlWriter.h | 52 DE_INLINE qpXmlAttribute qpSetStringAttrib (const char* name, const char* value) 63 DE_INLINE qpXmlAttribute qpSetIntAttrib (const char* name, int value) 74 DE_INLINE qpXmlAttribute qpSetBoolAttrib (const char* name, deBool value)
|
qpTestLog.c | 65 DE_INLINE deBool childContainersOk (ContainerType type) 81 DE_INLINE void ContainerStack_reset (ContainerStack* stack) 86 DE_INLINE deBool ContainerStack_isEmpty (const ContainerStack* stack) 91 DE_INLINE deBool ContainerStack_push (ContainerStack* stack, ContainerType type) 105 DE_INLINE ContainerType ContainerStack_pop (ContainerStack* stack) 112 DE_INLINE ContainerType ContainerStack_getTop (const ContainerStack* stack) 272 DE_INLINE void int32ToString (int val, char buf[32]) 277 DE_INLINE void int64ToString (deInt64 val, char buf[32]) 282 DE_INLINE void floatToString (float value, char* buf, size_t bufSize) 287 DE_INLINE void doubleToString (double value, char* buf, size_t bufSize [all...] |
/external/deqp/framework/delibs/dethread/unix/ |
deThreadLocalUnix.c | 38 DE_INLINE deThreadLocal keyToThreadLocal (pthread_key_t key) 43 DE_INLINE pthread_key_t threadLocalToKey (deThreadLocal threadLocal)
|
/external/deqp/framework/opengl/ |
gluShaderLibrary.cpp | 240 DE_INLINE deBool isWhitespace (char c) 245 DE_INLINE deBool isEOL (char c) 250 DE_INLINE deBool isNumeric (char c) 255 DE_INLINE deBool isAlpha (char c) 260 DE_INLINE deBool isCaseNameChar (char c) [all...] |
/external/deqp/framework/delibs/deutil/ |
deSocket.c | 203 DE_INLINE deBool deSocketHandleIsValid (deSocketHandle handle) 761 DE_INLINE void deSocket_setChannelsClosed (deSocket* sock, deUint32 channels)
|
deProcess.c | 80 DE_INLINE deBool beginsWithPath (const char* fileName, const char* pathPrefix)
|