Lines Matching refs:RED
255 #define RED(p2_result) ((p2_result) & 0xffff) macro
357 if (RED (c) == '\r') in phase3_getc()
361 if (RED (c1) != '\n') in phase3_getc()
373 else if (RED (c) == '\n') in phase3_getc()
483 if (RED (c0) != '/') in phase4_getc()
486 switch (RED (c)) in phase4_getc()
502 if (!(comment_at_start () && (RED (c) == ' ' || RED (c) == '\t'))) in phase4_getc()
504 switch (RED (c)) in phase4_getc()
540 if (RED (c) == '\n' || c == P2_EOF) in phase4_getc()
543 if (!(comment_at_start () && (RED (c) == ' ' || RED (c) == '\t'))) in phase4_getc()
615 switch (RED (c)) in do_getc_escaped()
636 int n = RED (c) - '0'; in do_getc_escaped()
640 if (RED (c) >= '0' && RED (c) <= '7') in do_getc_escaped()
642 n = (n << 3) + (RED (c) - '0'); in do_getc_escaped()
646 if (RED (c) >= '0' && RED (c) <= '7') in do_getc_escaped()
647 n = (n << 3) + (RED (c) - '0'); in do_getc_escaped()
674 if (c == P2_EOF || RED (c) == delimiter) in accumulate_escaped()
676 if (RED (c) == '\n') in accumulate_escaped()
689 if (RED (c) == '\\') in accumulate_escaped()
1058 switch (RED (c)) in phase5_get()
1073 switch (RED (c)) in phase5_get()
1097 if (!(RED (c) >= '0' && RED (c) <= '9')) in phase5_get()
1118 if (RED (c) >= '0' && RED (c) <= '9') in phase5_get()
1120 if ((RED (c) >= 'A' && RED (c) <= 'Z') in phase5_get()
1121 || (RED (c) >= 'a' && RED (c) <= 'z')) in phase5_get()
1123 if (RED (c) == 'X' || RED (c) == 'x') in phase5_get()
1125 if ((RED (c) == 'E' || RED (c) == 'e') && !hexadecimal) in phase5_get()
1128 if (!(RED (c) == '+' || RED (c) == '-')) in phase5_get()
1133 if (RED (c) == '.') in phase5_get()
1166 buffer[bufpos++] = RED (c); in phase5_get()
1168 if (!((RED (c) >= 'A' && RED (c) <= 'Z') in phase5_get()
1169 || (RED (c) >= 'a' && RED (c) <= 'z') in phase5_get()
1170 || (RED (c) >= '0' && RED (c) <= '9') in phase5_get()
1171 || RED (c) == '_')) in phase5_get()
1213 if (RED (ic) == ' ' || RED (ic) == '\t' || RED (ic) == '\f') in phase5_get()
1215 else if (RED (ic) == '\n') in phase5_get()
1235 if (RED (ic) == '"') in phase5_get()
1256 if (RED (ic) == '\\') in phase5_get()
1303 if (RED (c) == '+') in phase5_get()
1306 else if (RED (c) == '=') in phase5_get()