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

/freebsd-10.3-release/gnu/usr.bin/grep/
H A Ddfa.h194 #define MATCHES_NEWLINE_CONTEXT(constraint, prevn, currn) \
195 ((constraint) & 1 << (((prevn) ? 2 : 0) + ((currn) ? 1 : 0) + 4))
198 #define SUCCEEDS_IN_CONTEXT(constraint, prevn, currn, prevl, currl) \
199 (MATCHES_NEWLINE_CONTEXT(constraint, prevn, currn) \
380 #define ACCEPTS_IN_CONTEXT(prevn, currn, prevl, currl, state, dfa) \
382 prevn, currn, prevl, currl)
/freebsd-10.3-release/contrib/gdb/gdb/
H A Dm2-exp.y678 LONGEST prevn = 0;
730 if(!unsigned_p && number_sign == 1 && (prevn >= n))
736 if((unsigned_p && (unsigned)prevn >= (unsigned)n) ||
737 ((!unsigned_p && number_sign==-1) && -prevn <= -n))
740 prevn=n;
H A Df-exp.y651 LONGEST prevn = 0;
731 if ((prevn >= n) && n != 0)
736 if ((unsigned_p && (unsigned)prevn >= (unsigned)n))
739 prevn = n;
H A Dm2-exp.c2171 LONGEST prevn = 0;
2223 if(!unsigned_p && number_sign == 1 && (prevn >= n))
2229 if((unsigned_p && (unsigned)prevn >= (unsigned)n) ||
2230 ((!unsigned_p && number_sign==-1) && -prevn <= -n))
2233 prevn=n;
2167 LONGEST prevn = 0; local
H A Dc-exp.y1056 LONGEST prevn = 0;
1187 a second check for zero). FIXME: Can't we just make n and prevn
1189 if (c != 'l' && c != 'u' && (prevn >= n) && n != 0)
1197 if ((unsigned_p && (ULONGEST) prevn >= (ULONGEST) n))
1200 prevn = n;
H A Dobjc-exp.y1005 LONGEST prevn = 0;
1133 and prevn unsigned and avoid this? */
1134 if (c != 'l' && c != 'u' && (prevn >= n) && n != 0)
1142 if ((unsigned_p && (unsigned LONGEST) prevn >= (unsigned LONGEST) n))
1145 prevn = n;
H A Dp-exp.y776 LONGEST prevn = 0;
907 a second check for zero). FIXME: Can't we just make n and prevn
909 if (c != 'l' && c != 'u' && (prevn >= n) && n != 0)
917 if ((unsigned_p && (ULONGEST) prevn >= (ULONGEST) n))
920 prevn = n;
H A Df-exp.c2028 LONGEST prevn = 0;
2108 if ((prevn >= n) && n != 0)
2113 if ((unsigned_p && (unsigned)prevn >= (unsigned)n))
2116 prevn = n;
2024 LONGEST prevn = 0; local
H A Dc-exp.c2689 LONGEST prevn = 0;
2820 a second check for zero). FIXME: Can't we just make n and prevn
2822 if (c != 'l' && c != 'u' && (prevn >= n) && n != 0)
2830 if ((unsigned_p && (ULONGEST) prevn >= (ULONGEST) n))
2833 prevn = n;
2685 LONGEST prevn = 0; local
H A Dobjc-exp.c2650 LONGEST prevn = 0;
2778 and prevn unsigned and avoid this? */
2779 if (c != 'l' && c != 'u' && (prevn >= n) && n != 0)
2787 if ((unsigned_p && (unsigned LONGEST) prevn >= (unsigned LONGEST) n))
2790 prevn = n;
2646 LONGEST prevn = 0; local
H A Dp-exp.c2101 LONGEST prevn = 0;
2232 a second check for zero). FIXME: Can't we just make n and prevn
2234 if (c != 'l' && c != 'u' && (prevn >= n) && n != 0)
2242 if ((unsigned_p && (ULONGEST) prevn >= (ULONGEST) n))
2245 prevn = n;
2097 LONGEST prevn = 0; local

Completed in 112 milliseconds