Lines Matching refs:sIndex
814 const uint8_t *s8, int32_t &sIndex, int32_t sLength) { in lookupUTF8() argument
817 int32_t i2 = sIndex + 1; in lookupUTF8()
819 uint8_t t1 = s8[sIndex]; in lookupUTF8()
821 sIndex += 2; in lookupUTF8()
837 const uint8_t *s8, int32_t &sIndex) { in lookupUTF8Unsafe() argument
842 return table[((c - 0xc2) << 6) + s8[sIndex++]]; // 0080..017F in lookupUTF8Unsafe()
844 uint8_t t2 = s8[sIndex + 1]; in lookupUTF8Unsafe()
845 sIndex += 2; in lookupUTF8Unsafe()
857 … const UChar *s16, const uint8_t *s8, int32_t &sIndex, int32_t &sLength) { in nextPair() argument
865 sLength = sIndex - 1; in nextPair()
871 if(sIndex != sLength) { in nextPair()
874 int32_t nextIndex = sIndex; in nextPair()
914 sLength = sIndex; in nextPair()
929 sIndex = nextIndex; in nextPair()