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

1 2 3 4 56 7 8 91011>>

  /external/clang/test/Analysis/
explain-svals.cpp 3 typedef unsigned long size_t; typedef
20 size_t clang_analyzer_getExtent(void *);
22 size_t strlen(const char *);
free.c 3 typedef __typeof(sizeof(int)) size_t; typedef
5 void *alloca(size_t);
plist-macros.cpp 6 typedef __typeof(sizeof(int)) size_t; typedef
7 void *malloc(size_t);
    [all...]
stream.c 3 typedef __typeof__(sizeof(int)) size_t; typedef
11 extern size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
weak-functions.c 80 typedef typeof(sizeof(int)) size_t; typedef
81 size_t strlen(const char *s) __attribute__((weak_import));
83 size_t strlen_fn() {
loop-widening.c 6 typedef __typeof(sizeof(int)) size_t; typedef
7 void *malloc(size_t);
malloc-overflow.c 4 typedef __typeof__(sizeof(int)) size_t; typedef
5 extern void * malloc(size_t);
43 extern void * malloc (size_t);
malloc.cpp 3 typedef __typeof(sizeof(int)) size_t; typedef
4 void *malloc(size_t);
6 void *realloc(void *ptr, size_t size);
7 void *calloc(size_t nmemb, size_t size);
53 size_t length;
outofbound.c 3 typedef __typeof(sizeof(int)) size_t; typedef
4 void *malloc(size_t);
5 void *calloc(size_t, size_t);
  /external/clang/test/CXX/drs/
dr9xx.cpp 11 __extension__ typedef __SIZE_TYPE__ size_t; typedef in namespace:std
14 const T *p; size_t n;
15 initializer_list(const T *p, size_t n);
  /external/clang/test/CXX/special/class.dtor/
p9.cpp 4 typedef typeof(sizeof(int)) size_t; typedef
38 static void operator delete(void *, size_t) {}; // expected-note {{member 'operator delete' declared here}}
  /external/clang/test/CodeGenCXX/
cxx0x-initializer-stdinitializerlist-pr12086.cpp 7 typedef decltype(sizeof(int)) size_t; typedef in namespace:std
16 size_t __size_;
19 constexpr initializer_list(const _E* __b, size_t __s)
32 typedef size_t size_type;
40 size_t size() const {return __end_ - __begin_;}
46 size_t size() const {return __size_;}
  /external/clang/test/Sema/
builtin-object-size.c 30 typedef __typeof__(sizeof(int)) size_t; typedef
31 void * memcset(void *restrict dst, int src, size_t n);
32 void * memcpy(void *restrict dst, const void *restrict src, size_t n);
warn-strlcpycat-size.c 3 typedef __SIZE_TYPE__ size_t; typedef
4 size_t strlcpy (char * restrict dst, const char * restrict src, size_t size);
5 size_t strlcat (char * restrict dst, const char * restrict src, size_t size);
6 size_t strlen (const char *s);
warn-strncat-size.c 6 typedef __SIZE_TYPE__ size_t; typedef
7 size_t strlen (const char *s);
16 char *strncat(char *restrict s1, const char *restrict s2, size_t n);
  /external/compiler-rt/lib/asan/
asan_new_delete.cc 68 // FreeBSD prior v9.2 have wrong definition of 'size_t'.
73 #define size_t unsigned macro
78 void *operator new(size_t size) { OPERATOR_NEW_BODY(FROM_NEW); }
80 void *operator new[](size_t size) { OPERATOR_NEW_BODY(FROM_NEW_BR); }
82 void *operator new(size_t size, std::nothrow_t const&)
85 void *operator new[](size_t size, std::nothrow_t const&)
89 INTERCEPTOR(void *, _Znwm, size_t size) {
92 INTERCEPTOR(void *, _Znam, size_t size) {
95 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
98 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t size, std::nothrow_t const&)
    [all...]
  /external/mesa3d/src/amd/addrlib/inc/
lnx_common_defs.h 87 typedef __SIZE_TYPE__ size_t; typedef
89 typedef unsigned int size_t; typedef
111 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) // as it is defined in stddef.h
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/
libfdt_env.h 30 typedef UINTN size_t; typedef
50 static inline void* memcpy(void* dest, const void* src, size_t len) {
54 static inline void *memmove(void *dest, const void *src, size_t n) {
58 static inline void *memset(void *s, int c, size_t n) {
66 static inline void *memchr(const void *s, int c, size_t n) {
70 static inline size_t strlen (const char* str) {
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
sigtypes.h 53 typedef _EFI_SIZE_T_ size_t; typedef
115 size_t ss_size; /* signal stack length */
uio.h 47 typedef _EFI_SIZE_T_ size_t; typedef
59 size_t iov_len; /* Length. */
84 size_t uio_resid; /* residual i/o count */
  /external/clang/lib/Headers/
stddef.h 58 /* Always define size_t when modules are available. */
62 typedef __SIZE_TYPE__ size_t; typedef
  /external/clang/test/Analysis/Inputs/
system-header-simulator-cxx-std-suppression.h 10 typedef __typeof__(sizeof(int)) size_t; typedef
11 void *memmove(void *s1, const void *s2, size_t n);
101 __independent_bits_engine(_Engine& __e, size_t __w);
106 ::__independent_bits_engine(_Engine& __e, size_t __w)
system-header-simulator.h 30 typedef __typeof(sizeof(int)) size_t; typedef
32 size_t strlen(const char *);
35 void *memcpy(void *dst, const void *src, size_t n);
46 int setvbuf(FILE * restrict, char * restrict, int, size_t);
68 CGContextRef CGBitmapContextCreate(void *data/*, size_t width, size_t height,
69 size_t bitsPerComponent, size_t bytesPerRow,
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p20.cpp 2 typedef __SIZE_TYPE__ size_t; typedef
8 static void* operator new(size_t);
9 static void operator delete(void*, size_t) {
23 static void* operator new(size_t);
38 static void* operator new(size_t, double, double);
39 static void* operator new(size_t, int, int);
56 static void* operator new(size_t, double, double);
72 static void* operator new(size_t, double, double);
88 static void* operator new(size_t, double, double);
101 static void* operator new(size_t) {
    [all...]
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 11 typedef __SIZE_TYPE__ size_t; typedef
19 char *strncat(char *s1, const char *s2, size_t n);
23 int strncmp(const char *s1, const char *s2, size_t n);
26 char *strncpy(char *s1, const char *s2, size_t n);
27 size_t strlen(const char *s);
29 size_t strspn(const char *s1, const char *s2);
94 size_t t15(void) { return strlen("foo"); }
102 size_t t17(char *x) { return strspn(x, ""); }

Completed in 600 milliseconds

1 2 3 4 56 7 8 91011>>