OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dstArray
(Results
1 - 4
of
4
) 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
...]
/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
);
/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,
Completed in 5096 milliseconds