Lines Matching refs:p2
82 unsigned char *p2; in exp() local
85 p2 = nxtarg(1); in exp()
86 if (p2 != 0) in exp()
88 if (eq(p2, "-o")) in exp()
102 unsigned char *p2; in e1() local
105 p2 = nxtarg(1); in e1()
107 if ((p2 != 0) && eq(p2, "-a")) in e1()
127 unsigned char *p2; in e3() local
138 p2 = nxtarg(1); in e3()
140 if ((p2 == 0) || (!eq(p2, "=") && !eq(p2, "!="))) in e3()
193 p2 = nxtarg(1); in e3()
194 if (p2 == 0) in e3()
196 if (eq(p2, "-a") || eq(p2, "-o")) in e3()
201 if (eq(p2, "=")) in e3()
203 if (eq(p2, "!=")) in e3()
207 if (eq(p2, "-eq")) in e3()
209 if (eq(p2, "-ne")) in e3()
211 if (eq(p2, "-gt")) in e3()
213 if (eq(p2, "-lt")) in e3()
215 if (eq(p2, "-ge")) in e3()
217 if (eq(p2, "-le")) in e3()
220 bfailed((unsigned char *)btest, badop, p2); in e3()