Searched refs:extraBytesToRead (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.3-release/contrib/llvm/lib/Support/
H A DConvertUTF.c429 unsigned short extraBytesToRead = trailingBytesForUTF8[*source]; local
430 if (extraBytesToRead >= sourceEnd - source) {
434 if (!isLegalUTF8(source, extraBytesToRead+1)) {
441 switch (extraBytesToRead) {
449 ch -= offsetsFromUTF8[extraBytesToRead];
452 source -= (extraBytesToRead+1); /* Back up source pointer! */
459 source -= (extraBytesToRead+1); /* return to the illegal value itself */
471 source -= (extraBytesToRead+1); /* return to the start */
479 source -= (extraBytesToRead+1); /* Back up source pointer! */
502 unsigned short extraBytesToRead local
[all...]

Completed in 97 milliseconds