/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/gdiff/ |
D | GdiffTest.java | 67 long outputLength = Gdiff.patch(readInputFile, patchStream, outputStream, newBytes.length); in testExample() local 68 Assert.assertEquals(newBytes.length, outputLength); in testExample() 116 long outputLength = Gdiff.patch(readInputFile, patchStream, outputStream, newBytes.length); in testOpcodes() local 117 Assert.assertEquals(newBytes.length, outputLength); in testOpcodes() 164 long outputLength = Gdiff.patch(readInputFile, patchStream, outputStream, data.length); in testInlineDataCommands() local 165 Assert.assertEquals(spanLength, outputLength); in testInlineDataCommands()
|
/external/icu/icu4c/source/test/perf/utfperf/ |
D | utfperf.cpp | 42 static int32_t utf8Length, encodedLength, outputLength, countInputCodePoints; variable 185 encodedLength=outputLength=0; in call() 212 outputLength=pOut-output; in call() 213 if(inputLength!=outputLength) { in call() 214 …f(stderr, "error: roundtrip failed, inputLength %d!=outputLength %d\n", inputLength, outputLength); in call()
|
/external/icu/icu4c/source/test/intltest/ |
D | normconf.cpp | 588 UnicodeString output[], int32_t outputLength) { in hexsplit() argument 593 for (i=0; i<outputLength; ++i) { in hexsplit() 626 if((i + 1) == outputLength) { in hexsplit() 629 …ln(UnicodeString("Missing field(s) in ", "") + s + " only " + (i + 1) + " out of " + outputLength); in hexsplit()
|
D | normconf.h | 106 UnicodeString output[], int32_t outputLength);
|
D | convtest.cpp | 704 int32_t outputLength; in TestDefaultIgnorableCallback() local 710 outputLength= 0; in TestDefaultIgnorableCallback() 714 …outputLength = ucnv_fromUChars(cnv, output, 10, UnicodeString::fromUTF32(input, 1).getTerminatedBu… in TestDefaultIgnorableCallback() 715 if (U_FAILURE(status) || outputLength != 0) { in TestDefaultIgnorableCallback() 724 outputLength= 0; in TestDefaultIgnorableCallback() 732 …outputLength = ucnv_fromUChars(cnv, output, 10, UnicodeString::fromUTF32(input, 1).getTerminatedBu… in TestDefaultIgnorableCallback() 733 if (U_FAILURE(status) || outputLength <= 0) { in TestDefaultIgnorableCallback()
|
/external/brotli/java/org/brotli/dec/ |
D | State.java | 71 int outputLength; field in State
|
D | BrotliInputStream.java | 143 state.outputLength = destLen; in read()
|
D | Decode.java | 684 int toWrite = Math.min(s.outputLength - s.outputUsed, in writeRingBuffer() 693 if (s.outputUsed < s.outputLength) { in writeRingBuffer() 715 result = Math.min(result, s.ringBufferBytesWritten + s.outputLength - s.outputUsed); in calculateFence()
|
/external/brotli/csharp/org/brotli/dec/ |
D | BrotliInputStream.cs | 176 state.outputLength = destLen; in Read()
|
D | State.cs | 104 internal int outputLength; field in Org.Brotli.Dec.State
|
D | Decode.cs | 645 …int toWrite = System.Math.Min(state.outputLength - state.outputUsed, state.bytesToWrite - state.by… in WriteRingBuffer() 652 return state.outputUsed < state.outputLength; in WriteRingBuffer()
|
/external/brotli/js/ |
D | decode.js | 717 …var /** !number */ toWrite = min(s.outputLength - s.outputUsed, s.ringBufferBytesReady - s.ringBuf… 723 if (s.outputUsed < s.outputLength) { 752 result = min(result, s.ringBufferBytesWritten + s.outputLength - s.outputUsed); 1589 this.outputLength = 0; 1705 s.outputLength = 16384;
|
D | decode.min.js | 1 …outputLength-e.outputUsed,e.ringBufferBytesReady-e.ringBufferBytesWritten);if(t!=0){e.output.set(e…
|
/external/icu/icu4c/source/test/cintltst/ |
D | ccapitst.c | 2526 int32_t outputLength; in testFromTruncatedUTF8() local 2568 outputLength=(int32_t)(target-output); in testFromTruncatedUTF8() 2569 (void)outputLength; /* Suppress set but not used warning. */ in testFromTruncatedUTF8()
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 2312 int outputLength = ECDH_compute_key(&out[stdOutOffset], out.size() - stdOutOffset, pubkeyPoint, in NativeCrypto_ECDH_compute_key() local 2314 if (outputLength == -1) { in NativeCrypto_ECDH_compute_key() 2321 JNI_TRACE("ECDH_compute_key(%p) => outputLength=%d", pubPkey, outputLength); in NativeCrypto_ECDH_compute_key() 2322 return outputLength; in NativeCrypto_ECDH_compute_key()
|