Lines Matching refs:RED

228 #define RED(p2_result) ((p2_result) & 0xffff)  macro
330 if (RED (c) == '\r') in phase3_getc()
334 if (RED (c1) != '\n') in phase3_getc()
346 else if (RED (c) == '\n') in phase3_getc()
628 if (RED (c0) != '/') in phase4_getc()
631 switch (RED (c)) in phase4_getc()
647 if (!(comment_at_start () && (RED (c) == ' ' || RED (c) == '\t'))) in phase4_getc()
649 switch (RED (c)) in phase4_getc()
685 if (RED (c) == '\n' || c == P2_EOF) in phase4_getc()
688 if (!(comment_at_start () && (RED (c) == ' ' || RED (c) == '\t'))) in phase4_getc()
756 switch (RED (c)) in do_getc_escaped()
777 int n = RED (c) - '0'; in do_getc_escaped()
781 if (RED (c) >= '0' && RED (c) <= '7') in do_getc_escaped()
783 n = (n << 3) + (RED (c) - '0'); in do_getc_escaped()
787 if (RED (c) >= '0' && RED (c) <= '7') in do_getc_escaped()
788 n = (n << 3) + (RED (c) - '0'); in do_getc_escaped()
815 if (c == P2_EOF || RED (c) == delimiter) in accumulate_escaped()
817 if (RED (c) == '\n') in accumulate_escaped()
830 if (RED (c) == '\\') in accumulate_escaped()
865 switch (RED (c)) in phase5_get()
880 switch (RED (c)) in phase5_get()
904 if (!(RED (c) >= '0' && RED (c) <= '9')) in phase5_get()
925 if (RED (c) >= '0' && RED (c) <= '9') in phase5_get()
927 if ((RED (c) >= 'A' && RED (c) <= 'Z') in phase5_get()
928 || (RED (c) >= 'a' && RED (c) <= 'z')) in phase5_get()
930 if (RED (c) == 'X' || RED (c) == 'x') in phase5_get()
932 if ((RED (c) == 'E' || RED (c) == 'e') && !hexadecimal) in phase5_get()
935 if (!(RED (c) == '+' || RED (c) == '-')) in phase5_get()
940 if (RED (c) == '.') in phase5_get()
973 buffer[bufpos++] = RED (c); in phase5_get()
975 if (!((RED (c) >= 'A' && RED (c) <= 'Z') in phase5_get()
976 || (RED (c) >= 'a' && RED (c) <= 'z') in phase5_get()
977 || (RED (c) >= '0' && RED (c) <= '9') in phase5_get()
978 || RED (c) == '_')) in phase5_get()
1021 if (RED (c) == '+') in phase5_get()
1024 else if (RED (c) == '=') in phase5_get()