Lines Matching refs:sIndex
815 const uint8_t *s8, int32_t &sIndex, int32_t sLength) { in lookupUTF8() argument
818 int32_t i2 = sIndex + 1; in lookupUTF8()
820 uint8_t t1 = s8[sIndex]; in lookupUTF8()
822 sIndex += 2; in lookupUTF8()
838 const uint8_t *s8, int32_t &sIndex) { in lookupUTF8Unsafe() argument
843 return table[((c - 0xc2) << 6) + s8[sIndex++]]; // 0080..017F in lookupUTF8Unsafe()
845 uint8_t t2 = s8[sIndex + 1]; in lookupUTF8Unsafe()
846 sIndex += 2; in lookupUTF8Unsafe()
858 … const UChar *s16, const uint8_t *s8, int32_t &sIndex, int32_t &sLength) { in nextPair() argument
866 sLength = sIndex - 1; in nextPair()
872 if(sIndex != sLength) { in nextPair()
875 int32_t nextIndex = sIndex; in nextPair()
915 sLength = sIndex; in nextPair()
930 sIndex = nextIndex; in nextPair()