HomeSort by relevance Sort by last modified time
    Searched refs:objSize (Results 1 - 11 of 11) sorted by null

  /art/test/061-out-of-memory/src/
Main.java 77 int objSize = 1 * 1024 * 1024;
78 while (objSize >= LINK_SIZE) {
81 for (int i = 0; i < Runtime.getRuntime().maxMemory() / objSize; i++) {
82 list.add((Object)new byte[objSize]);
92 objSize = (objSize * 4) / 5;
  /dalvik/tests/061-out-of-memory/src/
Main.java 77 int objSize = 1 * 1024 * 1024;
78 while (objSize >= LINK_SIZE) {
81 for (int i = 0; i < Runtime.getRuntime().maxMemory() / objSize; i++) {
82 list.add((Object)new byte[objSize]);
92 objSize = (objSize * 4) / 5;
  /frameworks/native/libs/gui/
BitTube.cpp 141 void const* events, size_t count, size_t objSize)
144 ssize_t size = tube->write(vaddr, count*objSize);
147 LOG_ALWAYS_FATAL_IF((size >= 0) && (size % objSize),
149 count, objSize, size);
152 return size < 0 ? size : size / objSize;
156 void* events, size_t count, size_t objSize)
159 ssize_t size = tube->read(vaddr, count*objSize);
162 LOG_ALWAYS_FATAL_IF((size >= 0) && (size % objSize),
164 count, objSize, size);
167 return size < 0 ? size : size / objSize;
    [all...]
  /frameworks/native/include/gui/
BitTube.h 83 void const* events, size_t count, size_t objSize);
86 void* events, size_t count, size_t objSize);
  /frameworks/base/tests/CoreTests/android/core/
HeapTest.java 457 int objSize = 1 * 1024 * 1024;
458 while (objSize >= LINK_SIZE) {
460 for (int i = 0; i < SIXTEEN_MB / objSize; i++) {
461 list.add((Object)new byte[objSize]);
473 objSize = (objSize * 4) / 5;
  /external/chromium_org/third_party/skia/src/core/
SkOrderedWriteBuffer.cpp 316 uint32_t objSize = fWriter.bytesWritten() - offset;
318 *fWriter.peek32(offset - sizeof(uint32_t)) = objSize;
  /external/skia/src/core/
SkOrderedWriteBuffer.cpp 316 uint32_t objSize = fWriter.bytesWritten() - offset;
318 *fWriter.peek32(offset - sizeof(uint32_t)) = objSize;
  /bionic/libc/bionic/
pthread_debug.cpp 230 static void growingListAdd(GrowingList* pList, size_t objSize) {
232 size_t oldsize = pList->alloc * objSize;
233 pList->alloc += PAGESIZE / objSize;
234 size_t size = pList->alloc * objSize;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 600 uint8_t *const mem = (uint8_t *)MALLOC(objSize << objStepLog2);
615 MemoryPool(unsigned int size, unsigned int incr) : objSize(size),
647 ret = allocArray[count >> objStepLog2] + (count & mask) * objSize;
665 const unsigned int objSize;
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 600 uint8_t *const mem = (uint8_t *)MALLOC(objSize << objStepLog2);
615 MemoryPool(unsigned int size, unsigned int incr) : objSize(size),
647 ret = allocArray[count >> objStepLog2] + (count & mask) * objSize;
665 const unsigned int objSize;
  /external/opencv/cvaux/src/
cveigenobjects.cpp 477 CvSize objSize, eigSize, avgSize;
518 objSize = eigSize = avgSize = size;
522 objSize.width *= objSize.height;
523 objSize.height = 1;
524 objStep = objSize.width;
536 n = objSize.height * objSize.width * (ioFlags & CV_EIGOBJ_INPUT_CALLBACK) +
550 buf = (uchar *) cvAlloc( sizeof( uchar ) * objSize.width );
    [all...]

Completed in 252 milliseconds