HomeSort by relevance Sort by last modified time
    Searched defs:System (Results 151 - 175 of 839) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/antlr/src/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/src/org/antlr/runtime/tree/
TreeRewriter.java 103 System.out.println(((Tree)oldTree).toStringTree()+" -> "+
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESKeySpecTest.java 188 System.arraycopy(key1, 2, exp, 0, 8);
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ErrorManagerTest.java 31 private final PrintStream err = System.err;
38 System.setErr(new PrintStream(errSubstituteStream));
42 System.setErr(err);
  /external/apache-http/src/org/apache/http/util/
ByteArrayBuffer.java 58 System.arraycopy(this.buffer, 0, newbuffer, 0, this.len);
77 System.arraycopy(b, off, this.buffer, this.len, len);
126 System.arraycopy(this.buffer, 0, b, 0, this.len);
  /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/
BoolStack.java 191 System.arraycopy(m_values, 0, newVector, 0, m_index + 1);
IntVector.java 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
212 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
263 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i);
288 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree);
ObjectStack.java 81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
ObjectVector.java 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
212 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
260 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i);
285 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree);
414 System.arraycopy(m_map, 0, newMap, 0, m_firstFree);
StringToIntTable.java 102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
108 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
StringVector.java 103 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
183 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
UnionChildIterator.java 77 System.arraycopy(tests, 0, m_nodeTests, 0, len);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 87 System.arraycopy(iv, 0, block, 0, iv.length);
88 System.arraycopy(in, 0, block, iv.length, inLen);
96 System.arraycopy(block, 0, buf, 0, iv.length);
97 System.arraycopy(block, 8 * i, buf, iv.length, 8);
110 System.arraycopy(buf, 0, block, 0, 8);
111 System.arraycopy(buf, 8, block, 8 * i, 8);
140 System.arraycopy(in, 0, a, 0, iv.length);
141 System.arraycopy(in, iv.length, block, 0, inLen - iv.length);
151 System.arraycopy(a, 0, buf, 0, iv.length);
152 System.arraycopy(block, 8 * (i - 1), buf, iv.length, 8)
    [all...]
RSACoreEngine.java 105 System.arraycopy(in, inOff, block, 0, inLen);
132 System.arraycopy(output, 1, tmp, 0, tmp.length);
141 System.arraycopy(output, 0, tmp, tmp.length - output.length, output.length);
152 System.arraycopy(output, 1, tmp, 0, tmp.length);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
OpenSSLPBEParametersGenerator.java 60 System.arraycopy(buf, 0, key, offset, len);
PKCS12ParametersGenerator.java 123 System.arraycopy(S, 0, I, 0, S.length);
124 System.arraycopy(P, 0, I, S.length, P.length);
154 System.arraycopy(A, 0, dKey, (i - 1) * u, dKey.length - ((i - 1) * u));
158 System.arraycopy(A, 0, dKey, (i - 1) * u, A.length);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
CFBBlockCipher.java 77 System.arraycopy(iv, 0, IV, IV.length - iv.length, iv.length);
85 System.arraycopy(iv, 0, IV, 0, IV.length);
186 System.arraycopy(cfbV, blockSize, cfbV, 0, cfbV.length - blockSize);
187 System.arraycopy(out, outOff, cfbV, cfbV.length - blockSize, blockSize);
226 System.arraycopy(cfbV, blockSize, cfbV, 0, cfbV.length - blockSize);
227 System.arraycopy(in, inOff, cfbV, cfbV.length - blockSize, blockSize);
246 System.arraycopy(IV, 0, cfbV, 0, IV.length);
CTSBlockCipher.java 95 System.arraycopy(buf, blockSize, buf, 0, blockSize);
146 System.arraycopy(in, inOff, buf, bufOff, gapLen);
149 System.arraycopy(buf, blockSize, buf, 0, blockSize);
158 System.arraycopy(in, inOff, buf, bufOff, blockSize);
160 System.arraycopy(buf, blockSize, buf, 0, blockSize);
167 System.arraycopy(in, inOff, buf, bufOff, len);
231 System.arraycopy(block, 0, out, outOff + blockSize, len);
253 System.arraycopy(buf, blockSize, block, 0, len);
256 System.arraycopy(lastBlock, 0, out, outOff + blockSize, len);
OFBBlockCipher.java 74 System.arraycopy(iv, 0, IV, IV.length - iv.length, iv.length);
82 System.arraycopy(iv, 0, IV, 0, IV.length);
163 System.arraycopy(ofbV, blockSize, ofbV, 0, ofbV.length - blockSize);
164 System.arraycopy(ofbOutV, 0, ofbV, ofbV.length - blockSize, blockSize);
175 System.arraycopy(IV, 0, ofbV, 0, IV.length);
SICBlockCipher.java 57 System.arraycopy(iv, 0, IV, 0, IV.length);
116 System.arraycopy(IV, 0, counter, 0, counter.length);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/gcm/
GCMUtil.java 58 System.arraycopy(c, 0, block, 0, 16);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/paddings/
PaddedBufferedBlockCipher.java 203 System.arraycopy(in, inOff, buf, bufOff, gapLen);
220 System.arraycopy(in, inOff, buf, bufOff, len);
288 System.arraycopy(buf, 0, out, outOff, resultLen);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/
DSASigner.java 133 System.arraycopy(message, 0, trunc, 0, trunc.length);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEDHKeyAgreement.java 61 System.arraycopy(tmp, 1, ntmp, 0, ntmp.length);
130 System.arraycopy(secret, 0, sharedSecret, offset, secret.length);
151 System.arraycopy(res, 0, key, 0, key.length);

Completed in 868 milliseconds

1 2 3 4 5 67 8 91011>>