Home
last modified time | relevance | path

Searched refs:outputLength (Results 1 – 15 of 15) sorted by relevance

/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/gdiff/
DGdiffTest.java67 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/
Dutfperf.cpp42 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/
Dnormconf.cpp588 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()
Dnormconf.h106 UnicodeString output[], int32_t outputLength);
Dconvtest.cpp704 int32_t outputLength; in TestDefaultIgnorableCallback() local
710 outputLength= 0; in TestDefaultIgnorableCallback()
714outputLength = 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()
732outputLength = 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/
DState.java71 int outputLength; field in State
DBrotliInputStream.java143 state.outputLength = destLen; in read()
DDecode.java684 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/
DBrotliInputStream.cs176 state.outputLength = destLen; in Read()
DState.cs104 internal int outputLength; field in Org.Brotli.Dec.State
DDecode.cs645 …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/
Ddecode.js717 …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;
Ddecode.min.js1outputLength-e.outputUsed,e.ringBufferBytesReady-e.ringBufferBytesWritten);if(t!=0){e.output.set(e…
/external/icu/icu4c/source/test/cintltst/
Dccapitst.c2526 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/
Dnative_crypto.cc2312 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()