Lines Matching refs:num
140 long long num, t; in __strsuftollx() local
156 num = strtoll(val, &expr, 10); in __strsuftollx()
165 t = num; in __strsuftollx()
166 num *= 512; /* 1 block */ in __strsuftollx()
167 if (t > num) in __strsuftollx()
172 t = num; in __strsuftollx()
173 num *= 1024; /* 1 kibibyte */ in __strsuftollx()
174 if (t > num) in __strsuftollx()
179 t = num; in __strsuftollx()
180 num *= 1048576; /* 1 mebibyte */ in __strsuftollx()
181 if (t > num) in __strsuftollx()
186 t = num; in __strsuftollx()
187 num *= 1073741824; /* 1 gibibyte */ in __strsuftollx()
188 if (t > num) in __strsuftollx()
193 t = num; in __strsuftollx()
194 num *= 1099511627776LL; /* 1 tebibyte */ in __strsuftollx()
195 if (t > num) in __strsuftollx()
200 t = num; in __strsuftollx()
201 num *= sizeof(int); /* 1 word */ in __strsuftollx()
202 if (t > num) in __strsuftollx()
213 t = num; in __strsuftollx()
214 num *= __strsuftollx(desc, expr + 1, min, max, ebuf, ebuflen, in __strsuftollx()
218 if (t > num) { in __strsuftollx()
230 if (num < min) { in __strsuftollx()
233 desc, (long long)num, (long long)min); in __strsuftollx()
236 if (num > max) { in __strsuftollx()
239 desc, (long long)num, (long long)max); in __strsuftollx()
243 return num; in __strsuftollx()