Searched refs:size (Results 1 - 25 of 11141) 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);
/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/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/webkit/Source/WebCore/storage/
H A DSQLResultSetRowList.cpp38 if (m_result.size() == 0)
41 ASSERT(m_result.size() % m_columns.size() == 0);
43 return m_result.size() / m_columns.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/webkit/Source/WebCore/platform/graphics/brew/
H A DIntSizeBrew.cpp33 IntSize::IntSize(const AEESize& size) argument
34 : m_width(size.cx)
35 , m_height(size.cy)
41 AEESize size; local
42 size.cx = width();
43 size.cy = height();
44 return size;
/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/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/skia/src/utils/
H A DSkCityHash.cpp17 uint32_t SkCityHash::Compute32(const char *data, size_t size) { argument
18 return CityHash32(data, size);
21 uint64_t SkCityHash::Compute64(const char *data, size_t size) { argument
22 return CityHash64(data, size);
/external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
H A Dalloca.h9 pointer alloca(unsigned size);
/external/webp/src/utils/
H A Dutils.c22 // Returns 0 in case of overflow of nmemb * size.
23 static int CheckSizeArgumentsOverflow(uint64_t nmemb, size_t size) { argument
24 const uint64_t total_size = nmemb * size;
26 if ((uint64_t)size > WEBP_MAX_ALLOCABLE_MEMORY / nmemb) return 0;
31 void* WebPSafeMalloc(uint64_t nmemb, size_t size) { argument
32 if (!CheckSizeArgumentsOverflow(nmemb, size)) return NULL;
33 assert(nmemb * size > 0);
34 return malloc((size_t)(nmemb * size));
37 void* WebPSafeCalloc(uint64_t nmemb, size_t size) { argument
38 if (!CheckSizeArgumentsOverflow(nmemb, size)) retur
[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
/external/kernel-headers/original/linux/
H A Dcirc_buf.h11 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
13 /* Return space available, 0..size-1. We always leave one free char
16 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
21 #define CIRC_CNT_TO_END(head,tail,size) \
22 ({int end = (size) - (tail); \
23 int n = ((head) + end) & ((size)-1); \
27 #define CIRC_SPACE_TO_END(head,tail,size) \
28 ({int end = (size)
[all...]
/external/stlport/test/unit/
H A Dlexcmp_test.cpp33 const unsigned size = 6; local
34 char n1[size] = "shoe";
35 char n2[size] = "shine";
37 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size);
42 const unsigned size = 6; local
43 char n1[size] = "shoe";
44 char n2[size] = "shine";
46 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size, greate
[all...]
/external/webkit/Source/WebCore/html/
H A DImageData.cpp34 PassRefPtr<ImageData> ImageData::create(const IntSize& size) argument
36 return adoptRef(new ImageData(size));
39 PassRefPtr<ImageData> ImageData::create(const IntSize& size, PassRefPtr<ByteArray> byteArray) argument
41 return adoptRef(new ImageData(size, byteArray));
44 ImageData::ImageData(const IntSize& size) argument
45 : m_size(size)
46 , m_data(CanvasPixelArray::create(size.width() * size.height() * 4))
50 ImageData::ImageData(const IntSize& size, PassRefPtr<ByteArray> byteArray) argument
51 : m_size(size)
[all...]
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_tiled_private.h32 #define OOM(op, size) CRITICAL("could not %s %zd bytes: %s", op, size, strerror(errno))
33 #define MALLOC_OR_OOM_RET(ptr, size, ...) \
35 ptr = malloc(size); \
36 if (!ptr && (size) > 0) { \
37 OOM("malloc", (size)); \
42 #define CALLOC_OR_OOM_RET(ptr, size, ...) \
44 ptr = calloc(1, size); \
45 if (!ptr && (size) > 0) { \
46 OOM("calloc", (size)); \
[all...]
/external/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);
53 memcpy(string_as_array(buffer), buffer_, size); local
54 Advance(size);
58 return ReadStringFallback(buffer, size);
47 InternalReadStringInline(string* buffer, int size) argument
/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);
/external/oprofile/libop/
H A Dop_xml_out.c99 int size, ret; local
102 size = strlen(buffer);
103 buf = &buffer[size];
104 size = max - 1 - size;
106 ret = snprintf(buf, size, "<%s%s", xml_tag_name(tag),
109 if (ret < 0 || ret >= size) {
119 int size, ret; local
122 size = strlen(buffer);
123 buf = &buffer[size];
141 int size, ret; local
160 int size, ret; local
181 size_t size; local
246 int size, ret; local
[all...]

Completed in 1646 milliseconds

1234567891011>>