Searched defs:size_t (Results 1 - 25 of 94) sorted by relevance

1234

/external/compiler-rt/SDKs/darwin/usr/include/
H A Dstring.h20 typedef __SIZE_TYPE__ size_t; typedef
22 int memcmp(const void *, const void *, size_t);
23 void *memcpy(void *, const void *, size_t);
27 size_t strlen(const char *);
28 char *strncpy(char *, const char *, size_t);
H A Dstdlib.h22 typedef __SIZE_TYPE__ size_t; typedef
27 void *malloc(size_t);
H A Dstdio.h21 typedef __SIZE_TYPE__ size_t; typedef
58 size_t fwrite(const void * restrict, size_t, size_t, FILE * restrict)
/external/compiler-rt/SDKs/linux/usr/include/
H A Dstring.h20 typedef __SIZE_TYPE__ size_t; typedef
22 int memcmp(const void *, const void *, size_t);
23 void *memcpy(void *, const void *, size_t);
27 size_t strlen(const char *);
28 char *strncpy(char *, const char *, size_t);
H A Dstdio.h20 typedef __SIZE_TYPE__ size_t; typedef
33 extern size_t fwrite(const void * restrict, size_t, size_t, FILE * restrict);
H A Dstdlib.h22 typedef __SIZE_TYPE__ size_t; typedef
29 void *malloc(size_t) __attribute__((__nothrow__)) __attribute((__malloc__))
/external/clang/test/Analysis/
H A Dcstring-syntax.c3 typedef __SIZE_TYPE__ size_t; typedef
4 char *strncat(char *, const char *, size_t);
5 size_t strlen (const char *s);
H A Dmalloc.cpp3 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);
H A Dtaint-tester.cpp4 typedef __typeof(sizeof(int)) size_t; typedef
7 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
12 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
18 size_t len = 0;
H A Dundef-buffers.c2 typedef __typeof(sizeof(int)) size_t; typedef
3 void *malloc(size_t);
/external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/
H A Dp2-noexceptions.cpp5 typedef __SIZE_TYPE__ size_t; typedef in namespace:std
10 void* operator new(std::size_t);
11 void* operator new[](std::size_t);
H A Dp2.cpp19 typedef __SIZE_TYPE__ size_t; typedef in namespace:std
22 void* operator new(std::size_t) throw(std::bad_alloc); // expected-note{{previous declaration}}
23 void* operator new[](std::size_t) throw(std::bad_alloc);
27 void* operator new(std::size_t); // expected-warning{{'operator new' is missing exception specification 'throw(std::bad_alloc)'}}
/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp20-0x.cpp2 typedef __SIZE_TYPE__ size_t; typedef
6 static void* operator new(size_t, size_t);
8 static void operator delete(void*, size_t); // expected-note{{declared here}}
/external/clang/test/CodeGen/
H A D2004-02-13-Memset.c3 typedef __SIZE_TYPE__ size_t; typedef
4 void *memset(void*, int, size_t);
5 void bzero(void*, size_t);
H A D2002-05-24-Alloca.c3 typedef __SIZE_TYPE__ size_t; typedef
4 void *alloca(size_t size);
/external/clang/test/Sema/
H A Dformat-strings-int-typedefs.c9 printf("%zu", 42.0); // expected-warning {{format specifies type 'size_t' (aka 'unsigned long')}}
18 scanf("%zu", 0); // expected-warning {{format specifies type 'size_t *' (aka 'unsigned long *')}}
26 // typedef size_t et al. to something crazy.
27 typedef void *size_t; typedef
35 printf("%zu", (size_t)42); // expected-warning {{format specifies type 'size_t' (aka 'unsigned long') but the argument has type 'size_t' (aka 'void *')}}
/external/clang/test/SemaCXX/
H A Dattr-sentinel.cpp9 typedef __typeof__(sizeof(int)) size_t; typedef
14 void* operator new(size_t,...) __attribute__((sentinel)); // expected-note {{marked sentinel}}
H A Dconstexpr-strlen.cpp5 typedef decltype(sizeof(int)) size_t; typedef
6 extern size_t strlen(const char *p);
H A Dno-exceptions.cpp5 typedef __SIZE_TYPE__ size_t; typedef
11 void* operator new(size_t x);
/external/compiler-rt/SDKs/linux/usr/include/sys/
H A Dmman.h20 typedef __SIZE_TYPE__ size_t; typedef
26 extern int mprotect (void *__addr, size_t __len, int __prot)
/external/clang/test/CodeGenCXX/
H A Dvirtual-base-ctor.cpp6 typedef __typeof(sizeof(int)) size_t; typedef
7 struct A { int a; A() { y = ((size_t)this - (size_t)&x) / sizeof(void*); } };
H A Ddelete-two-arg.cpp3 typedef __typeof(sizeof(int)) size_t; typedef
6 struct A { void operator delete(void*,size_t); int x; };
23 void *operator new[](size_t);
24 void operator delete[](void *, size_t);
59 void operator delete[](void *, size_t);
/external/clang/test/Headers/
H A Dtypedef_guards.c15 typedef __typeof__(sizeof(int)) size_t; typedef
23 extern void bar(size_t x);
/external/clang/test/PCH/
H A Dva_arg.cpp8 typedef __SIZE_TYPE__ size_t; typedef
11 int vsnprintf(char * , size_t, const char * , va_list) ;
/external/webkit/Tools/android/flex-2.5.4a/MISC/Amiga/
H A Dconfig.h7 #undef size_t macro

Completed in 338 milliseconds

1234