Searched refs:size (Results 1 - 25 of 26517) 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_org/ui/file_manager/
H A Dfile_manager_resource_util.cc12 const GritResourceMap* GetFileManagerResources(size_t* size) { argument
13 DCHECK(size);
14 *size = kFileManagerResourcesSize;
/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/0.153/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/llvm/test/MC/ELF/
H A Dbracket.s5 .size x, [.-x)
8 .size y, (.-y]
/external/libpng/tests/
H A Dpngvalid-progressive-interlace-size2 exec ./pngvalid --size --progressive-read
/external/chromium_org/third_party/skia/src/ports/
H A DSkMemory_malloc.cpp15 static inline void sk_out_of_memory(size_t size) { argument
17 size);
21 static inline void* throw_on_failure(size_t size, void* p) { argument
22 if (size > 0 && p == NULL) {
24 sk_out_of_memory(size);
39 void* sk_malloc_throw(size_t size) { argument
40 return sk_malloc_flags(size, SK_MALLOC_THROW);
43 void* sk_realloc_throw(void* addr, size_t size) { argument
44 return throw_on_failure(size, realloc(addr, size));
53 sk_malloc_flags(size_t size, unsigned flags) argument
62 sk_calloc(size_t size) argument
66 sk_calloc_throw(size_t size) argument
[all...]
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/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/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Du_execmem.h5 u_execmem_alloc(unsigned int size);
/external/mesa3d/src/mapi/mapi/
H A Du_execmem.h5 u_execmem_alloc(unsigned int size);
/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...]
H A DSkMemory_malloc.cpp12 static inline void* throw_on_failure(size_t size, void* p) { argument
13 if (size > 0 && p == NULL) {
30 void* sk_malloc_throw(size_t size) { argument
31 return sk_malloc_flags(size, SK_MALLOC_THROW);
34 void* sk_realloc_throw(void* addr, size_t size) { argument
35 return throw_on_failure(size, realloc(addr, size));
44 void* sk_malloc_flags(size_t size, unsigned flags) { argument
45 void* p = malloc(size);
47 return throw_on_failure(size,
53 sk_calloc(size_t size) argument
57 sk_calloc_throw(size_t size) argument
[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/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/lzma/CPP/7zip/Archive/Common/
H A DOutStreamWithCRC.cpp7 STDMETHODIMP COutStreamWithCRC::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
11 result = _stream->Write(data, size, &size);
13 _crc = CrcUpdate(_crc, data, size);
14 _size += size;
16 *processedSize = size;
/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/chromium_org/third_party/WebKit/Source/wtf/
H A DStreamBuffer.h53 bool isEmpty() const { return !size(); }
55 void append(const T* data, size_t size) argument
57 if (!size)
60 m_size += size;
61 while (size) {
62 if (!m_buffer.size() || m_buffer.last()->size() == BlockSize)
64 size_t appendSize = std::min(BlockSize - m_buffer.last()->size(), size);
67 size
73 consume(size_t size) argument
89 size_t size() const { return m_size; } function in class:WTF::StreamBuffer
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
H A Drbug_internal.h40 int rbug_connection_write(struct rbug_connection *con, void *data, uint32_t size);
51 #define LEN(size) \
53 PAD(__len, size); \
54 __len += size; \
57 #define LEN_ARRAY(size, name) \
60 PAD(__len, size); \
61 __len += size * name##_len; \
64 #define WRITE(size, type, name) \
66 PAD(__pos, size); \
68 __pos += size; \
[all...]
/external/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_internal.h40 int rbug_connection_write(struct rbug_connection *con, void *data, uint32_t size);
51 #define LEN(size) \
53 PAD(__len, size); \
54 __len += size; \
57 #define LEN_ARRAY(size, name) \
60 PAD(__len, size); \
61 __len += size * name##_len; \
64 #define WRITE(size, type, name) \
66 PAD(__pos, size); \
68 __pos += size; \
[all...]

Completed in 6309 milliseconds

1234567891011>>