/external/lz4/tests/ |
fasttest.c | 30 int outOffset = 0; 37 if (outSize - (outOffset + 8) < LZ4_compressBound(length)) return -3; 40 lz4Stream, input + inOffset, output + outOffset + 8, length, outSize-outOffset, 1); 42 memcpy(output + outOffset, &length, 4); /* input length */ 43 memcpy(output + outOffset + 4, &outBytes, 4); /* output length */ 45 outOffset += outBytes + 8; 48 if (outOffset + 8 > outSize) return -5; 49 memset(output + outOffset, 0, 4); 50 memset(output + outOffset + 4, 0, 4) [all...] |
/dalvik/dexgen/src/com/android/dexgen/util/ |
Hex.java | 243 * @param outOffset {@code >= 0;} first output offset to print 250 int outOffset, int bpl, int addressLength) { 260 if (outOffset < 0) { 261 throw new IllegalArgumentException("outOffset < 0"); 276 case 2: astr = Hex.u1(outOffset); break; 277 case 4: astr = Hex.u2(outOffset); break; 278 case 6: astr = Hex.u3(outOffset); break; 279 default: astr = Hex.u4(outOffset); break; 287 outOffset++;
|
/dalvik/dx/src/com/android/dx/util/ |
Hex.java | 243 * @param outOffset {@code >= 0;} first output offset to print 250 int outOffset, int bpl, int addressLength) { 260 if (outOffset < 0) { 261 throw new IllegalArgumentException("outOffset < 0"); 276 case 2: astr = Hex.u1(outOffset); break; 277 case 4: astr = Hex.u2(outOffset); break; 278 case 6: astr = Hex.u3(outOffset); break; 279 default: astr = Hex.u4(outOffset); break; 287 outOffset++;
|
/external/smali/util/src/main/java/org/jf/util/ |
Hex.java | 255 * @param outOffset >= 0; first output offset to print 262 int outOffset, int bpl, int addressLength) { 272 if (outOffset < 0) { 273 throw new IllegalArgumentException("outOffset < 0"); 288 case 2: astr = Hex.u1(outOffset); break; 289 case 4: astr = Hex.u2(outOffset); break; 290 case 6: astr = Hex.u3(outOffset); break; 291 default: astr = Hex.u4(outOffset); break; 299 outOffset++;
|
/external/skia/src/gpu/ |
GrTextureAdjuster.cpp | 72 SkIPoint* outOffset, 91 if (outOffset) { 93 outOffset->set(contentArea->fLeft, contentArea->fRight); 95 outOffset->set(0, 0); 102 if (copy && outOffset) { 103 outOffset->set(0, 0);
|
GrTextureAdjuster.h | 23 outOffset will be the top-left corner of the subset if a copy is not made. Otherwise, 24 the copy will be tight to the contents and outOffset will be (0, 0). If the copy's size 26 sk_sp<GrTextureProxy> refTextureProxySafeForParams(const GrSamplerParams&, SkIPoint* outOffset,
|
/frameworks/base/core/java/android/hardware/camera2/ |
DngCreator.java | 518 private static void yuvToRgb(byte[] yuvData, int outOffset, /*out*/byte[] rgbOut) { 531 rgbOut[outOffset] = (byte) Math.max(0, Math.min(COLOR_MAX, r)); 532 rgbOut[outOffset + 1] = (byte) Math.max(0, Math.min(COLOR_MAX, g)); 533 rgbOut[outOffset + 2] = (byte) Math.max(0, Math.min(COLOR_MAX, b)); 539 private static void colorToRgb(int color, int outOffset, /*out*/byte[] rgbOut) { 540 rgbOut[outOffset] = (byte) Color.red(color); 541 rgbOut[outOffset + 1] = (byte) Color.green(color); 542 rgbOut[outOffset + 2] = (byte) Color.blue(color);
|
/frameworks/base/tools/aapt2/proto/ |
ProtoSerialize.h | 56 bool ReadDataMetaData(uint64_t* outOffset, uint64_t* outLen);
|
/frameworks/base/media/java/android/media/ |
ResampleInputStream.java | 148 byte[] out, int outOffset, int npoints);
|
/libcore/ojluni/src/main/java/javax/crypto/ |
Mac.java | 638 * <code>outOffset</code> inclusive. 641 * @param outOffset the offset in <code>output</code> where the MAC is 649 public final void doFinal(byte[] output, int outOffset) 657 if (output == null || output.length-outOffset < macLen) { 662 System.arraycopy(mac, 0, output, outOffset, macLen);
|
/external/icu/icu4c/source/tools/icuswap/ |
icuswap.cpp | 323 uint32_t nameOffset, inOffset, outOffset, length; 558 table[i].outOffset=table[i].inOffset; 588 * Now the outOffset values are in order. 591 /* assign outOffset values */ 593 table[i].outOffset=offset; 601 ds->writeUInt32(&outEntries[i].dataOffset, table[i].outOffset); 607 uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length); 611 outBytes+table[i].outOffset, pErrorCode); 628 uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length);
|
/frameworks/base/keystore/java/android/security/keystore/ |
AndroidKeyStoreSignatureSpiBase.java | 310 protected final int engineSign(byte[] out, int outOffset, int outLen) 312 return super.engineSign(out, outOffset, outLen);
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
NativeCrypto.java | 169 public static native int ECDH_compute_key(byte[] out, int outOffset, 233 public static native int EVP_PKEY_encrypt(NativeRef.EVP_PKEY_CTX ctx, byte[] out, int outOffset, 238 public static native int EVP_PKEY_decrypt(NativeRef.EVP_PKEY_CTX ctx, byte[] out, int outOffset, 267 int outOffset, byte[] in, int inOffset, int inLength); 270 int outOffset) throws BadPaddingException, IllegalBlockSizeException; 302 byte[] out, int outOffset, byte[] nonce, byte[] in, int inOffset, int inLength, 306 byte[] out, int outOffset, byte[] nonce, byte[] in, int inOffset, int inLength, [all...] |
/external/icu/icu4c/source/test/intltest/ |
tzfmttst.cpp | 311 int32_t outOffset = outRaw + outDst; 312 int32_t diff = outOffset - inOffset; 320 + ", inOffset=" + inOffset + ", outOffset=" + outOffset); [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
TimeZoneFormatTest.java | 257 int outOffset = outOffsets[0] + outOffsets[1]; 258 int diff = outOffset - inOffset; 266 + ", inOffset=" + inOffset + ", outOffset=" + outOffset); [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
TimeZoneFormatTest.java | 256 int outOffset = outOffsets[0] + outOffsets[1]; 257 int diff = outOffset - inOffset; 265 + ", inOffset=" + inOffset + ", outOffset=" + outOffset); [all...] |
/external/conscrypt/common/src/jni/main/cpp/ |
NativeCrypto.cpp | [all...] |
/external/deqp/modules/gles3/functional/ |
es3fTransformFeedbackTests.cpp | 720 int outOffset = output.offset; 738 const deUint8* outPtr = outBasePtr + outStride*outNdx + outOffset + compNdx*sizeof(deUint32); 779 outOffset += numComponents*(int)sizeof(deUint32); [all...] |
/prebuilts/tools/common/m2/repository/org/smali/util/2.1.3/ |
util-2.1.3.jar | |
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
NativeCryptoTest.java | [all...] |
/external/conscrypt/platform/src/test/java/org/conscrypt/ |
NativeCryptoTest.java | [all...] |
/prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.0.CR3/ |
netty-codec-4.1.0.CR3.jar | |
/prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.3.Final/ |
netty-codec-4.1.3.Final.jar | |
/prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.6.Final/ |
netty-codec-4.1.6.Final.jar | |
/prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/ |
dexmaker-1.0.jar | |