OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:extraBytesToRead
(Results
1 - 4
of
4
) 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/google-breakpad/src/common/
convert_UTF.c
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]
[
all
...]
/external/llvm/lib/Support/
ConvertUTF.c
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]
[
all
...]
Completed in 306 milliseconds