Lines Matching refs:r
113 char *l, *r; in stringcomp() local
116 r = evalstr(t); in stringcomp()
118 p = strcmp(l, r); in stringcomp()
132 long l, r; in arithcomp() local
135 r = evalexp (t, w); in arithcomp()
138 case EQ: return (l == r); in arithcomp()
139 case NE: return (l != r); in arithcomp()
140 case LT: return (l < r); in arithcomp()
141 case GT: return (l > r); in arithcomp()
142 case LE: return (l <= r); in arithcomp()
143 case GE: return (l >= r); in arithcomp()