Home | History | Annotate | Download | only in Support

Lines Matching refs:extraBytesToRead

523         unsigned short extraBytesToRead = trailingBytesForUTF8[*source];
524 if (extraBytesToRead >= sourceEnd - source) {
528 if (!isLegalUTF8(source, extraBytesToRead+1)) {
535 switch (extraBytesToRead) {
543 ch -= offsetsFromUTF8[extraBytesToRead];
546 source -= (extraBytesToRead+1); /* Back up source pointer! */
553 source -= (extraBytesToRead+1); /* return to the illegal value itself */
565 source -= (extraBytesToRead+1); /* return to the start */
573 source -= (extraBytesToRead+1); /* Back up source pointer! */
597 unsigned short extraBytesToRead = trailingBytesForUTF8[*source];
598 if (extraBytesToRead >= sourceEnd - source) {
620 if (!isLegalUTF8(source, extraBytesToRead+1)) {
639 switch (extraBytesToRead) {
647 ch -= offsetsFromUTF8[extraBytesToRead];
656 source -= (extraBytesToRead+1); /* return to the illegal value itself */
698 int tmpBytesToRead = extraBytesToRead+1;