/external/smali/util/src/main/java/org/jf/util/ |
D | Hex.java | 262 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/ |
D | Hex.java | 250 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/ |
D | icuswap.cpp | 322 uint32_t nameOffset, inOffset, outOffset, length; member 557 table[i].outOffset=table[i].inOffset; in udata_swapPackage() 592 table[i].outOffset=offset; in udata_swapPackage() 600 ds->writeUInt32(&outEntries[i].dataOffset, table[i].outOffset); in udata_swapPackage() 606 uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length); in udata_swapPackage() 610 outBytes+table[i].outOffset, pErrorCode); in udata_swapPackage() 627 … uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length); in udata_swapPackage()
|
/external/chromium_org/third_party/icu/source/tools/icuswap/ |
D | icuswap.cpp | 322 uint32_t nameOffset, inOffset, outOffset, length; member 557 table[i].outOffset=table[i].inOffset; in udata_swapPackage() 592 table[i].outOffset=offset; in udata_swapPackage() 600 ds->writeUInt32(&outEntries[i].dataOffset, table[i].outOffset); in udata_swapPackage() 606 uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length); in udata_swapPackage() 610 outBytes+table[i].outOffset, pErrorCode); in udata_swapPackage() 627 … uprv_memcpy(outBytes+table[i].outOffset, inBytes+table[i].inOffset, table[i].length); in udata_swapPackage()
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
D | tzfmttst.cpp | 305 int32_t outOffset = outRaw + outDst; in TestTimeZoneRoundTrip() local 306 int32_t diff = outOffset - inOffset; in TestTimeZoneRoundTrip() 314 + ", inOffset=" + inOffset + ", outOffset=" + outOffset); in TestTimeZoneRoundTrip() 909 int32_t outOffset = outtz.getRawOffset(); in TestISOFormat() local 911 if (outOffset != adjustedOffset) { in TestISOFormat() 912 …errln((UnicodeString)"FAIL: Incorrect offset:" + outOffset + "ms for input string: " + ISO_STR[i][… in TestISOFormat()
|
/external/icu/icu4c/source/test/intltest/ |
D | tzfmttst.cpp | 305 int32_t outOffset = outRaw + outDst; in TestTimeZoneRoundTrip() local 306 int32_t diff = outOffset - inOffset; in TestTimeZoneRoundTrip() 314 + ", inOffset=" + inOffset + ", outOffset=" + outOffset); in TestTimeZoneRoundTrip() 909 int32_t outOffset = outtz.getRawOffset(); in TestISOFormat() local 911 if (outOffset != adjustedOffset) { in TestISOFormat() 912 …errln((UnicodeString)"FAIL: Incorrect offset:" + outOffset + "ms for input string: " + ISO_STR[i][… in TestISOFormat()
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | NativeCrypto.java | 267 byte[] out, int outOffset, long publicKeyRef, long privateKeyRef); in ECDH_compute_key() argument 332 public static native int EVP_CipherUpdate(long ctx, byte[] out, int outOffset, byte[] in, in EVP_CipherUpdate() argument 335 public static native int EVP_CipherFinal_ex(long ctx, byte[] out, int outOffset) in EVP_CipherFinal_ex() argument
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 3860 jbyteArray outArray, jint outOffset, jlong pubkeyRef, jlong privkeyRef) in NativeCrypto_ECDH_compute_key() argument 3864 JNI_TRACE("ECDH_compute_key(%p, %d, %p, %p)", outArray, outOffset, pubPkey, privPkey); in NativeCrypto_ECDH_compute_key() 3869 outArray, outOffset, pubPkey, privPkey); in NativeCrypto_ECDH_compute_key() 3873 if ((outOffset < 0) || ((size_t) outOffset >= out.size())) { in NativeCrypto_ECDH_compute_key() 3909 &out[outOffset], in NativeCrypto_ECDH_compute_key() 3910 out.size() - outOffset, in NativeCrypto_ECDH_compute_key() 4409 jint outOffset, jbyteArray inArray, jint inOffset, jint inLength) { in NativeCrypto_EVP_CipherUpdate() argument 4411 JNI_TRACE("EVP_CipherUpdate(%p, %p, %d, %p, %d)", ctx, outArray, outOffset, inArray, inOffset); in NativeCrypto_EVP_CipherUpdate() 4435 if (size_t(outOffset + inLength) > outSize) { in NativeCrypto_EVP_CipherUpdate() 4442 …tx, inBytes.get(), inBytes.size(), inOffset, inLength, outBytes.get(), outBytes.size(), outOffset); in NativeCrypto_EVP_CipherUpdate() [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fTransformFeedbackTests.cpp | 707 int outOffset = output.offset; in compareTransformFeedbackOutput() local 725 const deUint8* outPtr = outBasePtr + outStride*outNdx + outOffset + compNdx*sizeof(deUint32); in compareTransformFeedbackOutput() 766 outOffset += numComponents*sizeof(deUint32); in compareTransformFeedbackOutput()
|
/external/conscrypt/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 3081 int outOffset = 0; in test_ECDH_compute_key_null_key_Failure() local 3083 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, pkey2Ref); in test_ECDH_compute_key_null_key_Failure() 3087 NativeCrypto.ECDH_compute_key(out, outOffset, 0, pkey2Ref); in test_ECDH_compute_key_null_key_Failure() 3093 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, 0); in test_ECDH_compute_key_null_key_Failure()
|