Lines Matching refs:ArrayObject
41 ArrayObject* dvmAllocArray(ClassObject* arrayClass, size_t length, in dvmAllocArray()
44 ArrayObject* newArray; in dvmAllocArray()
56 size = offsetof(ArrayObject, contents); in dvmAllocArray()
81 ArrayObject* dvmAllocArrayByClass(ClassObject* arrayClass, in dvmAllocArrayByClass()
129 ArrayObject* dvmAllocObjectArray(ClassObject* elemClassObj, size_t length, in dvmAllocObjectArray()
133 ArrayObject* newArray = NULL; in dvmAllocObjectArray()
154 ArrayObject* dvmAllocPrimitiveArray(char type, size_t length, int allocFlags) in dvmAllocPrimitiveArray()
156 ArrayObject* newArray; in dvmAllocPrimitiveArray()
225 ArrayObject* dvmAllocMultiArray(ClassObject* arrayClass, int curDim, in dvmAllocMultiArray()
228 ArrayObject* newArray; in dvmAllocMultiArray()
272 ArrayObject* newSubArray; in dvmAllocMultiArray()
662 bool dvmCopyObjectArray(ArrayObject* dstArray, const ArrayObject* srcArray, in dvmCopyObjectArray()
691 bool dvmUnboxObjectArray(ArrayObject* dstArray, const ArrayObject* srcArray, in dvmUnboxObjectArray()
793 size_t dvmArrayObjectSize(const ArrayObject *array) in dvmArrayObjectSize()
798 size = offsetof(ArrayObject, contents); in dvmArrayObjectSize()