Lines Matching refs:inByte
79 BytesTrie::branchNext(const uint8_t *pos, int32_t length, int32_t inByte) {
88 if(inByte<*pos++) {
100 if(inByte==*pos++) {
138 if(inByte==*pos++) {
149 BytesTrie::nextImpl(const uint8_t *pos, int32_t inByte) {
153 return branchNext(pos, node, inByte);
157 if(inByte==*pos++) {
181 BytesTrie::next(int32_t inByte) {
186 if(inByte<0) {
187 inByte+=0x100;
192 if(inByte==*pos++) {
203 return nextImpl(pos, inByte);
220 int32_t inByte;
223 if((inByte=*s++)==0) {
234 if(inByte!=*pos) {
250 inByte=*s++;
256 if(inByte!=*pos) {
267 UStringTrieResult result=branchNext(pos, node, inByte);
273 if((inByte=*s++)==0) {
280 inByte=*s++;
292 if(inByte!=*pos) {