Home
last modified time | relevance | path

Searched refs:inputIndex (Results 1 – 9 of 9) sorted by relevance

/external/icu/icu4c/source/layout/
DThaiShaping.cpp145 …doTransition (StateTransition transition, LEUnicode currChar, le_int32 inputIndex, le_uint8 glyphS… in doTransition() argument
152 glyphStorage.setCharIndex(outputIndex, inputIndex, success); in doTransition()
157 glyphStorage.setCharIndex(outputIndex, inputIndex, success); in doTransition()
162 glyphStorage.setCharIndex(outputIndex, inputIndex, success); in doTransition()
167 glyphStorage.setCharIndex(outputIndex, inputIndex, success); in doTransition()
172 glyphStorage.setCharIndex(outputIndex, inputIndex, success); in doTransition()
177 glyphStorage.setCharIndex(outputIndex, inputIndex, success); in doTransition()
189 glyphStorage.setCharIndex(outputIndex, inputIndex, success); in doTransition()
194 glyphStorage.setCharIndex(outputIndex, inputIndex, success); in doTransition()
200 glyphStorage.setCharIndex(outputIndex, inputIndex, success); in doTransition()
[all …]
DThaiShaping.h82 … doTransition(StateTransition transition, LEUnicode currChar, le_int32 inputIndex, le_uint8 glyphS…
85 …static le_uint8 getNextState(LEUnicode ch, le_uint8 state, le_int32 inputIndex, le_uint8 glyphSet,…
/external/zlib/src/contrib/dotzlib/DotZLib/
DInflater.cs61 int inputIndex = offset; in Add()
64 while (err >= 0 && inputIndex < total) in Add()
66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize)); in Add()
75 inputIndex += (int)_ztream.total_in; in Add()
DDeflater.cs61 int inputIndex = offset; in Add()
64 while (err >= 0 && inputIndex < total) in Add()
66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize)); in Add()
76 inputIndex += (int)_ztream.total_in; in Add()
/external/skia/src/utils/
DSkMD5.cpp39 unsigned int inputIndex; in update() local
44 inputIndex = bufferAvailable; in update()
46 inputIndex = 0; in update()
49 for (; inputIndex + 63 < inputLength; inputIndex += 64) { in update()
50 transform(this->state, &input[inputIndex]); in update()
55 inputIndex = 0; in update()
58 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex); in update()
DSkSHA1.cpp37 unsigned int inputIndex; in update() local
42 inputIndex = bufferAvailable; in update()
44 inputIndex = 0; in update()
47 for (; inputIndex + 63 < inputLength; inputIndex += 64) { in update()
48 transform(this->state, &input[inputIndex]); in update()
53 inputIndex = 0; in update()
56 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex); in update()
/external/icu/icu4c/source/i18n/
Duspoof.cpp697 int32_t inputIndex = 0; in uspoof_getSkeletonUnicodeString() local
700 for (inputIndex=0; inputIndex < normalizedLen; ) { in uspoof_getSkeletonUnicodeString()
701 UChar32 c = nfdId.char32At(inputIndex); in uspoof_getSkeletonUnicodeString()
702 inputIndex += U16_LENGTH(c); in uspoof_getSkeletonUnicodeString()
Drematch.cpp5206 int64_t inputIndex = fp->fInputIdx; in MatchChunkAt() local
5213 … for (int64_t groupIndex = groupStartIdx; groupIndex < groupEndIdx; ++groupIndex,++inputIndex) { in MatchChunkAt()
5214 if (inputIndex >= fActiveLimit) { in MatchChunkAt()
5219 if (inputBuf[groupIndex] != inputBuf[inputIndex]) { in MatchChunkAt()
5225 fp->fInputIdx = inputIndex; in MatchChunkAt()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java1850 for (int inputIndex = 0; inputIndex < normalizedLen;) {
1851 int c = Character.codePointAt(nfdId, inputIndex);
1852 inputIndex += Character.charCount(c);