HomeSort by relevance Sort by last modified time
    Searched refs:arraycopy (Results 76 - 100 of 1421) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/pooling/stacks/
DynamicIntStack.java 52 System.arraycopy(old, 0, stack, 0, old.length);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
CharCache.java 35 System.arraycopy(chars, 0, cache, pos, toWrite);
  /external/proguard/src/proguard/classfile/editor/
AnnotationsAttributeEditor.java 58 System.arraycopy(annotations, 0,
ExceptionsAttributeEditor.java 59 System.arraycopy(exceptionIndexTable, 0,
LineNumberTableAttributeEditor.java 58 System.arraycopy(lineNumberTable, 0,
  /external/proguard/src/proguard/util/
ArrayUtil.java 396 System.arraycopy(array, 0,
469 System.arraycopy(array, index,
487 System.arraycopy(array, index + 1,
512 System.arraycopy(array, 0,
585 System.arraycopy(array, index,
603 System.arraycopy(array, index + 1,
628 System.arraycopy(array, 0,
701 System.arraycopy(array, index,
719 System.arraycopy(array, index + 1,
744 System.arraycopy(array, 0
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
ByteStringMicro.java 85 System.arraycopy(bytes, offset, copy, 0, size);
127 System.arraycopy(bytes, 0, target, offset, bytes.length);
141 System.arraycopy(bytes, sourceOffset, target, targetOffset, size);
150 System.arraycopy(bytes, 0, copy, 0, size);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
MemoryDataStore.java 34 System.arraycopy(b, 0, buf, position, b.length);
40 System.arraycopy(b, off, buf, position, len);
72 System.arraycopy(buf, position, b, 0, readLength);
85 System.arraycopy(buf, position, b, 0, readLength);
  /frameworks/base/core/java/android/util/
IntArray.java 74 System.arraycopy(mValues, index, mValues, index + 1, mSize - index);
106 System.arraycopy(values.mValues, 0, mValues, mSize, count);
121 System.arraycopy(mValues, 0, newValues, 0, currentSize);
171 System.arraycopy(mValues, index + 1, mValues, index, mSize - index - 1);
  /libcore/benchmarks/src/benchmarks/
ArrayCopyBenchmark.java 36 System.arraycopy(src, 0, dst, 0, 8192);
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
DalvikThreadSampler.java 45 System.arraycopy(mutableStackTraceElements[depth], 0,
  /libcore/ojluni/src/main/java/javax/crypto/spec/
DESedeKeySpec.java 88 System.arraycopy(key, offset, this.key, 0, 24);
  /packages/apps/TV/common/src/com/android/tv/common/
CollectionUtils.java 40 System.arraycopy(array, 0, result, offset, array.length);
  /frameworks/base/obex/javax/obex/
ClientSession.java 114 System.arraycopy(header.nonce, 0, mChallengeDigest, 0, 16);
137 System.arraycopy(head, 0, requestPacket, 4, head.length);
182 System.arraycopy(head.nonce, 0, mChallengeDigest, 0, 16);
188 System.arraycopy(mConnectionId, 0, head.mConnectionID, 0, 4);
237 System.arraycopy(header.nonce, 0, mChallengeDigest, 0, 16);
242 System.arraycopy(mConnectionId, 0, header.mConnectionID, 0, 4);
254 System.arraycopy(mConnectionId, 0, head, 1, 4);
302 System.arraycopy(head.nonce, 0, mChallengeDigest, 0, 16);
310 System.arraycopy(mConnectionId, 0, head.mConnectionID, 0, 4);
348 System.arraycopy(headset.nonce, 0, mChallengeDigest, 0, 16)
    [all...]
  /art/test/028-array-write/src/
Main.java 59 System.arraycopy(mStorage, 0, mStorage,
65 System.arraycopy(mStorage, 0, mStorage,
  /art/test/096-array-copy-concurrent-gc/src/
Main.java 18 * Running concurrent gc and doing some System.arraycopy
64 System.arraycopy(array, 0, array, 1, array.length - 1);
74 System.arraycopy(array, 1, array, 0, array.length - 1);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognizerSharedState.java 126 System.arraycopy(state.following, 0, this.following, 0, state.following.length);
135 System.arraycopy(state.ruleMemo, 0, this.ruleMemo, 0, state.ruleMemo.length);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
IntArray.m 83 System.arraycopy(data, 0, newData, 0, data.length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
DummyStepInterpolator.java 102 System.arraycopy(currentState, 0, interpolatedState, 0, currentState.length);
103 System.arraycopy(currentDerivative, 0, interpolatedDerivatives, 0, currentDerivative.length);
StepNormalizer.java 143 System.arraycopy(interpolator.getInterpolatedState(), 0,
145 System.arraycopy(interpolator.getInterpolatedDerivatives(), 0,
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
StringToIntTable.java 109 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
115 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StringToIntTable.java 102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
108 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROctetStringGenerator.java 72 System.arraycopy(b, off, _buf, _off, numToCopy);
94 System.arraycopy(_buf, 0, bytes, 0, _off);
  /external/jetty/src/java/org/eclipse/jetty/util/
ArrayQueue.java 261 System.arraycopy(_elements, i + 1, _elements, i, _nextSlot - i);
269 System.arraycopy(_elements, i + 1, _elements, i, _elements.length - i - 1);
273 System.arraycopy(_elements, 1, _elements, 0, _nextSlot - 1);
337 System.arraycopy(_elements, i, _elements, i + 1, _nextSlot - i);
346 System.arraycopy(_elements, 0, _elements, 1, _nextSlot);
350 System.arraycopy(_elements, i, _elements, i + 1, _elements.length - i - 1);
369 System.arraycopy(_elements, _nextE, elements, 0, split);
371 System.arraycopy(_elements, 0, elements, split, _nextSlot);
  /external/mockito/src/org/mockito/internal/invocation/
ArgumentsProcessor.java 36 System.arraycopy(args, 0, newArgs, 0, nonVarArgsCount);
37 System.arraycopy(varArgs, 0, newArgs, nonVarArgsCount, varArgsCount);

Completed in 1050 milliseconds

1 2 34 5 6 7 8 91011>>