Lines Matching defs:tmp
840 u64 bytes_trim, tmp;
868 tmp = tg_bps_limit(tg, rw) * tg->td->throtl_slice * nr_slices;
869 do_div(tmp, HZ);
870 bytes_trim = tmp;
902 u64 tmp;
922 tmp = (u64)iops_limit * jiffy_elapsed_rnd;
923 do_div(tmp, HZ);
925 if (tmp > UINT_MAX)
928 io_allowed = tmp;
2155 struct latency_bucket *tmp = &td->tmp_buckets[rw][i];
2163 tmp->total_latency += bucket[i].total_latency;
2164 tmp->samples += bucket[i].samples;
2169 if (tmp->samples >= 32) {
2170 int samples = tmp->samples;
2172 latency[rw] = tmp->total_latency;
2174 tmp->total_latency = 0;
2175 tmp->samples = 0;