Searched defs:size (Results 26 - 50 of 7454) sorted by relevance

1234567891011>>

/external/ltrace/
H A Dmemstream.h30 size_t size; member in struct:memstream
/external/lzma/CPP/7zip/Compress/
H A DBcjCoder.cpp7 UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size) argument
9 return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 1);
12 UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size) argument
14 return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 0);
H A DBranchMisc.cpp9 UInt32 CBC_ARM_Encoder::SubFilter(Byte *data, UInt32 size) argument
10 { return (UInt32)::ARM_Convert(data, size, _bufferPos, 1); }
12 UInt32 CBC_ARM_Decoder::SubFilter(Byte *data, UInt32 size) argument
13 { return (UInt32)::ARM_Convert(data, size, _bufferPos, 0); }
15 UInt32 CBC_ARMT_Encoder::SubFilter(Byte *data, UInt32 size) argument
16 { return (UInt32)::ARMT_Convert(data, size, _bufferPos, 1); }
18 UInt32 CBC_ARMT_Decoder::SubFilter(Byte *data, UInt32 size) argument
19 { return (UInt32)::ARMT_Convert(data, size, _bufferPos, 0); }
21 UInt32 CBC_PPC_Encoder::SubFilter(Byte *data, UInt32 size) argument
22 { return (UInt32)::PPC_Convert(data, size, _bufferPo
24 SubFilter(Byte *data, UInt32 size) argument
27 SubFilter(Byte *data, UInt32 size) argument
30 SubFilter(Byte *data, UInt32 size) argument
33 SubFilter(Byte *data, UInt32 size) argument
36 SubFilter(Byte *data, UInt32 size) argument
[all...]
/external/mesa3d/src/mesa/drivers/x11/
H A Drealglx.c38 /* be sure our dispatch table size <= libGL's table */
40 GLuint size = sizeof(struct _glxapi_table) / sizeof(void *); local
41 (void) size;
42 assert(_glxapi_get_dispatch_table_size() >= size);
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
H A DSDL_atarimxalloc.c40 void *Atari_SysMalloc(Uint32 size, Uint16 alloc_type) argument
48 return (void *) Mxalloc(size, alloc_type);
50 return (void *) Malloc(size);
/external/skia/src/gpu/gl/debug/
H A DGrBufferObj.cpp11 void GrBufferObj::allocate(GrGLsizeiptr size, const GrGLchar *dataPtr) { argument
12 GrAlwaysAssert(size >= 0);
17 fSize = size;
18 fDataPtr = new GrGLchar[size];
/external/chromium_org/base/memory/
H A Daligned_memory.cc15 void* AlignedAlloc(size_t size, size_t alignment) { argument
16 DCHECK_GT(size, 0U);
21 ptr = _aligned_malloc(size, alignment);
28 ptr = memalign(alignment, size);
30 if (posix_memalign(&ptr, alignment, size))
38 << "size=" << size << ", alignment=" << alignment;
/external/chromium_org/chrome/browser/
H A Dapp_icon_win.cc36 scoped_ptr<SkBitmap> GetAppIconForSize(int size) { argument
39 GetModuleHandle(chrome::kBrowserResourcesDll), icon_id, size);
/external/chromium_org/content/browser/loader/
H A Dresource_buffer_unittest.cc17 int size; local
18 char* ptr = buf->Allocate(&size);
20 EXPECT_EQ(10, size);
25 buf->ShrinkLastAllocation(2); // Less than our min allocation size.
32 int size; local
33 char* ptr = buf->Allocate(&size);
35 EXPECT_EQ(10, size);
51 int size; local
53 buf->Allocate(&size);
59 buf->Allocate(&size);
67 int size; local
88 int size; local
122 int size; local
[all...]
/external/chromium_org/courgette/
H A Dcrc.cc19 uint32 CalculateCrc(const uint8* buffer, size_t size) { argument
24 crc = crc32(0, buffer, size);
28 crc = CrcCalc(buffer, size);
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Ddemangle.c17 const char* XRayDemangle(char* demangle, size_t size, const char* symbol) { argument
20 __cxa_demangle(symbol, demangle, &size, &stat);
/external/chromium_org/net/spdy/
H A Dhpack_string_util.cc13 size_t size = str1.size(); local
14 if (str2.size() != size)
18 for (size_t i = 0; i < size; ++i) {
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBEventDispatcher.cpp39 size_t size = eventTargets.size(); local
40 ASSERT(size);
43 for (size_t i = size - 1; i; --i) { // Don't do the first element.
57 for (size_t i = 1; i < size; ++i) { // Don't do the first element.
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDefaultAllocator.cpp38 void* DefaultAllocator::backingAllocate(size_t size) argument
40 return partitionAllocGeneric(Partitions::getBufferPartition(), size);
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dsafe_malloc.c25 /* Returns 0 in case of overflow of nmemb * size. */
26 static int CheckSizeArgumentsOverflow(uint64_t nmemb, size_t size) { argument
27 const uint64_t total_size = nmemb * size;
29 if ((uint64_t)size > BROTLI_MAX_ALLOCABLE_MEMORY / nmemb) return 0;
34 void* BrotliSafeMalloc(uint64_t nmemb, size_t size) { argument
35 if (!CheckSizeArgumentsOverflow(nmemb, size)) return NULL;
36 assert(nmemb * size > 0);
37 return malloc((size_t)(nmemb * size));
/external/chromium_org/third_party/libsrtp/srtp/crypto/kernel/
H A Dalloc.c69 crypto_alloc(size_t size) { argument
72 ptr = kmalloc(size, in_interrupt() ? GFP_ATOMIC : GFP_KERNEL);
77 debug_print(mod_alloc, "allocation failed (asked for %d bytes)\n", size);
94 crypto_alloc(size_t size) { argument
97 ptr = malloc(size);
102 debug_print(mod_alloc, "allocation failed (asked for %d bytes)\n", size);
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/wayland/
H A Dwayland_sw_winsys.h35 unsigned size; member in struct:winsys_handle
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_generic-inl.h57 // int* sizes: the size of each stack frame, as an array
59 // int max_depth: the size of the result (and sizes) array(s)
65 int size; variable
67 size = backtrace(stack, kStackLength);
69 int result_count = size - skip_count;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_generic-inl.h57 // int* sizes: the size of each stack frame, as an array
59 // int max_depth: the size of the result (and sizes) array(s)
65 int size; variable
67 size = backtrace(stack, kStackLength);
69 int result_count = size - skip_count;
/external/chromium_org/ui/base/l10n/
H A Dl10n_util_win_unittest.cc22 int size = lf.lfHeight; local
23 float rounding = size < 0 ? -0.5f : 0.5f;
25 // Test that font size is properly normalized for DIP. In high-DPI mode, the
27 // and 180% font scaling are supported. Simulate size normalization for a DPI-
29 // to the expected size.
30 lf.lfHeight = static_cast<int>(1.4 * size + rounding);
32 EXPECT_NEAR(size, lf.lfHeight, 1);
34 lf.lfHeight = static_cast<int>(1.8 * size + rounding);
36 EXPECT_NEAR(size, lf.lfHeight, 1);
/external/compiler-rt/test/lsan/TestCases/
H A Dregister_root_region.cc17 size_t size = getpagesize() * 2; local
19 mmap(0, size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
22 assert(0 == mprotect((char *)p + size / 2, size / 2, PROT_NONE));
24 __lsan_register_root_region(p, size);
28 __lsan_unregister_root_region(p, size);
/external/eigen/failtest/
H A Dmap_nonconst_ctor_on_const_ptr_1.cpp11 void foo(CV_QUALIFIER float *ptr, DenseIndex size){ argument
12 Map<ArrayXf> m(ptr, size);
/external/fio/crc/
H A Dsha1.h13 unsigned long long size; member in struct:fio_sha1_ctx
/external/lldb/source/Interpreter/
H A DOptionValueArgs.cpp24 const uint32_t size = m_values.size(); local
26 for (uint32_t i = 0; i<size; ++i)
36 args.SetArguments(argv.size(), &argv[0]);
/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;

Completed in 618 milliseconds

1234567891011>>