/external/deqp/framework/delibs/depool/ |
dePoolMultiSet.h | 39 * \param TYPENAME Type name of the declared multiset. 61 #define DE_DECLARE_POOL_MULTISET(TYPENAME, KEYTYPE) \ 63 DE_DECLARE_POOL_HASH(TYPENAME##Hash, KEYTYPE, int); \ 65 typedef struct TYPENAME##_s \ 69 TYPENAME##Hash* hash; \ 70 } TYPENAME; \ 72 TYPENAME* TYPENAME##_create (deMemPool* pool); \ 73 void TYPENAME##_reset (TYPENAME* set); [all...] |
dePoolHeap.h | 38 * \param TYPENAME Type name of the declared heap. 57 #define DE_DECLARE_POOL_HEAP(TYPENAME, VALUETYPE, CMPFUNC) \ 59 DE_DECLARE_POOL_ARRAY(TYPENAME##Array, VALUETYPE); \ 61 typedef struct TYPENAME##_s \ 63 TYPENAME##Array* array; \ 64 } TYPENAME; \ 66 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool); \ 67 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* heap) DE_UNUSED_FUNCTION; [all...] |
dePoolHashArray.h | 38 * \param TYPENAME Type name of the declared hash-array. 59 #define DE_DECLARE_POOL_HASH_ARRAY(TYPENAME, KEYTYPE, VALUETYPE, KEYARRAYTYPE, VALUEARRAYTYPE) \ 61 DE_DECLARE_POOL_ARRAY(TYPENAME##Array, VALUETYPE); \ 62 DE_DECLARE_POOL_HASH(TYPENAME##Hash, KEYTYPE, int); \ 66 TYPENAME##Hash* hash; \ 67 TYPENAME##Array* array; \ 68 } TYPENAME; \ 70 TYPENAME* TYPENAME##_create (deMemPool* pool); \ 71 deBool TYPENAME##_insert (TYPENAME* hashArray, KEYTYPE key, VALUETYPE value); [all...] |
dePoolArray.h | 62 * \param TYPENAME Type name of the declared array. 92 #define DE_DECLARE_POOL_ARRAY(TYPENAME, VALUETYPE) \ 94 typedef struct TYPENAME##_s \ 104 } TYPENAME; \ 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; [all...] |
dePoolHashSet.h | 38 * \param TYPENAME Type name of the declared hash-set. 57 #define DE_DECLARE_POOL_HASH_SET(TYPENAME, KEYTYPE, VALUETYPE) \ 59 DE_DECLARE_POOL_SET(TYPENAME##Set, VALUETYPE); \ 60 DE_DECLARE_POOL_HASH(TYPENAME##Hash, KEYTYPE, TYPENAME##Set*); \ 61 typedef struct TYPENAME##_s \ 63 TYPENAME##Hash* hash; \ 64 } TYPENAME; \ 66 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool); [all...] |
dePoolSet.h | 46 * \param TYPENAME Type name of the declared set. 66 #define DE_DECLARE_POOL_SET(TYPENAME, KEYTYPE) \ 68 typedef struct TYPENAME##Slot_s TYPENAME##Slot; \ 70 struct TYPENAME##Slot_s \ 73 TYPENAME##Slot* nextSlot; \ 77 typedef struct TYPENAME##_s \ 83 TYPENAME##Slot** slotTable; \ 84 TYPENAME##Slot* slotFreeList; \ 85 } TYPENAME; \ [all...] |
dePoolHash.h | 46 * \param TYPENAME Type name of the declared hash. 67 #define DE_DECLARE_POOL_HASH(TYPENAME, KEYTYPE, VALUETYPE) \ 69 typedef struct TYPENAME##Slot_s TYPENAME##Slot; \ 71 struct TYPENAME##Slot_s \ 74 TYPENAME##Slot* nextSlot; \ 79 typedef struct TYPENAME##_s \ 85 TYPENAME##Slot** slotTable; \ 86 TYPENAME##Slot* slotFreeList; \ 87 } TYPENAME; \ [all...] |
/external/elfutils/lib/ |
dynamicsizehash.c | 279 # define TYPENAME(name) _TYPENAME (name) 286 p = ((TYPENAME(NAME) *) p)->next; 305 p = ((TYPENAME(NAME) *) p)->next; 311 __builtin_prefetch (((TYPENAME(NAME) *) p)->next, 0, 2); 313 return ((TYPENAME(NAME) *) (*ptr = p))->data;
|
/external/protobuf/src/google/protobuf/ |
generated_message_reflection.cc | [all...] |
/prebuilts/misc/common/swig/include/2.0.11/java/ |
java.swg | [all...] |
/frameworks/av/media/libstagefright/foundation/ |
AMessage.cpp | 247 #define BASIC_TYPE(NAME,FIELDNAME,TYPENAME) \ 248 void AMessage::set##NAME(const char *name, TYPENAME value) { \ 255 bool AMessage::find##NAME(const char *name, TYPENAME *value) const { \
|
/prebuilts/go/darwin-x86/src/cmd/yacc/ |
yacc.go | 129 TYPENAME 445 if t != TYPENAME { 495 if t == TYPENAME { 878 fmt.Printf(">>> TYPENAME old <%v> %v\n", tokname, lineno) 880 return TYPENAME 887 fmt.Printf(">>> TYPENAME new <%v> %v\n", tokname, lineno) 889 return TYPENAME 1318 if gettok() != TYPENAME { [all...] |
/prebuilts/go/linux-x86/src/cmd/yacc/ |
yacc.go | 129 TYPENAME 445 if t != TYPENAME { 495 if t == TYPENAME { 878 fmt.Printf(">>> TYPENAME old <%v> %v\n", tokname, lineno) 880 return TYPENAME 887 fmt.Printf(">>> TYPENAME new <%v> %v\n", tokname, lineno) 889 return TYPENAME 1318 if gettok() != TYPENAME { [all...] |
/external/v8/src/js/ |
typedarray.js | 863 macro DATA_VIEW_GETTER_SETTER(TYPENAME)
|