Home | History | Annotate | Download | only in et

Lines Matching refs:mod_base

74 	mod_base = 1000000
88 tab_base_low = table_number % mod_base
91 tab_base_low = tab_base_low + mod_base
93 tab_base_high = int(table_number / mod_base)
99 int(tab_base_low / mod_base)
100 tab_base_low = tab_base_low % mod_base
103 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