/prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/sys/ |
types.h | 90 typedef unsigned int size_t; typedef 93 /* size_t is defined by the GCC-specific <stddef.h> */
|
/prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/machine/ |
_types.h | 40 /* the kernel defines size_t as unsigned int, but g++ wants it to be unsigned long */ 44 typedef unsigned long size_t; typedef
|
/prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/sys/ |
types.h | 90 typedef unsigned int size_t; typedef 93 /* size_t is defined by the GCC-specific <stddef.h> */
|
/prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/machine/ |
_types.h | 40 /* the kernel defines size_t as unsigned int, but g++ wants it to be unsigned long */ 44 typedef unsigned long size_t; typedef
|
/prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/sys/ |
types.h | 90 typedef unsigned int size_t; typedef 93 /* size_t is defined by the GCC-specific <stddef.h> */
|
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/machine/ |
_types.h | 40 /* the kernel defines size_t as unsigned int, but g++ wants it to be unsigned long */ 44 typedef unsigned long size_t; typedef
|
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/sys/ |
types.h | 90 typedef unsigned int size_t; typedef 93 /* size_t is defined by the GCC-specific <stddef.h> */
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/sys/ |
types.h | 90 typedef unsigned int size_t; typedef 93 /* size_t is defined by the GCC-specific <stddef.h> */
|
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/machine/ |
_types.h | 38 /* the kernel defines size_t as unsigned int, but g++ wants it to be unsigned long */ 42 typedef unsigned int size_t; typedef 44 typedef unsigned long size_t; typedef
|
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/sys/ |
types.h | 90 typedef unsigned int size_t; typedef 93 /* size_t is defined by the GCC-specific <stddef.h> */
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/ |
_evc.h | 258 typedef unsigned int size_t; typedef 301 inline void *__cdecl operator new(size_t, void *_P) { return (_P); }
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/ |
_evc.h | 258 typedef unsigned int size_t; typedef 301 inline void *__cdecl operator new(size_t, void *_P) { return (_P); }
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
objimpl.h | 97 PyAPI_FUNC(void *) PyObject_Malloc(size_t); variable 98 PyAPI_FUNC(void *) PyObject_Realloc(void *, size_t); 105 PyAPI_FUNC(void *) _PyObject_DebugMalloc(size_t nbytes); 106 PyAPI_FUNC(void *) _PyObject_DebugRealloc(void *p, size_t nbytes); 111 PyAPI_FUNC(void *) _PyObject_DebugMallocApi(char api, size_t nbytes); 112 PyAPI_FUNC(void *) _PyObject_DebugReallocApi(char api, void *p, size_t nbytes); 115 PyAPI_FUNC(void *) _PyMem_DebugMalloc(size_t nbytes); 116 PyAPI_FUNC(void *) _PyMem_DebugRealloc(void *p, size_t nbytes); 170 /* _PyObject_VAR_SIZE returns the number of bytes (as size_t) allocated for a 185 (size_t) \ 312 PyAPI_FUNC(PyObject *) _PyObject_GC_Malloc(size_t); variable [all...] |
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
objimpl.h | 97 PyAPI_FUNC(void *) PyObject_Malloc(size_t); variable 98 PyAPI_FUNC(void *) PyObject_Realloc(void *, size_t); 105 PyAPI_FUNC(void *) _PyObject_DebugMalloc(size_t nbytes); 106 PyAPI_FUNC(void *) _PyObject_DebugRealloc(void *p, size_t nbytes); 111 PyAPI_FUNC(void *) _PyObject_DebugMallocApi(char api, size_t nbytes); 112 PyAPI_FUNC(void *) _PyObject_DebugReallocApi(char api, void *p, size_t nbytes); 115 PyAPI_FUNC(void *) _PyMem_DebugMalloc(size_t nbytes); 116 PyAPI_FUNC(void *) _PyMem_DebugRealloc(void *p, size_t nbytes); 170 /* _PyObject_VAR_SIZE returns the number of bytes (as size_t) allocated for a 185 (size_t) \ 312 PyAPI_FUNC(PyObject *) _PyObject_GC_Malloc(size_t); variable [all...] |
/external/clang/test/Analysis/ |
NewDelete-checker-test.cpp | 5 typedef __typeof__(sizeof(int)) size_t; typedef 6 extern "C" void *malloc(size_t);
|
bstring.c | 27 typedef typeof(sizeof(int)) size_t; typedef 38 void *__memcpy_chk(void *restrict s1, const void *restrict s2, size_t n, 39 size_t destlen); 41 #define memcpy(a,b,c) __memcpy_chk(a,b,c,(size_t)-1) 46 void *memcpy(void *restrict s1, const void *restrict s2, size_t n); 140 void memcpy_unknown_size (size_t n) { 145 void memcpy_unknown_size_warn (size_t n) { 158 void *__mempcpy_chk(void *restrict s1, const void *restrict s2, size_t n, 159 size_t destlen); 161 #define mempcpy(a,b,c) __mempcpy_chk(a,b,c,(size_t)-1 [all...] |
inline.cpp | 6 typedef __typeof__(sizeof(int)) size_t; typedef 7 extern "C" void *malloc(size_t); 10 inline void* operator new(size_t, void* __p) throw()
|
new.cpp | 6 typedef __typeof__(sizeof(int)) size_t; typedef 7 extern "C" void *malloc(size_t); 42 void *operator new(size_t, size_t, int *); 53 void *operator new(size_t, void *, void *);
|
/external/clang/test/CXX/class.access/ |
p4.cpp | 252 typedef __typeof__(sizeof(int)) size_t; typedef in namespace:test8 255 void *operator new(size_t s); 258 void *operator new(size_t s, int n);
|
/external/clang/test/CXX/drs/ |
dr14xx.cpp | 201 typedef decltype(sizeof(int)) size_t; typedef in namespace:std 208 size_t __size_; 210 initializer_list(const _E* __b, size_t __s) 217 typedef size_t size_type; 224 size_t size() const {return __size_;}
|
/external/clang/test/CodeGenCXX/ |
cxx0x-initializer-stdinitializerlist.cpp | 4 typedef decltype(sizeof(int)) size_t; typedef in namespace:std 11 size_t __size_; 13 initializer_list(const _E* __b, size_t __s) 22 typedef size_t size_type; 29 size_t size() const {return __size_;}
|
mangle-exprs.cpp | 4 typedef decltype(sizeof(int)) size_t; typedef in namespace:std 11 size_t __size_; 13 initializer_list(const _E* __b, size_t __s) 22 typedef size_t size_type; 29 size_t size() const {return __size_;}
|
/external/clang/test/SemaCXX/ |
cxx0x-initializer-constructor.cpp | 7 typedef decltype(sizeof(int)) size_t; typedef in namespace:std 14 size_t __size_; 16 initializer_list(const _E* __b, size_t __s) 25 typedef size_t size_type; 32 size_t size() const {return __size_;} 378 void *operator new(std::size_t, A);
|
scope-check.cpp | 330 typedef decltype(sizeof(int)) size_t; typedef in namespace:std 333 size_t size; 334 initializer_list(const T *, size_t);
|
/external/llvm/include/llvm/ADT/ |
Hashing.h | 73 size_t value; 81 hash_code(size_t value) : value(value) {} 84 /*explicit*/ operator size_t() const { return value; } 94 friend size_t hash_value(const hash_code &code) { return code.value; } 136 void set_fixed_execution_hash_seed(size_t fixed_value); 170 inline uint64_t rotate(uint64_t val, size_t shift) { 190 inline uint64_t hash_1to3_bytes(const char *s, size_t len, uint64_t seed) { 199 inline uint64_t hash_4to8_bytes(const char *s, size_t len, uint64_t seed) { 204 inline uint64_t hash_9to16_bytes(const char *s, size_t len, uint64_t seed) { 210 inline uint64_t hash_17to32_bytes(const char *s, size_t len, uint64_t seed) [all...] |