Home
last modified time | relevance | path

Searched refs:outOffset (Results 1 – 12 of 12) sorted by relevance

/external/smali/util/src/main/java/org/jf/util/
DHex.java262 int outOffset, int bpl, int addressLength) { in dump() argument
272 if (outOffset < 0) { in dump()
288 case 2: astr = Hex.u1(outOffset); break; in dump()
289 case 4: astr = Hex.u2(outOffset); break; in dump()
290 case 6: astr = Hex.u3(outOffset); break; in dump()
291 default: astr = Hex.u4(outOffset); break; in dump()
299 outOffset++; in dump()
/external/dexmaker/src/dx/java/com/android/dx/util/
DHex.java250 int outOffset, int bpl, int addressLength) { in dump() argument
260 if (outOffset < 0) { in dump()
276 case 2: astr = Hex.u1(outOffset); break; in dump()
277 case 4: astr = Hex.u2(outOffset); break; in dump()
278 case 6: astr = Hex.u3(outOffset); break; in dump()
279 default: astr = Hex.u4(outOffset); break; in dump()
287 outOffset++; in dump()
/external/icu/icu4c/source/tools/icuswap/
Dicuswap.cpp321 uint32_t nameOffset, inOffset, outOffset, length; member
556 table[i].outOffset=table[i].inOffset; in udata_swapPackage()
591 table[i].outOffset=offset; in udata_swapPackage()
599 ds->writeUInt32(&outEntries[i].dataOffset, table[i].outOffset); in udata_swapPackage()
605 uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length); in udata_swapPackage()
609 outBytes+table[i].outOffset, pErrorCode); in udata_swapPackage()
626 … uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length); in udata_swapPackage()
/external/skia/src/gpu/
DGrTextureParamsAdjuster.cpp160 SkIPoint* outOffset) { in refTextureSafeForParams() argument
173 if (outOffset) { in refTextureSafeForParams()
175 outOffset->set(contentArea->fLeft, contentArea->fRight); in refTextureSafeForParams()
177 outOffset->set(0, 0); in refTextureSafeForParams()
184 if (copy && outOffset) { in refTextureSafeForParams()
185 outOffset->set(0, 0); in refTextureSafeForParams()
DGrTextureParamsAdjuster.h130 GrTexture* refTextureSafeForParams(const GrTextureParams&, SkIPoint* outOffset);
/external/conscrypt/src/main/java/org/conscrypt/
DNativeCrypto.java209 public static native int ECDH_compute_key(byte[] out, int outOffset, in ECDH_compute_key() argument
286 int outOffset, byte[] in, int inOffset, int inLength); in EVP_CipherUpdate() argument
289 int outOffset) throws BadPaddingException, IllegalBlockSizeException; in EVP_CipherFinal_ex() argument
325 int outOffset, byte[] nonce, byte[] in, int inOffset, int inLength, byte[] ad) in EVP_AEAD_CTX_seal() argument
329 int outOffset, byte[] nonce, byte[] in, int inOffset, int inLength, byte[] ad) in EVP_AEAD_CTX_open() argument
/external/icu/icu4c/source/test/intltest/
Dtzfmttst.cpp306 int32_t outOffset = outRaw + outDst; in TestTimeZoneRoundTrip() local
307 int32_t diff = outOffset - inOffset; in TestTimeZoneRoundTrip()
315 + ", inOffset=" + inOffset + ", outOffset=" + outOffset); in TestTimeZoneRoundTrip()
1008 int32_t outOffset = outtz.getRawOffset(); in TestISOFormat() local
1010 if (outOffset != adjustedOffset) { in TestISOFormat()
1011 …errln((UnicodeString)"FAIL: Incorrect offset:" + outOffset + "ms for input string: " + ISO_STR[i][… in TestISOFormat()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DTimeZoneFormatTest.java255 int outOffset = outOffsets[0] + outOffsets[1]; in TestTimeZoneRoundTrip() local
256 int diff = outOffset - inOffset; in TestTimeZoneRoundTrip()
264 + ", inOffset=" + inOffset + ", outOffset=" + outOffset); in TestTimeZoneRoundTrip()
846 int outOffset = outtz.getRawOffset(); in TestISOFormat() local
849 if (outOffset != adjustedOffset) { in TestISOFormat()
850 … errln("FAIL: Incorrect offset:" + outOffset + "ms for input string: " + ISO_STR[i][j] in TestISOFormat()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTimeZoneFormatTest.java251 int outOffset = outOffsets[0] + outOffsets[1]; in TestTimeZoneRoundTrip() local
252 int diff = outOffset - inOffset; in TestTimeZoneRoundTrip()
260 + ", inOffset=" + inOffset + ", outOffset=" + outOffset); in TestTimeZoneRoundTrip()
842 int outOffset = outtz.getRawOffset(); in TestISOFormat() local
845 if (outOffset != adjustedOffset) { in TestISOFormat()
846 … errln("FAIL: Incorrect offset:" + outOffset + "ms for input string: " + ISO_STR[i][j] in TestISOFormat()
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp4001 jbyteArray outArray, jint outOffset, jobject pubkeyRef, jobject privkeyRef) argument
4003 JNI_TRACE("ECDH_compute_key(%p, %d, %p, %p)", outArray, outOffset, pubkeyRef, privkeyRef);
4014 JNI_TRACE("ECDH_compute_key(%p, %d, %p, %p) <- ptr", outArray, outOffset, pubPkey, privPkey);
4019 outArray, outOffset, pubPkey, privPkey);
4023 if (ARRAY_OFFSET_INVALID(out, outOffset)) {
4061 ECDH_compute_key(&out[outOffset], out.size() - outOffset, pubkeyPoint, privkey.get(),
4703 jint outOffset, jbyteArray inArray, jint inOffset, jint inLength) { argument
4705 JNI_TRACE("EVP_CipherUpdate(%p, %p, %d, %p, %d)", ctx, outArray, outOffset, inArray, inOffset);
4725 if (ARRAY_OFFSET_LENGTH_INVALID(outBytes, outOffset, inLength)) {
4731 …tx, inBytes.get(), inBytes.size(), inOffset, inLength, outBytes.get(), outBytes.size(), outOffset);
[all …]
/external/deqp/modules/gles3/functional/
Des3fTransformFeedbackTests.cpp720 int outOffset = output.offset; in compareTransformFeedbackOutput() local
738 const deUint8* outPtr = outBasePtr + outStride*outNdx + outOffset + compNdx*sizeof(deUint32); in compareTransformFeedbackOutput()
779 outOffset += numComponents*(int)sizeof(deUint32); in compareTransformFeedbackOutput()
/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java2918 int outOffset = 0; in test_ECDH_compute_key_null_key_Failure() local
2921 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, pkey2Ref); in test_ECDH_compute_key_null_key_Failure()
2925 NativeCrypto.ECDH_compute_key(out, outOffset, null, pkey2Ref); in test_ECDH_compute_key_null_key_Failure()
2932 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, null); in test_ECDH_compute_key_null_key_Failure()