OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dstPos
(Results
1 - 3
of
3
) sorted by null
/dalvik/vm/native/
java_lang_System.cpp
193
int
dstPos
= args[3];
217
if (srcPos < 0 ||
dstPos
< 0 || length < 0 ||
219
dstPos
> (int) dstArray->length - length)
222
"src.length=%d srcPos=%d dst.length=%d
dstPos
=%d length=%d",
223
srcArray->length, srcPos, dstArray->length,
dstPos
, length);
245
srcType, dstArray->contents,
dstPos
,
252
memmove((u1*) dstArray->contents +
dstPos
,
259
move16((u1*) dstArray->contents +
dstPos
* 2,
266
move32((u1*) dstArray->contents +
dstPos
* 4,
276
move32((u1*) dstArray->contents +
dstPos
* 8
[
all
...]
/frameworks/base/core/java/android/net/
NetworkStatsHistory.java
415
final int
dstPos
= index + 1;
418
System.arraycopy(bucketStart, index, bucketStart,
dstPos
, length);
419
if (activeTime != null) System.arraycopy(activeTime, index, activeTime,
dstPos
, length);
420
if (rxBytes != null) System.arraycopy(rxBytes, index, rxBytes,
dstPos
, length);
421
if (rxPackets != null) System.arraycopy(rxPackets, index, rxPackets,
dstPos
, length);
422
if (txBytes != null) System.arraycopy(txBytes, index, txBytes,
dstPos
, length);
423
if (txPackets != null) System.arraycopy(txPackets, index, txPackets,
dstPos
, length);
424
if (operations != null) System.arraycopy(operations, index, operations,
dstPos
, length);
/art/runtime/interpreter/
interpreter.cc
135
jint
dstPos
= shadow_frame->GetVReg(arg_offset + 3);
141
dst->Set(
dstPos
+ i, src->Get(srcPos + i));
147
dst->Set(
dstPos
+ i, src->Get(srcPos + i));
153
dst->Set(
dstPos
+ i, src->Get(srcPos + i));
[
all
...]
Completed in 722 milliseconds