HomeSort by relevance Sort by last modified time
    Searched refs:inputOffset (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /frameworks/base/keystore/java/android/security/keystore/
KeyStoreCryptoOperationStreamer.java 37 byte[] update(byte[] input, int inputOffset, int inputLength) throws KeyStoreException;
38 byte[] doFinal(byte[] input, int inputOffset, int inputLength, byte[] signature,
KeyStoreCryptoOperationChunkedStreamer.java 91 public byte[] update(byte[] input, int inputOffset, int inputLength) throws KeyStoreException {
107 input, inputOffset, inputBytesInChunk);
110 if ((mBufferedLength == 0) && (inputOffset == 0)
120 input, inputOffset, inputBytesInChunk);
124 inputOffset += inputBytesInChunk;
208 public byte[] doFinal(byte[] input, int inputOffset, int inputLength,
213 inputOffset = 0;
217 byte[] output = update(input, inputOffset, inputLength);
AndroidKeyStoreECDSASignatureSpi.java 73 public byte[] update(byte[] input, int inputOffset, int inputLength)
76 mInputBuffer.write(input, inputOffset, inputLength);
83 public byte[] doFinal(byte[] input, int inputOffset, int inputLength, byte[] signature,
87 mInputBuffer.write(input, inputOffset, inputLength);
AndroidKeyStoreCipherSpiBase.java 320 protected final byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) {
338 output = mMainDataStreamer.update(input, inputOffset, inputLen);
372 protected final int engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output,
374 byte[] outputCopy = engineUpdate(input, inputOffset, inputLen);
425 protected final void engineUpdateAAD(byte[] input, int inputOffset, int inputLen) {
448 output = mAdditionalAuthenticationDataStreamer.update(input, inputOffset, inputLen);
470 int inputOffset;
474 inputOffset = src.arrayOffset() + src.position();
479 inputOffset = 0;
483 engineUpdateAAD(input, inputOffset, inputLen)
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
NullCipherSpi.java 79 protected byte[] engineUpdate(byte[] input, int inputOffset,
83 System.arraycopy(input, inputOffset, x, 0, inputLen);
87 protected int engineUpdate(byte[] input, int inputOffset,
91 System.arraycopy(input, inputOffset, output, outputOffset, inputLen);
95 protected byte[] engineDoFinal(byte[] input, int inputOffset,
98 return engineUpdate(input, inputOffset, inputLen);
101 protected int engineDoFinal(byte[] input, int inputOffset,
105 return engineUpdate(input, inputOffset, inputLen,
Cipher.java     [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLSignatureRawRSA.java 50 private int inputOffset;
59 final int oldOffset = inputOffset++;
61 if (inputOffset > inputBuffer.length) {
71 final int oldOffset = inputOffset;
72 inputOffset += len;
74 if (inputOffset > inputBuffer.length) {
106 inputOffset = 0;
124 inputOffset = 0;
140 throw new SignatureException("input length " + inputOffset + " != "
146 NativeCrypto.RSA_private_encrypt(inputOffset, inputBuffer, outputBuffer
    [all...]
OpenSSLCipherChaCha20.java 73 int updateInternal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset,
82 System.arraycopy(input, inputOffset, singleBlock, currentBlockConsumedBytes, len);
93 inputOffset += len;
98 NativeCrypto.chacha20_encrypt_decrypt(input, inputOffset, output,
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
PlanarYUVLuminanceSource.java 86 int inputOffset = top * dataWidth + left;
90 System.arraycopy(yuvData, inputOffset, matrix, 0, area);
98 System.arraycopy(yuv, inputOffset, matrix, outputOffset, width);
99 inputOffset += dataWidth;
114 int inputOffset = top * dataWidth + left;
119 int grey = yuv[inputOffset + x] & 0xff;
122 inputOffset += dataWidth;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyCipher.java 100 protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) {
105 protected int engineUpdate(byte[] input, int inputOffset, int inputLen,
111 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
117 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen,
  /external/skia/src/effects/
SkColorFilterImageFilter.cpp 64 SkIPoint inputOffset = SkIPoint::Make(0, 0);
65 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
74 inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
110 SkIntToScalar(inputOffset.fX - bounds.fLeft),
111 SkIntToScalar(inputOffset.fY - bounds.fTop),
SkDropShadowImageFilter.cpp 69 SkIPoint inputOffset = SkIPoint::Make(0, 0);
70 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
75 const SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
105 canvas->translate(SkIntToScalar(inputOffset.fX - bounds.fLeft),
106 SkIntToScalar(inputOffset.fY - bounds.fTop));
SkAlphaThresholdFilter.cpp 141 SkIPoint inputOffset = SkIPoint::Make(0, 0);
142 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
147 const SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
165 bounds.offset(-inputOffset);
232 SkIPoint srcOffset = { bounds.fLeft - inputOffset.fX, bounds.fTop - inputOffset.fY };
SkMagnifierImageFilter.cpp 79 SkIPoint inputOffset = SkIPoint::Make(0, 0);
80 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
85 const SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
108 bounds.offset(-inputOffset);
SkTileImageFilter.cpp 46 SkIPoint inputOffset = SkIPoint::Make(0, 0);
47 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
67 srcIRect.offset(-inputOffset);
91 SkIntToScalar(inputOffset.x()), SkIntToScalar(inputOffset.y()),
  /external/skqp/src/effects/
SkColorFilterImageFilter.cpp 65 SkIPoint inputOffset = SkIPoint::Make(0, 0);
66 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
75 inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
111 SkIntToScalar(inputOffset.fX - bounds.fLeft),
112 SkIntToScalar(inputOffset.fY - bounds.fTop),
SkDropShadowImageFilter.cpp 69 SkIPoint inputOffset = SkIPoint::Make(0, 0);
70 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
75 const SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
105 canvas->translate(SkIntToScalar(inputOffset.fX - bounds.fLeft),
106 SkIntToScalar(inputOffset.fY - bounds.fTop));
SkAlphaThresholdFilter.cpp 141 SkIPoint inputOffset = SkIPoint::Make(0, 0);
142 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
147 const SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
165 bounds.offset(-inputOffset);
232 SkIPoint srcOffset = { bounds.fLeft - inputOffset.fX, bounds.fTop - inputOffset.fY };
SkMagnifierImageFilter.cpp 79 SkIPoint inputOffset = SkIPoint::Make(0, 0);
80 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
85 const SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
108 bounds.offset(-inputOffset);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherSpiTest.java 52 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
54 return super.engineDoFinal(input, inputOffset, inputLen);
58 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output,
61 return super.engineDoFinal(input, inputOffset, inputLen, output, outputOffset);
113 protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) {
114 return super.engineUpdate(input, inputOffset, inputLen);
118 protected int engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output,
120 return super.engineUpdate(input, inputOffset, inputLen, output, outputOffset);
330 byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) {
487 protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseStreamCipher.java 327 int inputOffset,
332 cipher.processBytes(input, inputOffset, inputLen, out, 0);
339 int inputOffset,
352 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
365 int inputOffset,
370 byte[] out = engineUpdate(input, inputOffset, inputLen);
384 int inputOffset,
397 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
  /external/skia/src/core/
SkMatrixImageFilter.cpp 53 SkIPoint inputOffset = SkIPoint::Make(0, 0);
54 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
66 const SkIRect srcBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
  /external/skqp/src/core/
SkMatrixImageFilter.cpp 53 SkIPoint inputOffset = SkIPoint::Make(0, 0);
54 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
66 const SkIRect srcBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
  /frameworks/ml/nn/common/operations/
FullyConnected.cpp 67 int32_t inputOffset = -inputShape.offset;
95 inputData, convertShapeToDims(inputShape), inputOffset,
  /external/v8/tools/turbolizer/
edge.js 41 var inputOffset = MINIMUM_EDGE_SEPARATION * (index + 1);
43 ? (target.x + target.getTotalNodeWidth() + inputOffset)
44 : (target.x - inputOffset)

Completed in 795 milliseconds

1 2 3 4 5 6