Lines Matching refs:mod_base
74 mod_base = 1000000
87 tab_base_low = table_number % mod_base
90 tab_base_low = tab_base_low + mod_base
92 tab_base_high = int(table_number / mod_base)
98 int(tab_base_low / mod_base)
99 tab_base_low = tab_base_low % mod_base
102 tab_base_low = tab_base_low + mod_base
108 sub_low = 256*256*256 % mod_base
109 sub_high = int(256*256*256 / mod_base)
112 sub_high = (sub_high * 256) + int(sub_low / mod_base)
113 sub_low = sub_low % mod_base
119 tab_base_low = tab_base_low + mod_base
151 if (curr_low >= mod_base) {
152 curr_low -= mod_base;
156 cur_low += mod_base
173 if (curr_low >= mod_base) {
174 curr_low -= mod_base;
178 cur_low += mod_base