/external/open-vcdiff/src/ |
vcdecoder1_test.cc | 26 decoder_.StartDecoding(dictionary_.data(), dictionary_.size()); 28 delta_file_header_.size(), 35 decoder_.StartDecoding(dictionary_.data(), dictionary_.size()); 37 delta_file_.size(), 50 decoder_.StartDecoding(dictionary_.data(), dictionary_.size()); 52 delta_file_.size(), 60 decoder_.StartDecoding(dictionary_.data(), dictionary_.size()); 62 delta_file_.size() - 1, 66 EXPECT_GE(expected_target_.size(), output_.size()); [all...] |
/external/lzma/CPP/7zip/Common/ |
LimitedStreams.cpp | 8 STDMETHODIMP CLimitedSequentialInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
11 UInt32 sizeToRead = (UInt32)MyMin((_size - _pos), (UInt64)size);
25 STDMETHODIMP CLimitedInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
32 if (rem < size)
33 size = (UInt32)rem;
40 HRESULT res = _stream->Read(data, size, &size);
42 *processedSize = size;
43 _physPos += size;
44 _virtPos += size;
[all...] |
/external/chromium_org/ui/gfx/ |
size_unittest.cc | 8 #include "ui/gfx/size.h" 24 Size a(10, 20); 35 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0, 0))); 36 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.0001f, 0.0001f))); 37 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.4999f, 0.4999f))); 38 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.5f, 0.5f))); 39 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.9999f, 0.9999f))); 41 EXPECT_EQ(Size(10, 10), ToFlooredSize(SizeF(10, 10))); 42 EXPECT_EQ(Size(10, 10), ToFlooredSize(SizeF(10.0001f, 10.0001f))); 43 EXPECT_EQ(Size(10, 10), ToFlooredSize(SizeF(10.4999f, 10.4999f))) [all...] |
/frameworks/base/docs/html/sdk/api_diff/12/changes/ |
classes_index_changes.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#B"><font size="-2">B</font></a> 53 <a href="#C"><font size="-2">C</font></a> 54 <a href="#D"><font size="-2">D</font></a> 55 <a href="#E"><font size="-2">E</font></a> 56 <a href="#F"><font size="-2">F</font></a> 57 <a href="#I"><font size="-2">I</font></a> 58 <a href="#K"><font size="-2">K</font></a> 59 <a href="#M"><font size="-2">M</font></a> [all...] |
/external/oprofile/libop/ |
op_xml_out.c | 99 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...] |
/external/chromium_org/net/base/ |
upload_bytes_element_reader_unittest.cc | 21 reader_.reset(new UploadBytesElementReader(&bytes_[0], bytes_.size())); 23 EXPECT_EQ(bytes_.size(), reader_->GetContentLength()); 24 EXPECT_EQ(bytes_.size(), reader_->BytesRemaining()); 33 const size_t kHalfSize = bytes_.size() / 2; 37 static_cast<int>(buf.size()), 38 reader_->Read(wrapped_buffer.get(), buf.size(), CompletionCallback())); 39 EXPECT_EQ(bytes_.size() - buf.size(), reader_->BytesRemaining()); 45 std::vector<char> buf(bytes_.size()); 48 static_cast<int>(buf.size()), [all...] |
/art/test/094-pattern/ |
info.txt | 3 The test may throw a StackOverflowError if the stack size is too small. With 4 some regex libs, -Xss65k is the minimum allowable size.
|
/bionic/libstdc++/src/ |
new.cpp | 6 void* operator new(std::size_t size) 8 void* p = malloc(size); 15 void* operator new[](std::size_t size) 17 void* p = malloc(size); 34 void* operator new(std::size_t size, const std::nothrow_t&) 36 return malloc(size); 39 void* operator new[](std::size_t size, const std::nothrow_t&) 41 return malloc(size);
|
/dalvik/tests/094-pattern/ |
info.txt | 3 The test may throw a StackOverflowError if the stack size is too small. With 4 some regex libs, -Xss65k is the minimum allowable size.
|
/external/chromium/base/allocator/ |
win_allocator.cc | 28 void* win_heap_malloc(size_t size) { 29 return HeapAlloc(win_heap, 0, size); 32 void win_heap_free(void* size) { 33 HeapFree(win_heap, 0, size); 36 void* win_heap_realloc(void* ptr, size_t size) { 38 return win_heap_malloc(size); 39 if (!size) { 43 return HeapReAlloc(win_heap, 0, ptr, size);
|
/external/chromium_org/media/test/data/ |
bear-320x240-manifest.js | 7 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 },
|
/external/clang/test/CodeGen/ |
merge-attrs.c | 3 void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__)); 9 void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__));
|
/external/eigen/failtest/ |
map_nonconst_ctor_on_const_ptr_1.cpp | 11 void foo(CV_QUALIFIER float *ptr, DenseIndex size){ 12 Map<ArrayXf> m(ptr, size);
|
/external/libselinux/src/ |
getpeercon.c | 17 socklen_t size; local 20 size = INITCONTEXTLEN + 1; 21 buf = malloc(size); 24 memset(buf, 0, size); 26 ret = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, buf, &size); 30 newbuf = realloc(buf, size); 35 memset(buf, 0, size); 36 ret = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, buf, &size);
|
/frameworks/base/docs/html/sdk/api_diff/18/changes/ |
classes_index_changes.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#B"><font size="-2">B</font></a> 53 <a href="#C"><font size="-2">C</font></a> 54 <a href="#D"><font size="-2">D</font></a> 55 <a href="#E"><font size="-2">E</font></a> 56 <a href="#F"><font size="-2">F</font></a> 57 <a href="#G"><font size="-2">G</font></a> 58 <a href="#H"><font size="-2">H</font></a> 59 <a href="#I"><font size="-2">I</font></a> [all...] |
/frameworks/base/docs/html/sdk/api_diff/9/changes/ |
classes_index_changes.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#B"><font size="-2">B</font></a> 53 <a href="#C"><font size="-2">C</font></a> 54 <a href="#D"><font size="-2">D</font></a> 55 <a href="#E"><font size="-2">E</font></a> 56 <a href="#F"><font size="-2">F</font></a> 57 <a href="#G"><font size="-2">G</font></a> 58 <a href="#H"><font size="-2">H</font></a> 59 <a href="#I"><font size="-2">I</font></a> [all...] |
/external/chromium_org/skia/ext/ |
SkMemory_new_handler.cpp | 21 static inline void* throw_on_failure(size_t size, void* p) { 22 if (size > 0 && p == NULL) { 39 void* sk_realloc_throw(void* addr, size_t size) { 40 return throw_on_failure(size, realloc(addr, size)); 49 void* sk_malloc_throw(size_t size) { 50 return throw_on_failure(size, malloc(size)); 54 static void* sk_malloc_nothrow(size_t size) { 57 return malloc(size); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/ |
rbug_internal.h | 40 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/ |
rbug_internal.h | 40 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...] |
/development/ndk/platforms/android-3/include/asm-generic/bitops/ |
find.h | 15 #define find_first_bit(addr, size) find_next_bit((addr), (size), 0) 16 #define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)
|
/external/chromium_org/cc/test/ |
pixel_test_software_output_device.h | 14 virtual void Resize(gfx::Size size) OVERRIDE; 16 void set_surface_expansion_size(gfx::Size surface_expansion_size) { 21 gfx::Size surface_expansion_size_;
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/stylesheets/ |
form.css | 8 font-size: 14pt; 16 font-size: 11pt; 20 font-size: 11pt; 25 font-size: 11pt;
|
/external/iproute2/include/linux/ |
socket.h | 5 * Desired design of maximum size and alignment (see RFC2553) 7 #define _K_SS_MAXSIZE 128 /* Implementation specific max size */ 17 /* space to achieve desired size, */ 18 /* _SS_MAXSIZE value minus size of ss_family */
|
/external/pixman/pixman/ |
pixman-accessor.h | 8 #define MEMSET_WRAPPED(img, dst, val, size) \ 12 for(_i = 0; _i < (size_t) size; _i++) { \ 21 #define MEMSET_WRAPPED(img, dst, val, size) \ 22 memset(dst, val, size)
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/asm-generic/bitops/ |
find.h | 15 #define find_first_bit(addr, size) find_next_bit((addr), (size), 0) 16 #define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)
|