HomeSort by relevance Sort by last modified time
    Searched defs:size_t (Results 176 - 200 of 388) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/clang/host/linux-x86/clang-4630689/lib64/clang/6.0.1/include/
stddef.h 58 /* Always define size_t when modules are available. */
62 typedef __SIZE_TYPE__ size_t; typedef
  /prebuilts/clang/host/linux-x86/clang-4639204/lib64/clang/6.0.1/include/
stddef.h 58 /* Always define size_t when modules are available. */
62 typedef __SIZE_TYPE__ size_t; typedef
  /prebuilts/clang/host/linux-x86/clang-4691093/lib64/clang/6.0.2/include/
stddef.h 58 /* Always define size_t when modules are available. */
62 typedef __SIZE_TYPE__ size_t; typedef
  /prebuilts/sdk/renderscript/clang-include/
stddef.h 58 /* Always define size_t when modules are available. */
62 typedef __SIZE_TYPE__ size_t; typedef
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
amigaconfig.h 93 #undef size_t macro
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
OnigurumaUefiPort.h 29 typedef UINTN size_t; typedef
72 int EFIAPI sprintf_s (char *str, size_t sizeOfBuffer, char const *fmt, ...);
  /external/clang/test/CodeGen/
pass-object-size.c 3 typedef unsigned long size_t; typedef
214 int Overload0(void *, size_t, void *, size_t);
241 int Identity(void *p, size_t i) { return i; }
  /external/clang/test/CodeGenCXX/
arm.cpp 8 typedef typeof(sizeof(int)) size_t; typedef
180 void operator delete[](void *, size_t sz);
  /external/clang/test/Driver/
le32-unknown-nacl.cpp 8 typedef __SIZE_TYPE__ size_t; typedef
119 size_t check_size_t() { return 0; }
le64-unknown-unknown.cpp 7 typedef __SIZE_TYPE__ size_t; typedef
110 size_t check_size_t() { return 0; }
wasm32-unknown-unknown.cpp 11 typedef __SIZE_TYPE__ size_t; typedef
92 size_t check_size_t() { return 0; }
wasm64-unknown-unknown.cpp 11 typedef __SIZE_TYPE__ size_t; typedef
92 size_t check_size_t() { return 0; }
  /external/clang/test/Sema/
format-strings-fixit.c 13 typedef __SIZE_TYPE__ size_t; typedef
62 // size_t, etc.
63 printf("%f", (size_t) 42);
69 typedef size_t my_size_type;
116 size_t sizeVar;
151 typedef size_t my_size_type;
198 // CHECK: printf("%zu", (size_t) 42);
  /external/clang/test/SemaCXX/
cxx0x-initializer-scalars.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_;}
  /external/e2fsprogs/e2fsck/
mtrace.h 53 #undef size_t macro
54 #define size_t unsigned int macro
61 extern __ptr_t malloc __P ((size_t __size));
64 extern __ptr_t realloc __P ((__ptr_t __ptr, size_t __size));
66 extern __ptr_t calloc __P ((size_t __nmemb, size_t __size));
71 extern __ptr_t memalign __P ((size_t __alignment, size_t __size));
74 extern __ptr_t valloc __P ((size_t __size));
130 size_t nfree; /* Free fragments in a fragmented block. *
    [all...]
  /external/skia/experimental/svg/model/
SkSVGRenderContext.h 90 void* operator new(size_t) = delete; member in class:SkSVGRenderContext
91 void* operator new(size_t, void*) = delete;
SkSVGValue.h 68 void* operator new(size_t) = delete; member in class:final
69 void* operator new(size_t, void*) = delete;
  /external/skqp/experimental/svg/model/
SkSVGRenderContext.h 90 void* operator new(size_t) = delete; member in class:SkSVGRenderContext
91 void* operator new(size_t, void*) = delete;
SkSVGValue.h 68 void* operator new(size_t) = delete; member in class:final
69 void* operator new(size_t, void*) = delete;
  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 73 #define size_t SizeT macro
83 static inline void *xmemdup(const void *in, size_t c_size, size_t a_size) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
glob.h 27 /* We need `size_t' for the following definitions. */
31 typedef __SIZE_TYPE__ size_t; typedef
37 # define __size_t size_t
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
time.h 70 typedef __size_t size_t; typedef
152 size_t strftime(char *__restrict, size_t, const char *__restrict,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
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) \
306 PyAPI_FUNC(PyObject *) _PyObject_GC_Malloc(size_t); variable
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
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) \
306 PyAPI_FUNC(PyObject *) _PyObject_GC_Malloc(size_t); variable
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/
time.h 14 The types declared are size_t along with clock_t and time_t which are
44 size_t Unsigned integer type of the result of the sizeof operator.
64 size_t strftime (char * __restrict s, size_t maxsize,
86 typedef _EFI_SIZE_T_ size_t; typedef
423 size_t strftime( char * __restrict s, size_t maxsize,

Completed in 4607 milliseconds

1 2 3 4 5 6 78 91011>>