HomeSort by relevance Sort by last modified time
    Searched refs:objSize (Results 1 - 10 of 10) 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;
  /frameworks/native/libs/gui/
BitTube.cpp 146 void const* events, size_t count, size_t objSize)
149 ssize_t size = tube->write(vaddr, count*objSize);
152 LOG_ALWAYS_FATAL_IF((size >= 0) && (size % objSize),
154 count, objSize, size);
157 return size < 0 ? size : size / objSize;
161 void* events, size_t count, size_t objSize)
164 ssize_t size = tube->read(vaddr, count*objSize);
167 LOG_ALWAYS_FATAL_IF((size >= 0) && (size % objSize),
169 count, objSize, size);
172 return size < 0 ? size : size / objSize;
    [all...]
  /frameworks/native/include/gui/
BitTube.h 86 void const* events, size_t count, size_t objSize);
89 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/
SkWriteBuffer.cpp 318 size_t objSize = fWriter.bytesWritten() - offset;
320 fWriter.overwriteTAt(offset - sizeof(uint32_t), SkToU32(objSize));
  /external/skia/src/core/
SkWriteBuffer.cpp 318 size_t objSize = fWriter.bytesWritten() - offset;
320 fWriter.overwriteTAt(offset - sizeof(uint32_t), SkToU32(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...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_parser.cpp     [all...]

Completed in 318 milliseconds