HomeSort by relevance Sort by last modified time
    Searched full:allocarray (Results 1 - 15 of 15) sorted by null

  /external/srec/portable/src/
pmemory_ext.c 108 static void *allocArray[MAX_ALLOCATED_BLOCKS+1];
130 allocArray[allocArrayCount] = memPtr;
151 if (allocArray[i] == memPtr)
160 allocArray[j-1] = allocArray[j];
162 allocArray[allocArrayCount] = NULL; /* clear out end of list */
178 void *memPtr = allocArray[i];
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java 97 byte[] allocArray = null;
99 allocArray = str.getBytes("UTF-8");
100 byte[] allocArrayZero = new byte[allocArray.length + 1];
101 System.arraycopy(allocArray, 0, allocArrayZero, 0, allocArray.length);
  /art/compiler/llvm/
runtime_support_llvm_func_list.h 40 V(AllocArray, art_portable_alloc_array_from_code) \
gbc_expander.cc 70 using ::art::llvm::runtime_support::AllocArray;
    [all...]
intrinsic_func_list.def 331 _EVAL_DEF_INTRINSICS_FUNC(AllocArray,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 589 uint8_t **alloc = (uint8_t **)REALLOC(allocArray, size, size + incr);
592 allocArray = alloc;
610 allocArray[id] = mem;
618 allocArray = NULL;
626 for (unsigned int i = 0; i < allocCount && allocArray[i]; ++i)
627 FREE(allocArray[i]);
628 if (allocArray)
629 FREE(allocArray);
647 ret = allocArray[count >> objStepLog2] + (count & mask) * objSize;
659 uint8_t **allocArray; // array (list) of MALLOC allocation
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 589 uint8_t **alloc = (uint8_t **)REALLOC(allocArray, size, size + incr);
592 allocArray = alloc;
610 allocArray[id] = mem;
618 allocArray = NULL;
626 for (unsigned int i = 0; i < allocCount && allocArray[i]; ++i)
627 FREE(allocArray[i]);
628 if (allocArray)
629 FREE(allocArray);
647 ret = allocArray[count >> objStepLog2] + (count & mask) * objSize;
659 uint8_t **allocArray; // array (list) of MALLOC allocation
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
SceneManager.java 209 byte[] allocArray = null;
213 allocArray = str.getBytes("UTF-8");
215 allocArray.length + 1,
217 alloc.copy1DRangeFrom(0, allocArray.length, allocArray);
218 alloc.copy1DRangeFrom(allocArray.length, 1, nullChar);
  /external/chromium_org/third_party/skia/src/core/
SkTDynamicHash.h 94 static T** AllocArray(int capacity) {
104 fArray = AllocArray(fCapacity);
  /external/skia/src/core/
SkTDynamicHash.h 94 static T** AllocArray(int capacity) {
104 fArray = AllocArray(fCapacity);
  /dalvik/vm/oo/
Array.cpp 38 static ArrayObject* allocArray(ClassObject* arrayClass, size_t length,
82 return allocArray(arrayClass, length, kObjectArrayRefWidth,
158 newArray = allocArray(arrayClass, length, width, allocFlags);
184 newArray = allocArray(arrayClass, *dimensions,
207 newArray = allocArray(arrayClass, *dimensions, kObjectArrayRefWidth,
  /frameworks/base/graphics/java/android/renderscript/
Allocation.java     [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java     [all...]
  /art/runtime/mirror/
object_test.cc 135 TEST_F(ObjectTest, AllocArray) {
  /prebuilts/sdk/renderscript/lib/
javalib.jar 

Completed in 2453 milliseconds