Searched refs:size_t (Results 1 - 25 of 11362) sorted by relevance

1234567891011>>

/external/clang/test/Misc/
H A Dfreebsd-arm-size_t.c4 /* Define a size_t as expected for FreeBSD ARM */
5 typedef unsigned int size_t; typedef
7 /* Declare a builtin function that uses size_t */
8 void *malloc(size_t);
/external/clang/test/Modules/Inputs/System/usr/include/
H A Dstdlib.h1 typedef __SIZE_TYPE__ size_t; typedef
/external/jemalloc/include/jemalloc/
H A Djemalloc_typedefs.h3 * chunk_alloc(void *new_addr, size_t size, size_t alignment, bool *zero,
6 typedef void *(chunk_alloc_t)(void *, size_t, size_t, bool *, bool *, unsigned);
10 * chunk_dalloc(void *chunk, size_t size, bool committed, unsigned arena_ind);
12 typedef bool (chunk_dalloc_t)(void *, size_t, bool, unsigned);
16 * chunk_commit(void *chunk, size_t size, size_t offset, size_t length,
19 typedef bool (chunk_commit_t)(void *, size_t, size_
[all...]
/external/clang/test/CXX/special/class.free/
H A Dp1.cpp5 void *operator new(size_t) {
8 void *operator new[](size_t) {
/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/tcpdump/lbl/
H A Dos-osf4.h23 int snprintf(char *, size_t, const char *, ...);
24 int vsnprintf(char *, size_t, const char *, va_list);
/external/clang/test/Sema/
H A Darm-darwin-aapcs.cpp5 // ARM's AAPCS normally has size_t defined as unsigned int, but on Darwin
7 // size_t as unsigned long. Make sure that works.
8 typedef unsigned long size_t; typedef
9 void* malloc(size_t);
10 void* operator new(size_t size)
/external/curl/include/curl/
H A Dstdcheaders.h27 size_t fread (void *, size_t, size_t, FILE *);
28 size_t fwrite (const void *, size_t, size_t, FILE *);
31 int strncasecmp(const char *, const char *, size_t);
/external/google-breakpad/src/third_party/curl/
H A Dstdcheaders.h28 size_t fread (void *, size_t, size_t, FILE *);
29 size_t fwrite (const void *, size_t, size_t, FILE *);
32 int strncasecmp(const char *, const char *, size_t);
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dget_sync_seq.h30 size_t idatal, /* (i) dimension of data */
31 size_t centerStartPos, /* (i) where current block starts */
32 size_t *period, /* (i) rough-pitch-period array (Q-2) */
33 const size_t *plocs, /* (i) where periods of period array are taken (Q-2) */
34 size_t periodl, /* (i) dimension period array */
35 size_t hl, /* (i) 2*hl+1 is the number of sequences */
H A Dnearest_neighbor.h30 size_t* index, /* (o) index of array element closest to value */
31 const size_t* array, /* (i) data array (Q2) */
32 size_t value, /* (i) value (Q2) */
33 size_t arlength /* (i) dimension of data array (==ENH_NBLOCKS_TOT) */
/external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/
H A Dp2-noexceptions.cpp6 typedef __SIZE_TYPE__ size_t; typedef in namespace:std
11 void* operator new(std::size_t);
12 void* operator new[](std::size_t);
/external/curl/src/
H A Dtool_cb_rea.h30 size_t tool_read_cb(void *buffer, size_t sz, size_t nmemb, void *userdata);
/external/clang/test/Headers/Inputs/include/
H A Dstdlib.h2 typedef __SIZE_TYPE__ size_t; typedef
/external/google-breakpad/src/third_party/libdisasm/
H A Dia32_invariant.h6 size_t ia32_disasm_invariant( unsigned char *buf, size_t buf_len,
9 size_t ia32_disasm_size( unsigned char *buf, size_t buf_len );
/external/libpcap/lbl/
H A Dos-osf4.h23 int snprintf(char *, size_t, const char *, ...);
24 int vsnprintf(char *, size_t, const char *, va_list);
H A Dos-osf5.h27 int snprintf(char *, size_t, const char *, ...);
28 int vsnprintf(char *, size_t, const char *, va_list);
/external/netcat/
H A Datomicio.h35 size_t atomicio(ssize_t (*)(int, void *, size_t), int, void *, size_t);
37 #define vwrite (ssize_t (*)(int, void *, size_t))write
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbase64.h12 unsigned char * base64_encode(const unsigned char *src, size_t len,
13 size_t *out_len);
14 unsigned char * base64_decode(const unsigned char *src, size_t len,
15 size_t *out_len);
/external/wpa_supplicant_8/src/utils/
H A Dbase64.h12 unsigned char * base64_encode(const unsigned char *src, size_t len,
13 size_t *out_len);
14 unsigned char * base64_decode(const unsigned char *src, size_t len,
15 size_t *out_len);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbase64.h12 unsigned char * base64_encode(const unsigned char *src, size_t len,
13 size_t *out_len);
14 unsigned char * base64_decode(const unsigned char *src, size_t len,
15 size_t *out_len);
/external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/basic.stc.dynamic.allocation/
H A Dp1.cpp5 void *operator new(size_t);
9 void *operator new(size_t);; // expected-error {{'operator new' cannot be declared inside a namespace}}
12 static void *operator new(size_t); // expected-error {{static declaration of 'operator new' follows non-static declaration}} expected-note {{previous}}
13 static void *operator new(size_t, int, int); // expected-error {{'operator new' cannot be declared static in global scope}}
16 void operator new(size_t); // expected-error {{'operator new' must return type 'void *'}}
24 void *operator new(bool); // expected-error {{'operator new' takes type size_t}}
28 void *operator new(size_t = 0); // expected-error {{parameter of 'operator new' cannot have a default argument}}
32 template<typename T> void *operator new(size_t, int);
36 template<typename T> T operator new(size_t, int); // expected-error {{'operator new' cannot have a dependent return type; use 'void *' instead}}
40 template<typename T> void *operator new(T, int); // expected-error {{'operator new' cannot take a dependent type as first parameter; use size_t}}
[all...]
/external/clang/test/CodeGenCXX/
H A Dnew-alias.cpp3 using size_t = decltype(sizeof(0));
9 void *operator new(size_t) __attribute__((alias("something")));
/external/clang/test/Modules/
H A Dstddef.c8 size_t st; // expected-error {{must be imported}}
13 size_t st2;
/external/compiler-rt/include/sanitizer/
H A Dallocator_interface.h24 size_t __sanitizer_get_estimated_allocated_size(size_t size);
32 size_t __sanitizer_get_allocated_size(const volatile void *p);
35 size_t __sanitizer_get_current_allocated_bytes();
43 size_t __sanitizer_get_heap_size();
49 size_t __sanitizer_get_free_bytes();
53 size_t __sanitizer_get_unmapped_bytes();
60 void __sanitizer_malloc_hook(const volatile void *ptr, size_t size);

Completed in 1549 milliseconds

1234567891011>>