Searched refs:size (Results 201 - 225 of 26517) sorted by relevance

1234567891011>>

/external/replicaisland/src/com/replica/replicaisland/
H A DTObjectPool.java31 public TObjectPool(int size) { argument
32 super(size);
/external/srec/portable/include/
H A Dpcrc.h38 * @param size the size of the data.
41 PORTABLE_API unsigned int pcrcComputeData(const void *data, unsigned int size);
64 * @param size the size of the data.
69 unsigned int size);
/external/valgrind/main/memcheck/tests/
H A Dmalloc1_ks_none.stderr.exp1 Invalid write of size 1
3 Address 0x........ is 1 bytes inside a block of size 10 free'd
6 Invalid write of size 1
8 Address 0x........ is 1 bytes before a block of size 10 alloc'd
H A Dsbfragment.stdout.exp1 after 3000 loops, last size block requested 96032008
/external/compiler-rt/lib/asan/tests/
H A Dasan_oob_test.cc15 NOINLINE void asan_write_sized_aligned(uint8_t *p, size_t size) { argument
16 EXPECT_EQ(0U, ((uintptr_t)p % size));
17 if (size == 1) asan_write((uint8_t*)p);
18 else if (size == 2) asan_write((uint16_t*)p);
19 else if (size == 4) asan_write((uint32_t*)p);
20 else if (size == 8) asan_write((uint64_t*)p);
24 NOINLINE void oob_test(int size, int off) { argument
25 char *p = (char*)malloc_aaa(size);
27 // sizeof(T), p, p + size, off);
35 for (int size
107 size_t size = large_power_of_two - i; local
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DAbstractBoxParser.java31 * This BoxParser handles the basic stuff like reading size and extracting box type.
40 * Parses the next size and type, creates a box instance and parses the box's content.
52 long size = IsoTypeReader.readUInt32(header);
54 if (size < 8 && size > 1) {
55 LOG.severe("Plausibility check failed: size < 8 (size = " + size + "). Stop parsing!");
64 if (size == 1) {
68 size
[all...]
/external/chromium_org/cc/resources/
H A Dshared_bitmap.cc33 bool SharedBitmap::SizeInBytes(const gfx::Size& size, size_t* size_in_bytes) { argument
34 if (size.IsEmpty())
37 s *= size.width();
38 s *= size.height();
46 size_t SharedBitmap::CheckedSizeInBytes(const gfx::Size& size) { argument
47 CHECK(!size.IsEmpty());
49 s *= size.width();
50 s *= size.height();
55 size_t SharedBitmap::UncheckedSizeInBytes(const gfx::Size& size) { argument
56 DCHECK(VerifySizeInBytes(size));
64 VerifySizeInBytes(const gfx::Size& size) argument
[all...]
/external/chromium_org/chrome/browser/install_verification/win/
H A Dmodule_info.h13 ModuleInfo() : base_address(0), size(0) {
20 size(module_size),
31 return address >= base_address && address < base_address + size;
36 uint32_t size; member in struct:ModuleInfo
/external/chromium_org/courgette/
H A Dcrc.h14 uint32 CalculateCrc(const uint8* buffer, size_t size);
/external/chromium_org/ppapi/nacl_irt/public/
H A Dirt_nonsfi.h19 * range from |addr| to |(intptr_t)addr + size| (exclusive) coherent.
21 int (*clear_cache)(void* addr, size_t size);
/external/chromium_org/sdch/open-vcdiff/src/
H A Dchecksum.h32 size_t size) {
35 static_cast<uInt>(size));
40 size_t size) {
43 static_cast<uInt>(size));
31 ComputeAdler32(const char* buffer, size_t size) argument
38 UpdateAdler32(VCDChecksum partial_checksum, const char* buffer, size_t size) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_hash.h48 util_hash_crc32(const void *data, size_t size);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprrng.h69 ** is specified in the 'size' argument.
71 ** size -- the requested size of the generated random number
77 ** PRSize value equal to the size of the random number actually
78 ** generated, or zero. The generated size may be less than the size
98 PRSize size
/external/chromium_org/third_party/skia/src/core/
H A DSkFlattenableSerialization.cpp17 size_t size = writer.bytesWritten(); local
18 SkData* data = SkData::NewUninitialized(size);
23 SkFlattenable* SkValidatingDeserializeFlattenable(const void* data, size_t size, argument
25 SkValidatingReadBuffer buffer(data, size);
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dget_hanning_window.c56 void WebRtcSpl_GetHanningWindow(int16_t *v, int16_t size) argument
64 factor = WebRtcSpl_DivW32W16(factor, size);
65 if (size < 513)
71 for (jj = 0; jj < size; jj++)
/external/chromium_org/tools/site_compare/operators/
H A Dequals.py28 if im1.size != im2.size:
29 return ("The images are of different size (%s vs %s)" %
30 (im1.size, im2.size), im1)
/external/chromium_org/tools/site_compare/scrapers/chrome/
H A Dchrome011010.py19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
25 size: size of browser window to use
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
38 def Time(urls, size, timeout, **kwargs):
42 return chromebase.Time(urls, size, timeout, kwargs)
H A Dchrome01970.py19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
25 size: size of browser window to use
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
38 def Time(urls, size, timeout, **kwargs):
42 return chromebase.Time(urls, size, timeout, kwargs)
/external/chromium_org/v8/test/mjsunit/
H A Dobject-literal-gc.js33 function testLiteral(size) {
38 for (var i = 0; i < size; i++) {
48 delete o["a" + (size - 1)];
54 for (var i = 0; i < size - 1; i++) {
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-new.cpp6 void *operator new(size_t size, arbitrary_t);
9 void *operator new[](size_t size, arbitrary2_t);
20 void *operator new[](size_t size, arbitrary_t);
31 void *operator new(size_t size, arbitrary2_t);
/external/clang/test/SemaCXX/
H A Dbitfield-layout.cpp3 #define CHECK_SIZE(name, size) extern int name##1[sizeof(name) == size ? 1 : -1];
4 #define CHECK_ALIGN(name, size) extern int name##2[__alignof(name) == size ? 1 : -1];
8 char c : 9; // expected-warning {{size of bit-field 'c' (9 bits) exceeds the size of its type; value will be truncated to 8 bits}}
14 char c : 16; // expected-warning {{size of bit-field 'c' (16 bits) exceeds the size of its type; value will be truncated to 8 bits}}
20 char c : 32; // expected-warning {{size of bit-field 'c' (32 bits) exceeds the size o
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Dchunk_mmap.h14 void *chunk_alloc_mmap(size_t size, size_t alignment, bool *zero);
15 bool chunk_dalloc_mmap(void *chunk, size_t size);
/external/jemalloc/src/
H A Dchunk.c31 size_t arena_maxclass; /* Max size class for arenas. */
39 static void chunk_dalloc_core(void *chunk, size_t size);
44 chunk_recycle(extent_tree_t *chunks_szad, extent_tree_t *chunks_ad, size_t size, argument
63 alloc_size = size + alignment - chunksize;
65 if (alloc_size < size)
68 key.size = alloc_size;
77 assert(node->size >= leadsize + size);
78 trailsize = node->size - leadsize - size;
144 chunk_alloc_core(size_t size, size_t alignment, bool base, bool *zero, dss_prec_t dss_prec) argument
182 chunk_register(void *chunk, size_t size, bool base) argument
215 chunk_alloc_base(size_t size) argument
233 chunk_alloc_arena(chunk_alloc_t *chunk_alloc, chunk_dalloc_t *chunk_dalloc, unsigned arena_ind, size_t size, size_t alignment, bool *zero) argument
249 chunk_alloc_default(size_t size, size_t alignment, bool *zero, unsigned arena_ind) argument
258 chunk_record(extent_tree_t *chunks_szad, extent_tree_t *chunks_ad, void *chunk, size_t size) argument
346 chunk_unmap(void *chunk, size_t size) argument
360 chunk_dalloc_core(void *chunk, size_t size) argument
382 chunk_dalloc_default(void *chunk, size_t size, unsigned arena_ind) argument
[all...]
/external/libcxx/test/containers/sequences/array/array.size/
H A DAndroid.mk17 test_makefile := external/libcxx/test/containers/sequences/array/array.size/Android.mk
19 test_name := containers/sequences/array/array.size/size
20 test_src := size.pass.cpp
/external/libcxx/test/numerics/rand/rand.util/rand.util.seedseq/
H A Ddefault.pass.cpp22 assert(s.size() == 0);

Completed in 1232 milliseconds

1234567891011>>