Searched defs:inputOffset (Results 1 - 25 of 30) sorted by relevance

12

/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLSignatureRawRSA.java50 private int inputOffset; field in class:OpenSSLSignatureRawRSA
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, inputBuffe
[all...]
H A DOpenSSLCipherRSA.java250 protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) { argument
256 System.arraycopy(input, inputOffset, buffer, bufferOffset, inputLen);
262 protected int engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, argument
264 engineUpdate(input, inputOffset, inputLen);
269 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
272 engineUpdate(input, inputOffset, inputLen);
305 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, argument
308 byte[] b = engineDoFinal(input, inputOffset, inputLen);
H A DOpenSSLCipher.java131 abstract int updateInternal(byte[] input, int inputOffset, int inputLen, argument
296 protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) { argument
309 bytesWritten = updateInternal(input, inputOffset, inputLen, output, 0, maximumLen);
325 protected int engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, argument
328 return updateInternal(input, inputOffset, inputLen, output, outputOffset, maximumLen);
332 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
341 bytesWritten = updateInternal(input, inputOffset, inputLen, output, 0, maximumLen);
367 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, argument
378 bytesWritten = updateInternal(input, inputOffset, inputLen, output, outputOffset,
534 int updateInternal(byte[] input, int inputOffset, in argument
1091 updateInternal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset, int maximumLen) argument
1169 engineUpdateAAD(byte[] input, int inputOffset, int inputLen) argument
1308 updateInternal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset, int maximumLen) argument
1328 engineUpdateAAD(byte[] input, int inputOffset, int inputLen) argument
[all...]
/external/skia/src/effects/
H A DSkColorFilterImageFilter.cpp64 SkIPoint inputOffset = SkIPoint::Make(0, 0); local
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),
H A DSkDropShadowImageFilter.cpp66 SkIPoint inputOffset = SkIPoint::Make(0, 0); local
67 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
72 const SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
102 canvas->translate(SkIntToScalar(inputOffset.fX - bounds.fLeft),
103 SkIntToScalar(inputOffset.fY - bounds.fTop));
H A DSkTileImageFilter.cpp45 SkIPoint inputOffset = SkIPoint::Make(0, 0); local
46 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
66 srcIRect.offset(-inputOffset);
93 SkIntToScalar(inputOffset.x()), SkIntToScalar(inputOffset.y()),
H A DSkAlphaThresholdFilter.cpp138 SkIPoint inputOffset = SkIPoint::Make(0, 0); local
139 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
144 const SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
162 bounds.offset(-inputOffset);
223 SkIPoint srcOffset = { bounds.fLeft - inputOffset.fX, bounds.fTop - inputOffset.fY };
H A DSkMatrixConvolutionImageFilter.cpp288 SkIPoint inputOffset = SkIPoint::Make(0, 0); local
289 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
295 input = this->applyCropRect(this->mapContext(ctx), input.get(), &inputOffset, &bounds);
317 bounds.offset(-inputOffset);
364 bounds.offset(-inputOffset);
H A DSkMagnifierImageFilter.cpp323 SkIPoint inputOffset = SkIPoint::Make(0, 0); local
324 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
329 const SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
352 bounds.offset(-inputOffset);
H A DSkMorphologyImageFilter.cpp536 SkIPoint inputOffset = SkIPoint::Make(0, 0); local
537 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
543 input = this->applyCropRect(this->mapContext(ctx), input.get(), &inputOffset, &bounds);
559 srcBounds.offset(-inputOffset);
H A DSkLightingImageFilter.cpp1273 SkIPoint inputOffset = SkIPoint::Make(0, 0); local
1274 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
1279 const SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
1288 bounds.offset(-inputOffset);
1325 matrix.postTranslate(SkIntToScalar(-inputOffset.x()), SkIntToScalar(-inputOffset.y()));
1428 SkIPoint inputOffset = SkIPoint::Make(0, 0); local
1429 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
1434 const SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DCipherSpi.java412 int inputOffset,
415 bOut.write(input, inputOffset, inputLen);
437 int inputOffset,
442 bOut.write(input, inputOffset, inputLen);
464 int inputOffset,
470 bOut.write(input, inputOffset, inputLen);
493 int inputOffset,
501 bOut.write(input, inputOffset, inputLen);
410 engineUpdate( byte[] input, int inputOffset, int inputLen) argument
435 engineUpdate( byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
462 engineDoFinal( byte[] input, int inputOffset, int inputLen) argument
491 engineDoFinal( byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseStreamCipher.java329 int inputOffset,
334 cipher.processBytes(input, inputOffset, inputLen, out, 0);
341 int inputOffset,
354 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
367 int inputOffset,
372 byte[] out = engineUpdate(input, inputOffset, inputLen);
386 int inputOffset,
399 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
327 engineUpdate( byte[] input, int inputOffset, int inputLen) argument
339 engineUpdate( byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
365 engineDoFinal( byte[] input, int inputOffset, int inputLen) argument
384 engineDoFinal( byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
H A DBaseWrapCipher.java256 int inputOffset,
264 int inputOffset,
275 int inputOffset,
286 int inputOffset,
254 engineUpdate( byte[] input, int inputOffset, int inputLen) argument
262 engineUpdate( byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
273 engineDoFinal( byte[] input, int inputOffset, int inputLen) argument
284 engineDoFinal( byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
H A DBaseBlockCipher.java1067 int inputOffset,
1076 int len = cipher.processBytes(input, inputOffset, inputLen, out, 0);
1094 cipher.processBytes(input, inputOffset, inputLen, null, 0);
1101 int inputOffset,
1114 return cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
1125 int inputOffset,
1134 len = cipher.processBytes(input, inputOffset, inputLen, tmp, 0);
1160 int inputOffset,
1177 len = cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
1065 engineUpdate( byte[] input, int inputOffset, int inputLen) argument
1099 engineUpdate( byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
1123 engineDoFinal( byte[] input, int inputOffset, int inputLen) argument
1158 engineDoFinal( byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
/external/skia/src/core/
H A DSkMatrixImageFilter.cpp52 SkIPoint inputOffset = SkIPoint::Make(0, 0); local
53 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
65 const SkIRect srcBounds = SkIRect::MakeXYWH(inputOffset.x(), inputOffset.y(),
H A DSkBlurImageFilter.cpp148 SkIPoint inputOffset = SkIPoint::Make(0, 0); local
150 sk_sp<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputOffset));
155 SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.fX, inputOffset.fY,
184 return input->makeSubset(inputBounds.makeOffset(-inputOffset.x(),
185 -inputOffset.y()));
190 inputBounds.offset(-inputOffset);
191 dstBounds.offset(-inputOffset);
232 return input->makeSubset(inputBounds.makeOffset(-inputOffset.x(),
233 -inputOffset
[all...]
H A DSkColorSpace_ICC.cpp1126 const size_t inputOffset = dataOffset; local
1127 return_if_false(len >= inputOffset, "A2B0 lutnType tag too small for input gamma table");
1131 src + inputOffset, len - inputOffset)) {
1144 const size_t clutOffset = inputOffset + precision*inTableEntries*inputChannels;
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_driver.h152 uint32_t inputOffset; /* base address for user args */ member in struct:nv50_ir_prog_info::__anon15037::__anon15042
/external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/
H A DSSLSocketTest.java1104 protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) { argument
1105 return delegate.update(input, inputOffset, inputLen);
1108 protected int engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, argument
1110 return delegate.update(input, inputOffset, inputLen, output, outputOffset);
1113 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
1115 return delegate.update(input, inputOffset, inputLen);
1119 byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
1121 return delegate.doFinal(input, inputOffset, inputLen, output, outputOffset);
1118 engineDoFinal( byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 274 milliseconds

12