Searched defs:size_t (Results 51 - 75 of 144) sorted by relevance

123456

/external/compiler-rt/SDKs/darwin/usr/include/sys/
H A Dmman.h20 typedef __SIZE_TYPE__ size_t; typedef
37 void *mmap(void *addr, size_t len, int prot, int flags, int fd,
39 int munmap(void *addr, size_t len);
40 int msync(void *addr, size_t len, int flags);
/external/compiler-rt/SDKs/linux/usr/include/sys/
H A Dmman.h20 typedef __SIZE_TYPE__ size_t; typedef
37 extern void *mmap(void *addr, size_t len, int prot, int flags, int fd,
40 extern int munmap(void *addr, size_t len)
42 extern int msync(void *addr, size_t len, int flags)
44 extern int mprotect (void *__addr, size_t __len, int __prot)
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_config_minimal.h38 typedef unsigned int size_t; typedef
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator.h30 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/Analysis/
H A Dstring-fail.c33 typedef typeof(sizeof(int)) size_t; typedef
42 size_t strnlen(const char *s, size_t maxlen);
57 size_t a = strnlen(z.a, 10);
59 size_t b = strnlen(z.a, 10);
65 size_t c = strnlen(z.a, 10);
72 size_t a = strnlen(x, 10);
73 size_t b = strnlen(x, 10);
79 size_t c = strnlen(x, 10);
86 size_t
[all...]
H A Dweak-functions.c80 typedef typeof(sizeof(int)) size_t; typedef
81 size_t strlen(const char *s) __attribute__((weak_import));
83 size_t strlen_fn() {
H A Dcoverage.c4 typedef __typeof(sizeof(int)) size_t; typedef
5 void *malloc(size_t);
H A Dmalloc-overflow.c4 typedef __typeof__(sizeof(int)) size_t; typedef
5 extern void * malloc(size_t);
43 extern void * malloc (size_t);
H A Doutofbound.c3 typedef __typeof(sizeof(int)) size_t; typedef
4 void *malloc(size_t);
5 void *calloc(size_t, size_t);
H A Dplist-macros.cpp6 typedef __typeof(sizeof(int)) size_t; typedef
7 void *malloc(size_t);
H A Dstream.c3 typedef __typeof__(sizeof(int)) size_t; typedef
11 extern size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
/external/clang/test/CXX/special/class.dtor/
H A Dp9.cpp4 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/Sema/
H A Dwarn-strlcpycat-size.c3 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);
H A Dwarn-strncat-size.c6 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/clang/test/SemaCXX/
H A Dcxx0x-compat.cpp36 typedef __typeof(sizeof(int)) size_t; typedef
37 void h(size_t foo, size_t bar) {
H A Dbuiltins.cpp25 typedef __typeof(sizeof(int)) size_t; typedef
26 extern "C" void *__builtin_alloca (size_t);
/external/compiler-rt/lib/asan/
H A Dasan_new_delete.cc52 // FreeBSD prior v9.2 have wrong definition of 'size_t'.
57 #define size_t unsigned macro
62 void *operator new(size_t size) { OPERATOR_NEW_BODY(FROM_NEW); }
64 void *operator new[](size_t size) { OPERATOR_NEW_BODY(FROM_NEW_BR); }
66 void *operator new(size_t size, std::nothrow_t const&)
69 void *operator new[](size_t size, std::nothrow_t const&)
73 INTERCEPTOR(void *, _Znwm, size_t size) {
76 INTERCEPTOR(void *, _Znam, size_t size) {
79 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
82 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t siz
[all...]
/external/stlport/stlport/stl/
H A Dc_locale.h40 typedef unsigned int size_t; typedef
43 typedef unsigned long size_t; typedef
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dvsnprintf.c49 #define size_t ssize_t macro
62 size_t n;
94 size_t n;
108 vsnprintf(char *str, size_t n, char const *fmt, va_list ap)
112 size_t n;
144 snprintf(char *str, size_t n, char const *fmt, ...)
148 size_t n;
/external/clang/lib/Headers/
H A Dstddef.h54 /* Always define size_t when modules are available. */
58 typedef __SIZE_TYPE__ size_t; typedef
/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp20.cpp2 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/
H A Dlibcalls-fno-builtin.c4 typedef __SIZE_TYPE__ size_t; typedef
12 char *strncat(char *s1, const char *s2, size_t n);
16 int strncmp(const char *s1, const char *s2, size_t n);
19 char *strncpy(char *s1, const char *s2, size_t n);
20 size_t strlen(const char *s);
22 size_t strspn(const char *s1, const char *s2);
87 size_t t15(void) { return strlen("foo"); }
95 size_t t17(char *x) { return strspn(x, ""); }
/external/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-stdinitializerlist-pr12086.cpp7 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_;}
H A Dcxx0x-initializer-stdinitializerlist-startend.cpp4 typedef decltype(sizeof(int)) size_t; typedef in namespace:std
22 typedef size_t size_type;
29 size_t size() const {return __end_ - __begin_;}
H A Dlpad-linetable.cpp11 typedef __darwin_size_t size_t; typedef
44 typedef size_t size_type;

Completed in 4737 milliseconds

123456