Searched refs:inputIndex (Results 1 – 9 of 9) sorted by relevance
/external/icu/icu4c/source/layout/ |
D | ThaiShaping.cpp | 145 …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 …]
|
D | ThaiShaping.h | 82 … 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/ |
D | Inflater.cs | 61 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()
|
D | Deflater.cs | 61 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/ |
D | SkMD5.cpp | 39 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()
|
D | SkSHA1.cpp | 37 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/ |
D | uspoof.cpp | 697 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()
|
D | rematch.cpp | 5206 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/ |
D | SpoofChecker.java | 1850 for (int inputIndex = 0; inputIndex < normalizedLen;) { 1851 int c = Character.codePointAt(nfdId, inputIndex); 1852 inputIndex += Character.charCount(c);
|