Lines Matching refs:mult
137 unsigned long long mult = 1; in get_mult_time() local
161 mult = 1; in get_mult_time()
163 mult = 1000; in get_mult_time()
165 mult = 1000000; in get_mult_time()
167 mult = 60 * 1000000UL; in get_mult_time()
169 mult = 60 * 60 * 1000000UL; in get_mult_time()
171 mult = 24 * 60 * 60 * 1000000ULL; in get_mult_time()
174 return mult; in get_mult_time()
195 unsigned int i, pow = 0, mult = kb_base; in __get_mult_bytes() local
217 mult = 1024; in __get_mult_bytes()
219 mult = 1000; in __get_mult_bytes()
223 mult = 1024; in __get_mult_bytes()
225 mult = 1000; in __get_mult_bytes()
229 mult = 1024; in __get_mult_bytes()
231 mult = 1000; in __get_mult_bytes()
235 mult = 1024; in __get_mult_bytes()
237 mult = 1000; in __get_mult_bytes()
241 mult = 1024; in __get_mult_bytes()
243 mult = 1000; in __get_mult_bytes()
261 ret *= (unsigned long long) mult; in __get_mult_bytes()
361 unsigned long long mult; in str_to_decimal() local
364 mult = get_mult_bytes(str, len, data, &perc); in str_to_decimal()
368 *val *= mult; in str_to_decimal()