Searched defs:size_t (Results 26 - 50 of 144) sorted by relevance

123456

/external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/
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/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.cpp4 typedef __typeof(sizeof(int)) size_t; typedef
7 struct A { void operator delete(void*,size_t); int x; };
24 void *operator new[](size_t);
25 void operator delete[](void *, size_t);
60 void operator delete[](void *, size_t);
/external/clang/test/Headers/
H A Dtypedef_guards.c16 typedef __typeof__(sizeof(int)) size_t; typedef
24 extern void bar(size_t x);
/external/clang/test/Modules/Inputs/
H A Dcxx-inline-namespace.h9 typedef int size_t; typedef in namespace:std::__1
/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/clang/test/SemaCXX/
H A Dno-exceptions.cpp5 typedef __SIZE_TYPE__ size_t; typedef
11 void* operator new(size_t x);
H A Dnew-null.cpp4 typedef __SIZE_TYPE__ size_t; typedef
8 void *operator new(size_t n) {
11 void *operator new[](size_t n) noexcept {
18 static size_t x;
19 void *operator new(size_t n) throw() {
22 void *operator new[](size_t n) {
33 void *operator new(size_t n) {
42 void *operator new[](size_t n) {
49 void *operator new(size_t n) noexcept(B) {
58 void *operator new(size_t
[all...]
/external/compiler-rt/SDKs/linux/usr/include/
H A Dstdio.h20 typedef __SIZE_TYPE__ size_t; typedef
39 extern size_t fwrite(const void * restrict, size_t, size_t, FILE * restrict);
40 extern size_t fread(void * restrict, size_t, size_t, FILE * restrict);
/external/clang/test/Analysis/
H A DMalloc+MismatchedDeallocator_intersections.cpp4 typedef __typeof(sizeof(int)) size_t; typedef
5 void *malloc(size_t);
H A DNewDelete+MismatchedDeallocator_intersections.cpp5 typedef __typeof(sizeof(int)) size_t; typedef
6 void *malloc(size_t);
H A DNewDelete-variadic.cpp5 typedef __typeof__(sizeof(int)) size_t; typedef in namespace:std
10 void *operator new(std::size_t, X, ...);
11 void *operator new[](std::size_t, X, ...);
H A Dcomparison-implicit-casts.cpp6 typedef typeof(sizeof(int)) size_t; typedef
19 size_t comparisonSize = sizeof(1 == 1);
21 // Sanity check. This test is useless if size_t isn't bigger than bool.
22 clang_analyzer_eval(sizeof(size_t) > comparisonSize); // expected-warning{{TRUE}}
74 size_t strlen(const char *s);
76 size_t comparisonSize = sizeof(1 == 1);
78 // Sanity check. This test is useless if size_t isn't bigger than bool.
79 clang_analyzer_eval(sizeof(size_t) > comparisonSize); // expected-warning{{TRUE}}
82 size_t value = 1UL;
H A Dundef-buffers.c2 typedef __typeof(sizeof(int)) size_t; typedef
3 void *malloc(size_t);
H A Dnew-with-exceptions.cpp6 typedef __typeof__(sizeof(int)) size_t; typedef
7 extern "C" void *malloc(size_t);
10 inline void* operator new(size_t, void* __p) throw()
16 void *operator new(size_t) throw();
20 void *operator new(size_t) noexcept;
24 void *operator new(size_t);
28 void *operator new(size_t) throw(int);
46 extern void *operator new[](size_t, int) noexcept;
H A Dno-outofbounds.c22 typedef typeof(sizeof(int)) size_t; typedef
23 void *malloc(size_t);
27 struct vec { size_t len; int data[0]; };
H A Dtaint-tester.cpp5 typedef __typeof(sizeof(int)) size_t; typedef
8 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
10 int snprintf(char *, size_t, const char *, ...);
14 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
20 size_t len = 0;
/external/compiler-rt/SDKs/darwin/usr/include/
H A Dstdio.h25 typedef __SIZE_TYPE__ size_t; typedef
79 size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict)
81 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict);
84 int snprintf(char * __restrict, size_t, const char * __restrict, ...);
/external/chromium_org/third_party/expat/files/lib/
H A Dmacconfig.h50 #undef size_t macro
/external/clang/test/CXX/drs/
H A Ddr10xx.cpp8 __extension__ typedef __SIZE_TYPE__ size_t; typedef in namespace:std
11 const T *p; size_t n;
12 initializer_list(const T *p, size_t n);
H A Ddr9xx.cpp10 __extension__ typedef __SIZE_TYPE__ size_t; typedef in namespace:std
13 const T *p; size_t n;
14 initializer_list(const T *p, size_t n);
/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp19.cpp2 typedef __SIZE_TYPE__ size_t; typedef
9 static void* operator new(size_t) {
31 static void* operator new[](size_t) {
/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp2.cpp3 typedef decltype(sizeof(int)) size_t; typedef
5 // FIXME: These diagnostics should say 'size_t' instead of 'unsigned long'
/external/clang/test/Sema/
H A Ddarwin-align-cast.c5 typedef __darwin_size_t size_t; typedef
19 ssize_t sendFileDescriptor(int fd, void *data, size_t nbytes, int sendfd) {
H A Denable_if.c6 typedef unsigned long size_t; typedef
20 size_t __strnlen_chk(const char *s, size_t requested_amount, size_t s_len);
22 size_t strnlen(const char *s, size_t maxlen) // expected-note{{candidate function}}
27 inline size_t strnlen(const char *s, size_t maxlen) // expected-note{{candidate function}}
35 size_t strnlen(const char *s, size_t maxle
[all...]

Completed in 513 milliseconds

123456