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

  /dalvik/vm/native/
java_lang_System.cpp 192 ArrayObject* dstArray = (ArrayObject*) args[2];
201 if (dstArray == NULL) {
211 if (!dvmIsArray(dstArray)) {
212 dvmThrowArrayStoreExceptionNotArray(((Object*)dstArray)->clazz, "destination");
219 dstPos > (int) dstArray->length - length)
223 srcArray->length, srcPos, dstArray->length, dstPos, length);
228 ClassObject* dstClass = dstArray->clazz;
245 srcType, dstArray->contents, dstPos,
252 memmove((u1*) dstArray->contents + dstPos,
259 move16((u1*) dstArray->contents + dstPos * 2
    [all...]
  /art/runtime/native/
java_lang_System.cc 206 mirror::Array* dstArray = dstObject->AsArray();
208 mirror::Class* dstComponentType = dstArray->GetClass()->GetComponentType();
211 if (UNLIKELY(srcPos < 0 || dstPos < 0 || length < 0 || srcPos > srcArray->GetLength() - length || dstPos > dstArray->GetLength() - length)) {
215 srcArray->GetLength(), srcPos, dstArray->GetLength(), dstPos, length);
224 std::string dstType(PrettyTypeOf(dstArray));
233 uint8_t* dstBytes = reinterpret_cast<uint8_t*>(dstArray->GetRawData(width));
259 uint8_t* dstBytes = reinterpret_cast<uint8_t*>(dstArray->GetRawData(width));
261 if (dstArray == srcArray || dstComponentType->IsAssignableFrom(srcComponentType)) {
265 Runtime::Current()->GetHeap()->WriteBarrierArray(dstArray, dstPos, length);
276 CHECK_NE(dstArray, srcArray)
    [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 494 bool dvmCopyObjectArray(ArrayObject* dstArray, const ArrayObject* srcArray,
500 assert(srcArray->length == dstArray->length);
501 assert(dstArray->clazz->elementClass == dstElemClass ||
502 (dstArray->clazz->elementClass == dstElemClass->elementClass &&
503 dstArray->clazz->arrayDim == dstElemClass->arrayDim+1));
505 length = dstArray->length;
512 dvmSetObjectArrayElement(dstArray, count, src[count]);
523 bool dvmUnboxObjectArray(ArrayObject* dstArray, const ArrayObject* srcArray,
527 void* dst = (void*)dstArray->contents;
528 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/chromium_org/third_party/icu/source/i18n/unicode/
dtfmtsym.h 686 * @param dstArray the copy destination array.
687 * @param dstCount fill in with the lenth of 'dstArray'.
691 static void assignArray(UnicodeString*& dstArray,
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_split_copy.c 67 struct gl_client_array dstarray; member in struct:copy_context::__anon13427
460 copy->dstarray_ptr[i] = &copy->varying[j].dstarray;
519 struct gl_client_array *dst = &copy->varying[i].dstarray;
  /external/mesa3d/src/mesa/vbo/
vbo_split_copy.c 67 struct gl_client_array dstarray; member in struct:copy_context::__anon23894
460 copy->dstarray_ptr[i] = &copy->varying[j].dstarray;
519 struct gl_client_array *dst = &copy->varying[i].dstarray;
  /external/icu4c/i18n/unicode/
dtfmtsym.h 775 * @param dstArray the copy destination array.
776 * @param dstCount fill in with the lenth of 'dstArray'.
780 static void assignArray(UnicodeString*& dstArray,
  /external/chromium_org/third_party/icu/source/i18n/
dtfmtsym.cpp 244 DateFormatSymbols::assignArray(UnicodeString*& dstArray,
262 dstArray = newUnicodeStringArray(srcCount);
263 if(dstArray != NULL) {
266 dstArray[i].fastCopyFrom(srcArray[i]);
    [all...]
  /external/icu4c/i18n/
dtfmtsym.cpp 229 DateFormatSymbols::assignArray(UnicodeString*& dstArray,
247 dstArray = newUnicodeStringArray(srcCount);
248 if(dstArray != NULL) {
251 dstArray[i].fastCopyFrom(srcArray[i]);
    [all...]

Completed in 297 milliseconds