Lines Matching refs:mod_base
72 mod_base = 1000000
78 tab_base_low = table_number % mod_base
79 tab_base_high = int(table_number / mod_base)
84 tab_base_high = (tab_base_high * 256) + int(tab_base_low / mod_base)
85 tab_base_low = tab_base_low % mod_base
90 sub_low = 256*256*256 % mod_base
91 sub_high = int(256*256*256 / mod_base)
94 sub_high = (sub_high * 256) + int(sub_low / mod_base)
95 sub_low = sub_low % mod_base
101 tab_base_low = tab_base_low + mod_base
126 if (curr_low >= mod_base) {
127 curr_low -= mod_base;
131 cur_low += mod_base