Home
last modified time | relevance | path

Searched refs:outputLength (Results 1 – 9 of 9) 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/icu/icu4c/source/test/intltest/
Dnormconf.cpp532 UnicodeString output[], int32_t outputLength) { in hexsplit() argument
537 for (i=0; i<outputLength; ++i) { in hexsplit()
570 if((i + 1) == outputLength) { in hexsplit()
573 …ln(UnicodeString("Missing field(s) in ", "") + s + " only " + (i + 1) + " out of " + outputLength); in hexsplit()
Dnormconf.h99 UnicodeString output[], int32_t outputLength);
Dconvtest.cpp713 int32_t outputLength; in TestDefaultIgnorableCallback() local
719 outputLength= 0; in TestDefaultIgnorableCallback()
723outputLength = ucnv_fromUChars(cnv, output, 10, UnicodeString::fromUTF32(input, 1).getTerminatedBu… in TestDefaultIgnorableCallback()
724 if (U_FAILURE(status) || outputLength != 0) { in TestDefaultIgnorableCallback()
733 outputLength= 0; in TestDefaultIgnorableCallback()
741outputLength = ucnv_fromUChars(cnv, output, 10, UnicodeString::fromUTF32(input, 1).getTerminatedBu… in TestDefaultIgnorableCallback()
742 if (U_FAILURE(status) || outputLength <= 0) { in TestDefaultIgnorableCallback()
/external/brotli/java/org/brotli/dec/
DBrotliInputStream.java159 state.outputLength = destLen; in read()
DState.java68 int outputLength; field in State
DDecode.java576 int toWrite = Math.min(state.outputLength - state.outputUsed, in writeRingBuffer()
585 return state.outputUsed < state.outputLength; in writeRingBuffer()
/external/icu/icu4c/source/test/cintltst/
Dccapitst.c2505 int32_t outputLength; in testFromTruncatedUTF8() local
2547 outputLength=(int32_t)(target-output); in testFromTruncatedUTF8()
2548 (void)outputLength; /* Suppress set but not used warning. */ in testFromTruncatedUTF8()
/external/conscrypt/common/src/jni/main/cpp/
DNativeCrypto.cpp2078 int outputLength = ECDH_compute_key(&out[stdOutOffset], out.size() - stdOutOffset, pubkeyPoint, in NativeCrypto_ECDH_compute_key() local
2082 if (outputLength == -1) { in NativeCrypto_ECDH_compute_key()
2088 JNI_TRACE("ECDH_compute_key(%p) => outputLength=%d", pubPkey, outputLength); in NativeCrypto_ECDH_compute_key()
2089 return outputLength; in NativeCrypto_ECDH_compute_key()