Lines Matching refs:mod_base
87 $mod_base = 1000000;
95 $tab_base_low = $table_number % $mod_base;
96 $tab_base_high = int($table_number / $mod_base);
103 $mod_base);
104 $tab_base_low = $tab_base_low % $mod_base;
109 $sub_low = 256 * 256 * 256 % $mod_base;
110 $sub_high = int(256 * 256 * 256 / $mod_base);
113 $sub_high = ($sub_high * 256) + int($sub_low / $mod_base);
114 $sub_low = $sub_low % $mod_base;
120 $tab_base_low = $tab_base_low + $mod_base;
161 if ($curr_low >= $mod_base) { #???
162 $curr_low -= $mod_base;
166 $cur_low += $mod_base;