Home | History | Annotate | Download | only in plugins

Lines Matching defs:total_weight

437     sint32 total_weight;
444 total_weight = x_factor_inv >> 24;
448 while (total_weight > 0) {
481 total_weight -= curr_weight;
482 curr_weight = total_weight > 256 ? 256 : total_weight;
501 sint32 total_weight;
508 total_weight = x_factor_inv >> 24;
512 while (total_weight > 0) {
542 total_weight -= curr_weight;
543 curr_weight = total_weight > 256 ? 256 : total_weight;
560 sint32 total_weight;
567 total_weight = x_factor_inv >> 24;
571 while (total_weight > 0) {
598 total_weight -= curr_weight;
599 curr_weight = total_weight > 256 ? 256 : total_weight;
616 sint32 total_weight;
623 total_weight = x_factor_inv >> 24;
627 while (total_weight > 0) {
651 total_weight -= curr_weight;
652 curr_weight = total_weight > 256 ? 256 : total_weight;
669 sint32 total_weight;
676 total_weight = x_factor_inv >> 24;
680 while (total_weight > 0) {
701 total_weight -= curr_weight;
702 curr_weight = total_weight > 256 ? 256 : total_weight;
719 sint32 total_weight;
726 total_weight = x_factor_inv >> 24;
730 while (total_weight > 0) {
748 total_weight -= curr_weight;
749 curr_weight = total_weight > 256 ? 256 : total_weight;
765 sint32 total_weight;
772 total_weight = x_factor_inv >> 24;
776 while (total_weight > 0) {
791 total_weight -= curr_weight;
792 curr_weight = total_weight > 256 ? 256 : total_weight;
808 sint32 total_weight;
815 total_weight = x_factor_inv >> 24;
819 while (total_weight > 0) {
831 total_weight -= curr_weight;
832 curr_weight = total_weight > 256 ? 256 : total_weight;
848 sint32 total_weight;
850 total_weight = y_factor_inv >> 24;
854 if ((sint32) top_weight > total_weight) {
855 top_weight = total_weight;
857 total_weight -= top_weight;
859 if (total_weight & 0xff) {
860 bot_weight = total_weight & 0xff;
861 } else if (total_weight > 255) {
867 total_weight -= bot_weight;
869 assert(total_weight >= 0);
870 assert((total_weight & 0xff) == 0);
872 in_rows = 2 + (total_weight >> 8);
920 total_weight = x_factor_inv >> 24;
924 while (total_weight > 0) {
943 total_weight -= curr_weight;
944 curr_weight = total_weight > 256 ? 256 : total_weight;