Lines Matching defs:temp
74 u64 temp;
79 temp = bcm_div(node->sum_avg[bucket] * bcm->aux_data.width,
81 agg_avg[bucket] = max(agg_avg[bucket], temp);
83 temp = bcm_div(node->max_peak[bucket] * bcm->aux_data.width,
85 agg_peak[bucket] = max(agg_peak[bucket], temp);
88 temp = agg_avg[bucket] * bcm->vote_scale;
89 bcm->vote_x[bucket] = bcm_div(temp, bcm->aux_data.unit);
91 temp = agg_peak[bucket] * bcm->vote_scale;
92 bcm->vote_y[bucket] = bcm_div(temp, bcm->aux_data.unit);
194 struct bcm_voter *temp;
212 list_for_each_entry(temp, &bcm_voters, voter_node) {
213 if (temp->np == node) {
214 voter = temp;