OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dstArray
(Results
1 - 7
of
7
) sorted by null
/art/runtime/native/
java_lang_System.cc
73
mirror::Array*
dstArray
= dstObject->AsArray();
78
UNLIKELY(dstPos >
dstArray
->GetLength() - count)) {
82
srcArray->GetLength(), srcPos,
dstArray
->GetLength(), dstPos,
87
mirror::Class* dstComponentType =
dstArray
->GetClass()->GetComponentType();
100
dstArray
->AsByteSizedArray()->Memmove(dstPos, srcArray->AsByteSizedArray(), srcPos, count);
105
dstArray
->AsShortSizedArray()->Memmove(dstPos, srcArray->AsShortSizedArray(), srcPos, count);
110
dstArray
->AsIntArray()->Memmove(dstPos, srcArray->AsIntArray(), srcPos, count);
115
dstArray
->AsLongArray()->Memmove(dstPos, srcArray->AsLongArray(), srcPos, count);
118
mirror::ObjectArray<mirror::Object>* dstObjArray =
dstArray
->AsObjectArray<mirror::Object>();
132
std::string dstType(PrettyTypeOf(
dstArray
));
[
all
...]
/libcore/luni/src/main/native/
libcore_io_Memory.cpp
326
jarray
dstArray
= reinterpret_cast<jarray>(dstObject);
327
jbyte* dstBytes = reinterpret_cast<jbyte*>(env->GetPrimitiveArrayCritical(
dstArray
, NULL));
334
env->ReleasePrimitiveArrayCritical(
dstArray
, dstBytes, 0);
337
static void Memory_unsafeBulkPut(JNIEnv* env, jclass, jbyteArray
dstArray
, jint dstOffset,
339
ScopedByteArrayRW dstBytes(env,
dstArray
);
/frameworks/base/core/jni/android/graphics/
Matrix.cpp
246
float*
dstArray
= autoDst.ptr() + dstIndex;
249
matrix->mapPoints((SkPoint*)
dstArray
, (const SkPoint*)srcArray,
252
matrix->mapVectors((SkVector*)
dstArray
, (const SkVector*)srcArray,
/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/icu/icu4c/source/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/icu/icu4c/source/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 1992 milliseconds