Searched refs:size (Results 151 - 175 of 15723) sorted by relevance

1234567891011>>

/external/opencv3/modules/core/src/
H A Dbufferpool.impl.hpp22 virtual void setMaxReservedSize(size_t size) { (void)size; } argument
/external/opencv3/modules/video/perf/opencl/
H A Dperf_motempl.cpp22 const Size size = GetParam();
23 checkDeviceMaxMemoryAllocSize(size, CV_32FC1);
25 UMat silhouette(size, CV_8UC1), mhi(size, CV_32FC1);
/external/parameter-framework/asio/include/asio/
H A Dhandler_alloc_hook.hpp42 * void* asio_handler_allocate(std::size_t size, my_handler* context)
44 * return ::operator new(size);
47 * void asio_handler_deallocate(void* pointer, std::size_t size,
55 std::size_t size, ...);
68 void* pointer, std::size_t size, ...);
/external/parameter-framework/asio-1.10.6/include/asio/
H A Dhandler_alloc_hook.hpp42 * void* asio_handler_allocate(std::size_t size, my_handler* context)
44 * return ::operator new(size);
47 * void asio_handler_deallocate(void* pointer, std::size_t size,
55 std::size_t size, ...);
68 void* pointer, std::size_t size, ...);
/external/pdfium/third_party/libjpeg/
H A Djinclude.h66 * NOTE: we assume the size parameters to these functions are of type size_t.
73 #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size))
74 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
79 #define MEMZERO(target,size) FXSYS_memset((void *)(target), 0, (size_t)(size))
80 #define MEMCOPY(dest,src,size) FXSYS_memcpy((void *)(dest), (const void *)(src), (size_t)(size))
/external/replicaisland/src/com/replica/replicaisland/
H A DTObjectPool.java31 public TObjectPool(int size) { argument
32 super(size);
/external/selinux/libsepol/cil/src/
H A Dcil_mem.h34 void *cil_malloc(size_t size);
36 void *cil_realloc(void *ptr, size_t size);
/external/toybox/toys/other/
H A Dfallocate.c14 usage: fallocate [-l size] file
23 long size;
29 if (posix_fallocate(fd, 0, TT.size)) error_exit("Not enough space");
/external/v8/src/ia32/
H A Dcpu-ia32.cc19 void CpuFeatures::FlushICache(void* start, size_t size) { argument
35 unsigned res = VALGRIND_DISCARD_TRANSLATIONS(start, size);
/external/v8/src/x64/
H A Dcpu-x64.cc19 void CpuFeatures::FlushICache(void* start, size_t size) { argument
35 unsigned res = VALGRIND_DISCARD_TRANSLATIONS(start, size);
/external/v8/src/x87/
H A Dcpu-x87.cc19 void CpuFeatures::FlushICache(void* start, size_t size) { argument
35 unsigned res = VALGRIND_DISCARD_TRANSLATIONS(start, size);
/external/valgrind/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/vboot_reference/firmware/stub/
H A Dvboot_api_stub_static_sf.c15 void *VbExMalloc(size_t size) argument
17 void *p = malloc(size);
/external/webrtc/webrtc/base/
H A Dbuffer.cc22 Buffer::Buffer(const Buffer& buf) : Buffer(buf.data(), buf.size()) {
26 : size_(buf.size()),
33 Buffer::Buffer(size_t size) : Buffer(size, size) { argument
36 Buffer::Buffer(size_t size, size_t capacity) argument
37 : size_(size),
38 capacity_(std::max(size, capacity)),
/external/webrtc/webrtc/test/fuzzers/
H A Dh264_depacketizer_fuzzer.cc13 void FuzzOneInput(const uint8_t* data, size_t size) { argument
16 depacketizer.Parse(&parsed_payload, data, size);
H A Dvp8_depacketizer_fuzzer.cc13 void FuzzOneInput(const uint8_t* data, size_t size) { argument
16 depacketizer.Parse(&parsed_payload, data, size);
H A Dvp9_depacketizer_fuzzer.cc13 void FuzzOneInput(const uint8_t* data, size_t size) { argument
16 depacketizer.Parse(&parsed_payload, data, size);
/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-trace/catapult/third_party/gsutil/gslib/
H A Dfile_part.py57 def read(self, size=-1):
58 if size < 0:
59 size = self.length
60 size = min(size, self._end - self._fp.tell()) # Only read to our EOF
61 return self._fp.read(max(0, size))
74 def flush(self, size=None):
77 def fileno(self, size=None):
80 def isatty(self, size=None):
83 def next(self, size
[all...]
/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];
/external/dng_sdk/source/
H A Ddng_jpeg_memory_source.h14 // buffer with length 'size'.
15 jpeg_source_mgr CreateJpegMemorySource(const uint8 *buffer, size_t size);
/external/libcxx/test/std/numerics/rand/rand.util/rand.util.seedseq/
H A Ddefault.pass.cpp22 assert(s.size() == 0);

Completed in 916 milliseconds

1234567891011>>