Home
last modified time | relevance | path

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

/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/brotli/java/org/brotli/dec/
DState.java71 int outputLength; field in State
DBrotliInputStream.java151 state.outputLength = destLen; in read()
DDecode.java920 int toWrite = Math.min(s.outputLength - s.outputUsed, in writeRingBuffer()
929 if (s.outputUsed < s.outputLength) { in writeRingBuffer()
952 result = Math.min(result, s.ringBufferBytesWritten + s.outputLength - s.outputUsed); in calculateFence()
/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.cpp705 int32_t outputLength; in TestDefaultIgnorableCallback() local
711 outputLength= 0; in TestDefaultIgnorableCallback()
715outputLength = ucnv_fromUChars(cnv.getAlias(), output, 10, UnicodeString::fromUTF32(input, 1).getT… in TestDefaultIgnorableCallback()
716 if (U_FAILURE(status) || outputLength != 0) { in TestDefaultIgnorableCallback()
725 outputLength= 0; in TestDefaultIgnorableCallback()
733outputLength = ucnv_fromUChars(cnv.getAlias(), output, 10, UnicodeString::fromUTF32(input, 1).getT… in TestDefaultIgnorableCallback()
734 if (U_FAILURE(status) || outputLength <= 0) { in TestDefaultIgnorableCallback()
/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.js889 …var /** number */ toWrite = min(s.outputLength - s.outputUsed, s.ringBufferBytesReady - s.ringBuff…
895 if (s.outputUsed < s.outputLength) {
925 result = min(result, s.ringBufferBytesWritten + s.outputLength - s.outputUsed);
1882 this.outputLength = 0;
2000 s.outputLength = 16384;
/external/icu/icu4c/source/test/cintltst/
Dccapitst.c2544 int32_t outputLength; in testFromTruncatedUTF8() local
2586 outputLength=(int32_t)(target-output); in testFromTruncatedUTF8()
2587 (void)outputLength; /* Suppress set but not used warning. */ in testFromTruncatedUTF8()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc2318 int outputLength = ECDH_compute_key(&out[stdOutOffset], out.size() - stdOutOffset, pubkeyPoint, in NativeCrypto_ECDH_compute_key() local
2320 if (outputLength == -1) { in NativeCrypto_ECDH_compute_key()
2327 JNI_TRACE("ECDH_compute_key(%p) => outputLength=%d", pubPkey, outputLength); in NativeCrypto_ECDH_compute_key()
2328 return outputLength; in NativeCrypto_ECDH_compute_key()