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

1234

/external/stlport/stlport/stl/config/
H A D_evc.h258 typedef unsigned int size_t; typedef
301 inline void *__cdecl operator new(size_t, void *_P) { return (_P); }
/external/clang/test/Analysis/
H A Dbstring.c27 typedef typeof(sizeof(int)) size_t; typedef
36 void *__memcpy_chk(void *restrict s1, const void *restrict s2, size_t n,
37 size_t destlen);
39 #define memcpy(a,b,c) __memcpy_chk(a,b,c,(size_t)-1)
44 void *memcpy(void *restrict s1, const void *restrict s2, size_t n);
139 void memcpy_unknown_size (size_t n) {
145 void memcpy_unknown_size_warn (size_t n) {
158 void *__mempcpy_chk(void *restrict s1, const void *restrict s2, size_t n,
159 size_t destlen);
161 #define mempcpy(a,b,c) __mempcpy_chk(a,b,c,(size_t)
[all...]
H A Dtaint-tester.c7 typedef __typeof(sizeof(int)) size_t; typedef
170 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
176 size_t len = 0;
H A Dmalloc.c4 typedef __typeof(sizeof(int)) size_t; typedef
5 void *malloc(size_t);
6 void *valloc(size_t);
8 void *realloc(void *ptr, size_t size);
9 void *reallocf(void *ptr, size_t size);
10 void *calloc(size_t nmemb, size_t size);
631 p = ((__builtin_object_size (p, 0) != (size_t) -1) ? __builtin___strcpy_chk (p, s, __builtin_object_size (p, 2 > 1)) : __inline_strcpy_chk (p, s));
658 char *strndup(const char *s, size_t n);
H A Dstring.c28 typedef typeof(sizeof(int)) size_t; typedef
36 size_t strlen(const char *s);
58 size_t strlen_null() {
62 size_t strlen_fn() {
66 size_t strlen_nonloc() {
78 size_t a = strlen(z.a);
80 size_t b = strlen(z.a);
86 size_t c = strlen(z.a);
93 size_t a = strlen(x);
94 size_t
[all...]
/external/clang/test/Sema/
H A Duninit-variables.c3 typedef __typeof(sizeof(int)) size_t; typedef
4 void *malloc(size_t);
H A Dformat-strings.c4 typedef __typeof(sizeof(int)) size_t; typedef
8 int snprintf(char *restrict, size_t, const char *restrict, ...);
14 int vsnprintf(char *, size_t, const char *, va_list);
/external/kernel-headers/original/linux/
H A Dtypes.h65 typedef __kernel_size_t size_t; typedef
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_config_win32.h67 typedef unsigned int size_t; typedef
H A DSDL_config_os2.h36 typedef unsigned int size_t; typedef
/external/clang/test/CXX/class.access/
H A Dp4.cpp252 typedef __typeof__(sizeof(int)) size_t; typedef in namespace:test8
255 void *operator new(size_t s);
258 void *operator new(size_t s, int n);
/external/llvm/include/llvm/ADT/
H A DHashing.h84 size_t value;
92 hash_code(size_t value) : value(value) {}
95 /*explicit*/ operator size_t() const { return value; }
105 friend size_t hash_value(const hash_code &code) { return code.value; }
146 void set_fixed_execution_hash_seed(size_t fixed_value);
180 inline uint64_t rotate(uint64_t val, size_t shift) {
200 inline uint64_t hash_1to3_bytes(const char *s, size_t len, uint64_t seed) {
209 inline uint64_t hash_4to8_bytes(const char *s, size_t len, uint64_t seed) {
214 inline uint64_t hash_9to16_bytes(const char *s, size_t len, uint64_t seed) {
220 inline uint64_t hash_17to32_bytes(const char *s, size_t le
[all...]
/external/oprofile/libpopt/
H A Dconfig.h279 /* Define as the maximum value of type 'size_t', if the system doesn't define
326 #undef size_t macro
/external/stlport/stlport/stl/
H A D_bitset.h74 static size_t _S_count(const unsigned char *__beg, const unsigned char *__end)
77 size_t __result = 0;
79 for (size_t i = 0; i < (sizeof(unsigned char) * 8); ++i) {
106 template<size_t _Nw>
119 static size_t _STLP_CALL _S_whichword( size_t __pos ) {
122 static size_t _STLP_CALL _S_whichbyte( size_t __pos ) {
125 static size_t _STLP_CALL _S_whichbit( size_t __po
439 bitset(const string& __s, size_t __pos = 0, size_t __n = (size_t)-1) argument
[all...]
/external/clang/test/Index/
H A Drecursive-cxx-member-calls.cpp2 typedef __darwin_size_t size_t; typedef
7 int memcmp(const void *, const void *, size_t);
8 size_t strlen(const char *);
36 size_t magic_length(const char *s);
41 static const size_t npos = ~size_t(0);
44 size_t Length;
45 static size_t min(size_t a, size_t
[all...]
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp523 // The width of size_t.
539 // size_t. That's just a gloss, though, and it's wrong in one
560 // This will be a size_t.
575 // We want to do all this arithmetic in size_t. If numElements is
624 // numElements is larger than something representable in size_t;
649 // Otherwise, if we're signed, we want to sext up to size_t.
663 // Otherwise, zext up to size_t if necessary.
964 size_t NumPlacementArgs;
972 static size_t getExtraSize(size_t NumPlacementArg
1442 QualType size_t = DeleteFTy->getArgType(1); local
1461 Args.add(RValue::get(Size), size_t); local
[all...]
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx11.cpp11 typedef decltype(sizeof(char)) size_t; typedef
20 template<typename T, size_t N> constexpr T *begin(T (&xs)[N]) { return xs; }
21 template<typename T, size_t N> constexpr T *end(T (&xs)[N]) { return xs + N; }
/external/openssh/
H A Ddefines.h295 typedef unsigned int size_t; typedef
530 # define offsetof(type, member) ((size_t) &((type *)0)->member)
660 int snprintf (char *, size_t, const char *, ...);
/external/valgrind/main/perf/
H A Dtest_input_for_tinycc.c2 typedef unsigned int size_t; typedef
24 extern size_t __ctype_get_mb_cur_max (void) __attribute__ ((__nothrow__));
477 size_t __guardsize;
480 size_t __stacksize;
553 size_t __statelen) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (2)));
583 size_t __statelen,
687 extern void *malloc (size_t __size) __attribute__ ((__nothrow__)) __attribute__ ((__malloc__));
689 extern void *calloc (size_t __nmemb, size_t __size)
698 extern void *realloc (void *__ptr, size_t __siz
[all...]

Completed in 430 milliseconds

1234