/external/clang/test/Analysis/ |
comparison-implicit-casts.cpp | 6 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;
|
Malloc+MismatchedDeallocator_intersections.cpp | 4 typedef __typeof(sizeof(int)) size_t; typedef 5 void *malloc(size_t);
|
NewDelete+MismatchedDeallocator_intersections.cpp | 5 typedef __typeof(sizeof(int)) size_t; typedef 6 void *malloc(size_t);
|
NewDelete-variadic.cpp | 5 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, ...);
|
undef-buffers.c | 2 typedef __typeof(sizeof(int)) size_t; typedef 3 void *malloc(size_t);
|
new-with-exceptions.cpp | 6 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;
|
no-outofbounds.c | 22 typedef typeof(sizeof(int)) size_t; typedef 23 void *malloc(size_t); 27 struct vec { size_t len; int data[0]; };
|
string-fail.c | 33 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 a = strnlen(global_strn, 10) [all...] |
taint-tester.cpp | 5 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/clang/test/CodeGen/ |
ms-intrinsics.c | 11 // Intrin.h needs size_t, but -ffreestanding prevents us from getting it from 13 typedef __SIZE_TYPE__ size_t; typedef
|
/external/clang/test/CodeGenCXX/ |
virtual-base-ctor.cpp | 6 typedef __typeof(sizeof(int)) size_t; typedef 7 struct A { int a; A() { y = ((size_t)this - (size_t)&x) / sizeof(void*); } };
|
delete-two-arg.cpp | 4 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/ |
typedef_guards.c | 16 typedef __typeof__(sizeof(int)) size_t; typedef 24 extern void bar(size_t x);
|
/external/clang/test/Modules/Inputs/ |
cxx-inline-namespace.h | 9 typedef int size_t; typedef in namespace:std::__1
|
/external/clang/test/SemaCXX/ |
no-exceptions.cpp | 5 typedef __SIZE_TYPE__ size_t; typedef 11 void* operator new(size_t x);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
new23.cpp | 5 typedef __SIZE_TYPE__ size_t; typedef 6 inline void *operator new (size_t, void *p) throw () { return p; }
|
new16.cpp | 8 typedef __SIZE_TYPE__ size_t; typedef 10 inline void* operator new(size_t, void* __p) throw() { return __p; }
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
new23.cpp | 5 typedef __SIZE_TYPE__ size_t; typedef 6 inline void *operator new (size_t, void *p) throw () { return p; }
|
new16.cpp | 8 typedef __SIZE_TYPE__ size_t; typedef 10 inline void* operator new(size_t, void* __p) throw() { return __p; }
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
pythread.h | 24 PyAPI_FUNC(size_t) PyThread_get_stacksize(void); 25 PyAPI_FUNC(int) PyThread_set_stacksize(size_t); variable
|
intobject.h | 39 PyAPI_FUNC(PyObject *) PyInt_FromSize_t(size_t); variable
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
pythread.h | 24 PyAPI_FUNC(size_t) PyThread_get_stacksize(void); 25 PyAPI_FUNC(int) PyThread_set_stacksize(size_t); variable
|
intobject.h | 39 PyAPI_FUNC(PyObject *) PyInt_FromSize_t(size_t); variable
|
/external/clang/test/Sema/ |
darwin-align-cast.c | 5 typedef __darwin_size_t size_t; typedef 19 ssize_t sendFileDescriptor(int fd, void *data, size_t nbytes, int sendfd) {
|
/art/cmdline/ |
memory_representation.h | 29 // The underlying runtime size_t value is guaranteed to be a multiple of Divisor. 30 template <size_t kDivisor = 1024> 34 static Memory<kDivisor> FromBytes(size_t bytes) { 40 Memory(size_t value) : Value(value) { // NOLINT [runtime/explicit] [5] 43 operator size_t() const { return Value; } 45 size_t ToBytes() const { 58 size_t Value; 61 template <size_t kDivisor>
|