Lines Matching refs:ArrayObject
38 static ArrayObject* allocArray(ClassObject* arrayClass, size_t length, in allocArray()
50 size_t headerSize = OFFSETOF_MEMBER(ArrayObject, contents); in allocArray()
58 ArrayObject* newArray = (ArrayObject*)dvmMalloc(totalSize, allocFlags); in allocArray()
71 ArrayObject* dvmAllocArrayByClass(ClassObject* arrayClass, in dvmAllocArrayByClass()
113 ArrayObject* dvmAllocPrimitiveArray(char type, size_t length, int allocFlags) in dvmAllocPrimitiveArray()
115 ArrayObject* newArray; in dvmAllocPrimitiveArray()
171 ArrayObject* dvmAllocMultiArray(ClassObject* arrayClass, int curDim, in dvmAllocMultiArray()
174 ArrayObject* newArray; in dvmAllocMultiArray()
218 ArrayObject* newSubArray; in dvmAllocMultiArray()
492 bool dvmCopyObjectArray(ArrayObject* dstArray, const ArrayObject* srcArray, in dvmCopyObjectArray()
521 bool dvmUnboxObjectArray(ArrayObject* dstArray, const ArrayObject* srcArray, in dvmUnboxObjectArray()
623 size_t dvmArrayObjectSize(const ArrayObject *array) in dvmArrayObjectSize()
626 size_t size = OFFSETOF_MEMBER(ArrayObject, contents); in dvmArrayObjectSize()