Home
last modified time | relevance | path

Searched refs:inputLength (Results 1 – 10 of 10) sorted by relevance

/external/icu/icu4c/source/test/perf/utfperf/
Dutfperf.cpp85 int32_t inputLength; in UtfPerformanceTest() local
86 UPerfTest::getBuffer(inputLength, status); in UtfPerformanceTest()
123 input(testcase.getBuffer()), inputLength(testcase.getBufferLen()), in Command()
144 int32_t inputLength; member in Command
174 pInLimit=input+inputLength; in call()
209 if(inputLength!=outputLength) { in call()
210 …f(stderr, "error: roundtrip failed, inputLength %d!=outputLength %d\n", inputLength, outputLength); in call()
238 pInLimit=input+inputLength; in call()
/external/icu/icu4c/source/samples/csdet/
Dcsdet.c29 int32_t inputLength, match, matchCount = 0; in main() local
47 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file); in main()
52 ucsdet_setText(csd, buffer, inputLength, &status); in main()
/external/skia/tests/
DPDFDeflateWStreamTest.cpp53 size_t inputLength = src->getLength(); in stream_inflate() local
54 if (input == nullptr || inputLength == 0) { in stream_inflate()
60 flateData.avail_in = SkToUInt(inputLength); in stream_inflate()
/external/skia/src/utils/
DSkMD5.cpp35 void SkMD5::update(const uint8_t* input, size_t inputLength) { in update() argument
40 if (inputLength >= bufferAvailable) { in update()
49 for (; inputIndex + 63 < inputLength; inputIndex += 64) { in update()
58 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex); in update()
60 this->byteCount += inputLength; in update()
/external/icu/icu4c/source/test/perf/utrie2perf/
Dutrie2perf.cpp53 int32_t inputLength; in UTrie2PerfTest() local
54 UPerfTest::getBuffer(inputLength, status); in UTrie2PerfTest()
55 if(U_SUCCESS(status) && inputLength>0) { in UTrie2PerfTest()
/external/icu/icu4c/source/test/perf/unisetperf/
Dunisetperf.cpp58 int32_t inputLength; in UnicodeSetPerformanceTest() local
59 UPerfTest::getBuffer(inputLength, status); in UnicodeSetPerformanceTest()
60 if(U_SUCCESS(status) && inputLength>0) { in UnicodeSetPerformanceTest()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DCjkBreakEngine.java90 int inputLength = endPos - startPos; in divideUpDictionaryRange() local
91 int[] charPositions = new int[inputLength + 1]; in divideUpDictionaryRange()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCjkBreakEngine.java89 int inputLength = endPos - startPos; in divideUpDictionaryRange() local
90 int[] charPositions = new int[inputLength + 1]; in divideUpDictionaryRange()
/external/icu/icu4c/source/i18n/
Ddecimfmt.cpp1909 int32_t inputLength = input.length(); in compareSimpleAffix() local
1945 while (pos < inputLength) { in compareSimpleAffix()
1984 while (pos < inputLength) { in compareSimpleAffix()
2023 if (i >= affixLength || pos >= inputLength) { in compareSimpleAffix()
/external/icu/icu4c/source/test/intltest/
Dregextst.cpp4401 int32_t inputLength; in PerlTestsUTF8() local
4594inputLength = matchString.extract(inputChars, inputCapacity, UTF8Converter.getAlias(), status); in PerlTestsUTF8()
4598 inputCapacity = inputLength + 1; in PerlTestsUTF8()
4602 utext_openUTF8(&inputText, inputChars, inputLength, &status); in PerlTestsUTF8()