Searched refs:size (Results 1 - 25 of 21594) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dfreemain.c5 void* allocate(long size);
7 void* main(void* context, long size) { argument
8 if (context) return allocate(size);
H A Darm-darwin-aapcs.cpp9 void* operator new(size_t size) argument
11 return (malloc(size));
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DSQLResultSetRowList.cpp36 if (m_result.size() == 0)
39 ASSERT(m_result.size() % m_columns.size() == 0);
41 return m_result.size() / m_columns.size();
/external/eigen/doc/snippets/
H A DTutorial_AdvancedInitialization_ThreeWays.cpp1 const int size = 6; variable
2 MatrixXd mat1(size, size);
3 mat1.topLeftCorner(size/2, size/2) = MatrixXd::Zero(size/2, size/2);
4 mat1.topRightCorner(size/2, size/2) = MatrixXd::Identity(size/
[all...]
/external/chromium/android/
H A Dexecinfo.cc7 int backtrace(void **array, int size) { return 0; } argument
9 char **backtrace_symbols(void *const *array, int size) { return 0; } argument
11 void backtrace_symbols_fd (void *const *array, int size, int fd) {} argument
H A Dexecinfo.h8 int backtrace(void **array, int size);
10 char **backtrace_symbols(void *const *array, int size);
12 void backtrace_symbols_fd (void *const *array, int size, int fd);
/external/chromium_org/media/test/data/
H A Dbear-320x240-manifest.js7 init: { offset: 0, size: 4370},
9 { offset: 4370, size: 40778, timecode: 0.000000 },
10 { offset: 45148, size: 27589, timecode: 0.396000 },
11 { offset: 72737, size: 28183, timecode: 0.779000 },
12 { offset: 100920, size: 31600, timecode: 1.197000 },
13 { offset: 132520, size: 33922, timecode: 1.589000 },
14 { offset: 166442, size: 30587, timecode: 1.987000 },
15 { offset: 197029, size: 22079, timecode: 2.400000 },
H A Dbear-640x360-manifest.js7 init: { offset: 0, size: 4340},
9 { offset: 4340, size: 50950, timecode: 0.000000},
10 { offset: 55290, size: 18785, timecode: 0.527000},
11 { offset: 74075, size: 19810, timecode: 1.014000},
12 { offset: 93885, size: 21706, timecode: 1.522000},
13 { offset: 115591, size: 20249, timecode: 2.016000},
14 { offset: 135840, size: 9946, timecode: 2.515000},
/external/elfutils/libasm/
H A Dasm_adduint8.c37 #define UFCT(size) _UFCT(size)
38 #define _UFCT(size) asm_adduint##size
39 #define FCT(size) _FCT(size)
40 #define _FCT(size) asm_addint##size
41 #define UTYPE(size) _UTYPE(size)
[all...]
/external/hyphenation/
H A Dhnjalloc.h39 hnj_malloc (int size);
42 hnj_realloc (void *p, int size);
/external/llvm/test/MC/ELF/
H A Dbracket.s5 .size x, [.-x)
8 .size y, (.-y]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dgetcwd.c8 char* getcwd(char* buf, size_t size) { argument
9 return ki_getcwd(buf, size);
/external/clang/test/Analysis/
H A Dpr_4164.c11 // The basic issue is that the VarRegion for 'size' is casted to (char*),
21 int size; local
22 socklen_t size_len = sizeof(size);
23 if (getsockopt(s, 0xffff, 0x1001, (char *)&size, &size_len) < 0)
26 return size; // no-warning
36 int size; local
37 if (takes_charptr((char*)&size))
39 return size; // no-warning
/external/clang/test/CodeGen/
H A Dvla-3.c5 void vlaalign(int size) argument
7 char __attribute__((aligned(16))) tmp[size+32];
8 char tmp2[size+16];
/external/dropbear/libtommath/
H A Dbn_mp_unsigned_bin_size.c18 /* get the size for an unsigned equivalent */
21 int size = mp_count_bits (a); local
22 return (size / 8 + ((size & 7) != 0 ? 1 : 0));
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Du_execmem.h5 u_execmem_alloc(unsigned int size);
/external/dropbear/libtomcrypt/src/pk/pkcs1/
H A Dpkcs_1_i2osp.c33 unsigned long size; local
35 size = mp_unsigned_bin_size(n);
37 if (size > modulus_len) {
43 return mp_to_unsigned_bin(n, out+(modulus_len-size));
/external/mesa3d/src/mapi/mapi/
H A Du_execmem.h5 u_execmem_alloc(unsigned int size);
/external/chromium_org/third_party/libwebp/utils/
H A Dutils.c24 // Returns 0 in case of overflow of nmemb * size.
25 static int CheckSizeArgumentsOverflow(uint64_t nmemb, size_t size) { argument
26 const uint64_t total_size = nmemb * size;
28 if ((uint64_t)size > WEBP_MAX_ALLOCABLE_MEMORY / nmemb) return 0;
33 void* WebPSafeMalloc(uint64_t nmemb, size_t size) { argument
34 if (!CheckSizeArgumentsOverflow(nmemb, size)) return NULL;
35 assert(nmemb * size > 0);
36 return malloc((size_t)(nmemb * size));
39 void* WebPSafeCalloc(uint64_t nmemb, size_t size) { argument
40 if (!CheckSizeArgumentsOverflow(nmemb, size)) retur
[all...]
/external/chromium_org/third_party/skia/src/ports/
H A DSkMemory_mozalloc.cpp25 void* sk_malloc_throw(size_t size) { argument
26 return sk_malloc_flags(size, SK_MALLOC_THROW);
29 void* sk_realloc_throw(void* addr, size_t size) { argument
30 return moz_xrealloc(addr, size);
37 void* sk_malloc_flags(size_t size, unsigned flags) { argument
38 return (flags & SK_MALLOC_THROW) ? moz_xmalloc(size) : moz_malloc(size);
41 void* sk_calloc(size_t size) { argument
42 return moz_calloc(size, 1);
45 void* sk_calloc_throw(size_t size) { argument
[all...]
/external/skia/src/ports/
H A DSkMemory_mozalloc.cpp25 void* sk_malloc_throw(size_t size) { argument
26 return sk_malloc_flags(size, SK_MALLOC_THROW);
29 void* sk_realloc_throw(void* addr, size_t size) { argument
30 return moz_xrealloc(addr, size);
37 void* sk_malloc_flags(size_t size, unsigned flags) { argument
38 return (flags & SK_MALLOC_THROW) ? moz_xmalloc(size) : moz_malloc(size);
41 void* sk_calloc(size_t size) { argument
42 return moz_calloc(size, 1);
45 void* sk_calloc_throw(size_t size) { argument
[all...]
/external/webp/src/utils/
H A Dutils.c24 // Returns 0 in case of overflow of nmemb * size.
25 static int CheckSizeArgumentsOverflow(uint64_t nmemb, size_t size) { argument
26 const uint64_t total_size = nmemb * size;
28 if ((uint64_t)size > WEBP_MAX_ALLOCABLE_MEMORY / nmemb) return 0;
33 void* WebPSafeMalloc(uint64_t nmemb, size_t size) { argument
34 if (!CheckSizeArgumentsOverflow(nmemb, size)) return NULL;
35 assert(nmemb * size > 0);
36 return malloc((size_t)(nmemb * size));
39 void* WebPSafeCalloc(uint64_t nmemb, size_t size) { argument
40 if (!CheckSizeArgumentsOverflow(nmemb, size)) retur
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream_inl.h48 int size) {
49 if (size < 0) return false; // security: size is often user-supplied
51 if (BufferSize() >= size) {
52 STLStringResizeUninitialized(buffer, size);
54 // requires non-NULL pointers even when size is 0. Hench this check.
55 if (size > 0) {
56 memcpy(string_as_array(buffer), buffer_, size); local
57 Advance(size);
62 return ReadStringFallback(buffer, size);
47 InternalReadStringInline(string* buffer, int size) argument
[all...]
/external/kernel-headers/original/asm-generic/bitops/
H A Dfind.h5 size, unsigned long offset);
8 long size, unsigned long offset);
10 #define find_first_bit(addr, size) find_next_bit((addr), (size), 0)
11 #define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)
/external/llvm/test/MC/AsmParser/
H A Drename.s3 .size bar, . - bar
5 .size foo, .Ltmp01 - foo
7 .size qux, .Ltmp0 - qux
10 // CHECK: .size bar, .Ltmp0-bar
12 // CHECK: .size foo, .Ltmp01-foo
14 // CHECK: .size qux, .Ltmp02-qux

Completed in 8243 milliseconds

1234567891011>>