Lines Matching defs:temp
97 u64 temp;
102 temp = bcm_div(node->sum_avg[bucket] * bcm->aux_data.width,
104 agg_avg[bucket] = max(agg_avg[bucket], temp);
106 temp = bcm_div(node->max_peak[bucket] * bcm->aux_data.width,
108 agg_peak[bucket] = max(agg_peak[bucket], temp);
111 temp = agg_avg[bucket] * bcm->vote_scale;
112 bcm->vote_x[bucket] = bcm_div(temp, bcm->aux_data.unit);
114 temp = agg_peak[bucket] * bcm->vote_scale;
115 bcm->vote_y[bucket] = bcm_div(temp, bcm->aux_data.unit);
212 struct bcm_voter *temp;
230 list_for_each_entry(temp, &bcm_voters, voter_node) {
231 if (temp->np == node) {
232 voter = temp;