Home
last modified time | relevance | path

Searched refs:inLength (Results 1 – 17 of 17) sorted by relevance

/third_party/icu/icu4c/source/test/cintltst/
Dcnormtst.c773 int32_t i, length, inLength, expectLength, hangulPrefixLength, preflightLength; in TestNormCoverage() local
776 inLength=0; in TestNormCoverage()
779 input[inLength++]=HANGUL_KIYEOK; in TestNormCoverage()
780 input[inLength++]=HANGUL_WEO; in TestNormCoverage()
781 input[inLength++]=HANGUL_KIYEOK_SIOS; in TestNormCoverage()
783 input[inLength++]=HANGUL_KIYEOK; in TestNormCoverage()
784 input[inLength++]=HANGUL_WEO; in TestNormCoverage()
785 input[inLength++]=HANGUL_K_KIYEOK_SIOS; in TestNormCoverage()
787 input[inLength++]=HANGUL_KIYEOK; in TestNormCoverage()
788 input[inLength++]=HANGUL_K_WEO; in TestNormCoverage()
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dcollationdatareader.cpp47 CollationDataReader::read(const CollationTailoring *base, const uint8_t *inBytes, int32_t inLength, in read() argument
51 if(inBytes == NULL || (0 <= inLength && inLength < 24)) { in read()
67 if(inLength >= 0) { in read()
68 inLength -= headerLength; in read()
72 if(inBytes == NULL || (0 <= inLength && inLength < 8)) { in read()
78 if(indexesLength < 2 || (0 <= inLength && inLength < indexesLength * 4)) { in read()
100 if(0 <= inLength && inLength < length) { in read()
Dcollationdatareader.h102 static void read(const CollationTailoring *base, const uint8_t *inBytes, int32_t inLength,
/third_party/icu/icu4c/source/i18n/
Dcollationdatareader.cpp47 CollationDataReader::read(const CollationTailoring *base, const uint8_t *inBytes, int32_t inLength, in read() argument
51 if(inBytes == NULL || (0 <= inLength && inLength < 24)) { in read()
67 if(inLength >= 0) { in read()
68 inLength -= headerLength; in read()
72 if(inBytes == NULL || (0 <= inLength && inLength < 8)) { in read()
78 if(indexesLength < 2 || (0 <= inLength && inLength < indexesLength * 4)) { in read()
100 if(0 <= inLength && inLength < length) { in read()
Dcollationdatareader.h102 static void read(const CollationTailoring *base, const uint8_t *inBytes, int32_t inLength,
/third_party/node/deps/icu-small/source/i18n/
Dcollationdatareader.cpp47 CollationDataReader::read(const CollationTailoring *base, const uint8_t *inBytes, int32_t inLength, in read() argument
51 if(inBytes == nullptr || (0 <= inLength && inLength < 24)) { in read()
67 if(inLength >= 0) { in read()
68 inLength -= headerLength; in read()
72 if(inBytes == nullptr || (0 <= inLength && inLength < 8)) { in read()
78 if(indexesLength < 2 || (0 <= inLength && inLength < indexesLength * 4)) { in read()
100 if(0 <= inLength && inLength < length) { in read()
Dcollationdatareader.h102 static void read(const CollationTailoring *base, const uint8_t *inBytes, int32_t inLength,
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationDataReader.java106 int inLength = inBytes.remaining(); in read() local
107 if(inLength < 8) { in read()
111 if(indexesLength < 2 || inLength < indexesLength * 4) { in read()
143 if(inLength < length) { in read()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
DCollationDataReader.java107 int inLength = inBytes.remaining(); in read() local
108 if(inLength < 8) { in read()
112 if(indexesLength < 2 || inLength < indexesLength * 4) { in read()
144 if(inLength < length) { in read()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DUtf8.java788 final int inLength = in.length(); in encodeUtf8Default() local
798 for (char c; inIx < inLength && (c = in.charAt(inIx)) < 0x80; ++inIx) { in encodeUtf8Default()
801 if (inIx == inLength) { in encodeUtf8Default()
808 for (char c; inIx < inLength; ++inIx, ++outIx) { in encodeUtf8Default()
833 if (inIx + 1 == inLength || !isSurrogatePair(c, (low = in.charAt(++inIx)))) { in encodeUtf8Default()
834 throw new UnpairedSurrogateException(inIx, inLength); in encodeUtf8Default()
/third_party/icu/icu4c/source/tools/toolutil/
Dpackage.h164 int32_t inLength, headerLength; variable
Dpackage.cpp389 inLength=0; in Package()
460 inData=readFile(NULL, filename, inLength, type); in readPackage()
461 length=inLength; in readPackage()
/third_party/node/deps/icu-small/source/tools/toolutil/
Dpackage.h164 int32_t inLength, headerLength; variable
Dpackage.cpp389 inLength=0; in Package()
460 inData=readFile(nullptr, filename, inLength, type); in readPackage()
461 length=inLength; in readPackage()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
Dpackage.h164 int32_t inLength, headerLength; variable
Dpackage.cpp389 inLength=0; in Package()
460 inData=readFile(NULL, filename, inLength, type); in readPackage()
461 length=inLength; in readPackage()
/third_party/astc-encoder/Source/
Dtinyexr.h7697 static int rleCompress(int inLength, const char in[], signed char out[]) { in rleCompress() argument
7698 const char *inEnd = in + inLength; in rleCompress()
7748 static int rleUncompress(int inLength, int maxLength, const signed char in[], in rleUncompress() argument
7752 while (inLength > 0) { in rleUncompress()
7755 inLength -= count + 1; in rleUncompress()
7758 if ((0 > (maxLength -= count)) || (inLength < 0)) return 0; in rleUncompress()
7765 inLength -= 2; in rleUncompress()