Searched refs:TYPENAME (Results 1 - 11 of 11) sorted by relevance
/third_party/vk-gl-cts/framework/delibs/depool/ |
H A D | 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; /* NOLINT(TYPENAME) */ \ 72 TYPENAME* TYPENAME##_create (deMemPool* pool); \ 73 void TYPENAME##_rese [all...] |
H A D | 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; /* NOLIN [all...] |
H A D | 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; /* NOLINT(TYPENAME) */ \ 66 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool); \ 67 DE_INLINE int TYPENAME##_getNumElement [all...] |
H A D | 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; /* NOLINT(TYPENAME) */ \ 66 DE_INLINE TYPENAME* TYPENAM [all...] |
H A D | 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; /* NOLINT(TYPENAME) */ \ 70 TYPENAME* TYPENAME##_creat [all...] |
H A D | 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; /* NOLINT(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##_reserv [all...] |
H A D | 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; /* NOLIN [all...] |
/third_party/python/Modules/ |
H A D | testcapi_long.h | 3 TYPENAME the signed type (like long) 4 F_S_TO_PY convert signed to pylong; TYPENAME -> PyObject* 5 F_PY_TO_S convert pylong to signed; PyObject* -> TYPENAME 6 F_U_TO_PY convert unsigned to pylong; unsigned TYPENAME -> PyObject* 7 F_PY_TO_U convert pylong to unsigned; PyObject* -> unsigned TYPENAME 13 const int NBITS = sizeof(TYPENAME) * 8; in error() 14 unsigned TYPENAME base; in error() 32 TYPENAME in, out; in error() 33 unsigned TYPENAME uin, uout; in error() 42 uin += (unsigned TYPENAME)(TYPENAM in error() [all...] |
H A D | _testcapimodule.c | 491 #define TYPENAME long macro 506 #undef TYPENAME macro 519 #define TYPENAME long long macro 534 #undef TYPENAME macro
|
/third_party/elfutils/lib/ |
H A D | dynamicsizehash.c | 279 # define TYPENAME(name) _TYPENAME (name) in NAME() macro 286 p = ((TYPENAME(NAME) *) p)->next; in NAME() 305 p = ((TYPENAME(NAME) *) p)->next; in NAME() 311 __builtin_prefetch (((TYPENAME(NAME) *) p)->next, 0, 2); in NAME() 313 return ((TYPENAME(NAME) *) (*ptr = p))->data; in NAME()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | generated_message_reflection.cc | 1117 #define DEFINE_PRIMITIVE_ACCESSORS(TYPENAME, TYPE, PASSTYPE, CPPTYPE) \ 1118 PASSTYPE Reflection::Get##TYPENAME(const Message& message, \ 1120 USAGE_CHECK_ALL(Get##TYPENAME, SINGULAR, CPPTYPE); \ 1122 return GetExtensionSet(message).Get##TYPENAME( \ 1129 void Reflection::Set##TYPENAME( \ 1131 USAGE_CHECK_ALL(Set##TYPENAME, SINGULAR, CPPTYPE); \ 1133 return MutableExtensionSet(message)->Set##TYPENAME( \ 1140 PASSTYPE Reflection::GetRepeated##TYPENAME( \ 1142 USAGE_CHECK_ALL(GetRepeated##TYPENAME, REPEATED, CPPTYPE); \ 1144 return GetExtensionSet(message).GetRepeated##TYPENAME(fiel [all...] |
Completed in 15 milliseconds