Home | History | Annotate | Download | only in common

Lines Matching refs:extraBytesToRead

361     unsigned short extraBytesToRead = trailingBytesForUTF8[*source];
362 if (source + extraBytesToRead >= sourceEnd) {
366 if (! isLegalUTF8(source, extraBytesToRead+1)) {
373 switch (extraBytesToRead) {
381 ch -= offsetsFromUTF8[extraBytesToRead];
384 source -= (extraBytesToRead+1); /* Back up source pointer! */
391 source -= (extraBytesToRead+1); /* return to the illegal value itself */
403 source -= (extraBytesToRead+1); /* return to the start */
411 source -= (extraBytesToRead+1); /* Back up source pointer! */
485 unsigned short extraBytesToRead = trailingBytesForUTF8[*source];
486 if (source + extraBytesToRead >= sourceEnd) {
490 if (! isLegalUTF8(source, extraBytesToRead+1)) {
497 switch (extraBytesToRead) {
505 ch -= offsetsFromUTF8[extraBytesToRead];
508 source -= (extraBytesToRead+1); /* Back up the source pointer! */
518 source -= (extraBytesToRead+1); /* return to the illegal value itself */
544 int tmpBytesToRead = extraBytesToRead+1;