Lines Matching refs:num
111 long long num, t; in __strsuftollx() local
127 num = strtoll(val, &expr, 10); in __strsuftollx()
136 t = num; in __strsuftollx()
137 num *= 512; /* 1 block */ in __strsuftollx()
138 if (t > num) in __strsuftollx()
143 t = num; in __strsuftollx()
144 num *= 1024; /* 1 kibibyte */ in __strsuftollx()
145 if (t > num) in __strsuftollx()
150 t = num; in __strsuftollx()
151 num *= 1048576; /* 1 mebibyte */ in __strsuftollx()
152 if (t > num) in __strsuftollx()
157 t = num; in __strsuftollx()
158 num *= 1073741824; /* 1 gibibyte */ in __strsuftollx()
159 if (t > num) in __strsuftollx()
164 t = num; in __strsuftollx()
165 num *= 1099511627776LL; /* 1 tebibyte */ in __strsuftollx()
166 if (t > num) in __strsuftollx()
171 t = num; in __strsuftollx()
172 num *= sizeof(int); /* 1 word */ in __strsuftollx()
173 if (t > num) in __strsuftollx()
184 t = num; in __strsuftollx()
185 num *= __strsuftollx(desc, expr + 1, min, max, ebuf, ebuflen, in __strsuftollx()
189 if (t > num) { in __strsuftollx()
201 if (num < min) { in __strsuftollx()
204 desc, (long long)num, (long long)min); in __strsuftollx()
207 if (num > max) { in __strsuftollx()
210 desc, (long long)num, (long long)max); in __strsuftollx()
214 return num; in __strsuftollx()