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

  /dalvik/vm/native/
java_lang_System.cpp 118 ArrayObject* dstArray = (ArrayObject*) args[2];
127 if (dstArray == NULL) {
137 if (!dvmIsArray(dstArray)) {
138 dvmThrowArrayStoreExceptionNotArray(((Object*)dstArray)->clazz, "destination");
145 dstPos > (int) dstArray->length - length)
149 srcArray->length, srcPos, dstArray->length, dstPos, length);
154 ClassObject* dstClass = dstArray->clazz;
171 srcType, dstArray->contents, dstPos,
178 memmove((u1*) dstArray->contents + dstPos,
185 move16((u1*) dstArray->contents + dstPos * 2
    [all...]
  /dalvik/vm/oo/
Array.h 116 * "dstElemClass" is the type of element that "dstArray" holds.
118 bool dvmCopyObjectArray(ArrayObject* dstArray, const ArrayObject* srcArray,
126 bool dvmUnboxObjectArray(ArrayObject* dstArray, const ArrayObject* srcArray,
Array.cpp 492 bool dvmCopyObjectArray(ArrayObject* dstArray, const ArrayObject* srcArray,
498 assert(srcArray->length == dstArray->length);
499 assert(dstArray->clazz->elementClass == dstElemClass ||
500 (dstArray->clazz->elementClass == dstElemClass->elementClass &&
501 dstArray->clazz->arrayDim == dstElemClass->arrayDim+1));
503 length = dstArray->length;
510 dvmSetObjectArrayElement(dstArray, count, src[count]);
521 bool dvmUnboxObjectArray(ArrayObject* dstArray, const ArrayObject* srcArray,
525 void* dst = (void*)dstArray->contents;
526 u4 count = dstArray->length
    [all...]
  /frameworks/base/core/jni/android/graphics/
Matrix.cpp 274 float* dstArray = autoDst.ptr() + dstIndex;
295 dstArray[i << 1] = SkScalarToFloat(dstPt[i].fX);
296 dstArray[(i << 1) + 1] = SkScalarToFloat(dstPt[i].fY);
300 matrix->mapPoints((SkPoint*)dstArray, (const SkPoint*)srcArray,
303 matrix->mapVectors((SkVector*)dstArray, (const SkVector*)srcArray,
  /libcore/luni/src/main/native/
libcore_io_Memory.cpp 346 jarray dstArray = reinterpret_cast<jarray>(dstObject);
347 jbyte* dstBytes = reinterpret_cast<jbyte*>(env->GetPrimitiveArrayCritical(dstArray, NULL));
354 env->ReleasePrimitiveArrayCritical(dstArray, dstBytes, 0);
357 static void Memory_unsafeBulkPut(JNIEnv* env, jclass, jbyteArray dstArray, jint dstOffset,
359 ScopedByteArrayRW dstBytes(env, dstArray);
  /external/icu4c/i18n/unicode/
dtfmtsym.h 690 * @param dstArray the copy destination array.
691 * @param dstCount fill in with the lenth of 'dstArray'.
695 static void assignArray(UnicodeString*& dstArray,
  /external/icu4c/i18n/
dtfmtsym.cpp 246 DateFormatSymbols::assignArray(UnicodeString*& dstArray,
264 dstArray = newUnicodeStringArray(srcCount);
265 if(dstArray != NULL) {
268 dstArray[i].fastCopyFrom(srcArray[i]);
    [all...]

Completed in 388 milliseconds