Home
last modified time | relevance | path

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

/third_party/icu/icu4c/source/test/perf/utfperf/
Dutfperf.cpp89 int32_t inputLength; in UtfPerformanceTest() local
90 UPerfTest::getBuffer(inputLength, status); in UtfPerformanceTest()
127 input(testcase.getBuffer()), inputLength(testcase.getBufferLen()), in Command()
148 int32_t inputLength; member in Command
178 pInLimit=input+inputLength; in call()
213 if(inputLength!=outputLength) { in call()
214 …f(stderr, "error: roundtrip failed, inputLength %d!=outputLength %d\n", inputLength, outputLength); in call()
242 pInLimit=input+inputLength; in call()
/third_party/icu/icu4c/source/samples/csdet/
Dcsdet.c33 int32_t inputLength, match, matchCount = 0; in main() local
51 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file); in main()
56 ucsdet_setText(csd, buffer, inputLength, &status); in main()
/third_party/skia/third_party/externals/icu/source/samples/csdet/
Dcsdet.c33 int32_t inputLength, match, matchCount = 0; in main() local
51 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file); in main()
56 ucsdet_setText(csd, buffer, inputLength, &status); in main()
/third_party/node/lib/
Dpunycode.js209 const inputLength = input.length;
234 for (let index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */) {
244 if (index >= inputLength) {
307 const inputLength = input.length;
333 while (handledCPCount < inputLength) {
/third_party/skia/src/core/
DSkMD5.cpp39 bool SkMD5::write(const void* buf, size_t inputLength) { in write() argument
45 if (inputLength >= bufferAvailable) { in write()
54 for (; inputIndex + 63 < inputLength; inputIndex += 64) { in write()
63 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex); in write()
65 this->byteCount += inputLength; in write()
/third_party/skia/tests/
DPDFDeflateWStreamTest.cpp54 size_t inputLength = src->getLength(); in stream_inflate() local
55 if (input == nullptr || inputLength == 0) { in stream_inflate()
61 flateData.avail_in = SkToUInt(inputLength); in stream_inflate()
/third_party/icu/icu4c/source/test/perf/utrie2perf/
Dutrie2perf.cpp57 int32_t inputLength; in UTrie2PerfTest() local
58 UPerfTest::getBuffer(inputLength, status); in UTrie2PerfTest()
59 if(U_SUCCESS(status) && inputLength>0) { in UTrie2PerfTest()
/third_party/node/lib/internal/assert/
Dassertion_error.js110 const inputLength = actualRaw.length + expectedRaw.length;
114 if (inputLength <= kMaxShortLength) {
126 if (inputLength < maxLength) {
/third_party/icu/icu4c/source/test/perf/unisetperf/
Dunisetperf.cpp62 int32_t inputLength; in UnicodeSetPerformanceTest() local
63 UPerfTest::getBuffer(inputLength, status); in UnicodeSetPerformanceTest()
64 if(U_SUCCESS(status) && inputLength>0) { in UnicodeSetPerformanceTest()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DCjkBreakEngine.java93 int inputLength = endPos - startPos; in divideUpDictionaryRange() local
94 int[] charPositions = new int[inputLength + 1]; in divideUpDictionaryRange()
/third_party/icu/docs/userguide/conversion/
Ddetection.md206 int32_t inputLength = ... // length of the input text
208 ucsdet_setText(csd, buffer, inputLength, &status);
256 int32_t inputLength = ... // length of the input text
258 ucsdet_setText(csd, buffer, inputLength, &status);
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/breakiter/
DCjkBreakEngine.java117 int inputLength = endPos - startPos; in divideUpDictionaryRange() local
118 int[] charPositions = new int[inputLength + 1]; in divideUpDictionaryRange()
/third_party/skia/src/gpu/gradients/
DGrGradientShader.cpp335 int build_intervals(int inputLength, in build_intervals() argument
348 for (int i = 0; i < inputLength - 1; i++) { in build_intervals()
/third_party/icu/icu4c/source/test/intltest/
Dstrcase.cpp1672 int32_t inputLength = u_strlen(input); in TestCaseMapEditsIteratorDocs() local
1752 for (int32_t srcIndex=0; srcIndex<inputLength; srcIndex++) { in TestCaseMapEditsIteratorDocs()
1784 for (int32_t destIndex=0; destIndex<inputLength; destIndex++) { in TestCaseMapEditsIteratorDocs()
Dregextst.cpp4284 int32_t inputLength; in PerlTestsUTF8() local
4477inputLength = matchString.extract(inputChars, inputCapacity, UTF8Converter.getAlias(), status); in PerlTestsUTF8()
4481 inputCapacity = inputLength + 1; in PerlTestsUTF8()
4485 utext_openUTF8(&inputText, inputChars, inputLength, &status); in PerlTestsUTF8()