Home | History | Annotate | Download | only in common

Lines Matching defs:inBytes

110     int32_t i, inBytes;
115 inBytes = cnv->mode; /* restore # of bytes to consume */
136 inBytes = bytesFromUTF8[ch]; /* lookup current sequence length */
140 while (i < inBytes)
147 break; /* i < inBytes */
157 cnv->mode = inBytes;
164 ch -= offsetsFromUTF8[inBytes];
178 if (i == inBytes && ch <= MAXIMUM_UTF && ch >= utf8_minChar32[i] &&
181 /* Normal valid byte when the loop has not prematurely terminated (i < inBytes) */
240 int32_t i, inBytes;
245 inBytes = cnv->mode; /* restore # of bytes to consume */
265 inBytes = bytesFromUTF8[ch];
269 while (i < inBytes)
276 break; /* i < inBytes */
285 cnv->mode = inBytes;
292 ch -= offsetsFromUTF8[inBytes];
306 if (i == inBytes && ch <= MAXIMUM_UTF && ch >= utf8_minChar32[i] &&
309 /* Normal valid byte when the loop has not prematurely terminated (i < inBytes) */