Lines Matching refs:num
145 long long num, t; in strsuftollx() local
159 num = strtoll(val, &expr, 0); in strsuftollx()
161 num = strtoll(val, &expr, 10); in strsuftollx()
170 t = num; in strsuftollx()
171 num *= 512; /* 1 block */ in strsuftollx()
172 if (t > num) in strsuftollx()
177 t = num; in strsuftollx()
178 num *= 1024; /* 1 kibibyte */ in strsuftollx()
179 if (t > num) in strsuftollx()
184 t = num; in strsuftollx()
185 num *= 1048576; /* 1 mebibyte */ in strsuftollx()
186 if (t > num) in strsuftollx()
191 t = num; in strsuftollx()
192 num *= 1073741824; /* 1 gibibyte */ in strsuftollx()
193 if (t > num) in strsuftollx()
198 t = num; in strsuftollx()
199 num *= 1099511627776LL; /* 1 tebibyte */ in strsuftollx()
200 if (t > num) in strsuftollx()
205 t = num; in strsuftollx()
206 num *= sizeof(int); /* 1 word */ in strsuftollx()
207 if (t > num) in strsuftollx()
218 t = num; in strsuftollx()
219 num *= strsuftollx(desc, expr + 1, min, max, ebuf, ebuflen); in strsuftollx()
222 if (t > num) { in strsuftollx()
234 if (num < min) { in strsuftollx()
237 desc, (long long)num, (long long)min); in strsuftollx()
240 if (num > max) { in strsuftollx()
244 desc, (long long)num, (long long)max); in strsuftollx()
248 return (num); in strsuftollx()