Lines Matching refs:l
54 long l = 0; in evalexp() local
68 l = (long)(*(u8 *)buf); in evalexp()
71 l = (long)(*(u16 *)buf); in evalexp()
74 l = (long)(*(u32 *)buf); in evalexp()
78 return l; in evalexp()
80 l = simple_strtoul(s, NULL, 16); in evalexp()
84 return (w >= sizeof(long)) ? l : (l & ((1UL << (w * 8)) - 1)); in evalexp()
113 char *l, *r; in stringcomp() local
115 l = evalstr(s); in stringcomp()
118 p = strcmp(l, r); in stringcomp()
132 long l, r; in arithcomp() local
134 l = evalexp (s, 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()