HomeSort by relevance Sort by last modified time
    Searched refs:extraBytesToRead (Results 1 - 3 of 3) sorted by null

  /external/antlr/antlr-3.4/runtime/C/src/
antlr3convertutf.c 337 unsigned short extraBytesToRead = trailingBytesForUTF8[*source];
338 if (source + extraBytesToRead >= sourceEnd) {
342 if (! isLegalUTF8(source, extraBytesToRead+1)) {
349 switch (extraBytesToRead) {
357 ch -= offsetsFromUTF8[extraBytesToRead];
360 source -= (extraBytesToRead+1); /* Back up source pointer! */
367 source -= (extraBytesToRead+1); /* return to the illegal value itself */
379 source -= (extraBytesToRead+1); /* return to the start */
387 source -= (extraBytesToRead+1); /* Back up source pointer! */
463 unsigned short extraBytesToRead = trailingBytesForUTF8[*source]
    [all...]
antlr3inputstream.c     [all...]
  /external/llvm/lib/Support/
ConvertUTF.c 429 unsigned short extraBytesToRead = trailingBytesForUTF8[*source];
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 = trailingBytesForUTF8[*source]
    [all...]

Completed in 238 milliseconds