Lines Matching defs:total
119 uint32_t total, n;
123 total = block_size / elt_size;
124 n = total / 3; /* rounds down */
557 unsigned int total = nr_left + nr_right;
558 unsigned int target_left = total / 2;
559 unsigned int target_right = total - target_left;
588 unsigned int total, target_left, target_center, target_right;
592 total = nr_left + nr_right;
593 target_left = total / 3;
594 target_center = (total - target_left) / 2;
595 target_right = (total - target_left - target_center);