Searched refs:mod_base (Results 1 – 5 of 5) sorted by relevance
72 mod_base = 100000078 tab_base_low = table_number % mod_base79 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_base90 sub_low = 256*256*256 % mod_base91 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_base101 tab_base_low = tab_base_low + mod_base[all …]
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;[all …]
72 mod_base = 100000079 tab_base_low = table_number % mod_base80 tab_base_high = int(table_number / mod_base)85 tab_base_high = (tab_base_high * 256) + int(tab_base_low / mod_base)86 tab_base_low = tab_base_low % mod_base91 sub_low = 256*256*256 % mod_base92 sub_high = int(256*256*256 / mod_base)95 sub_high = (sub_high * 256) + int(sub_low / mod_base)96 sub_low = sub_low % mod_base102 tab_base_low = tab_base_low + mod_base
89 $mod_base = 1000000;98 $tab_base_low = $table_number % $mod_base;99 $tab_base_high = int($table_number / $mod_base);106 $mod_base);107 $tab_base_low = $tab_base_low % $mod_base;112 $sub_low = 256 * 256 * 256 % $mod_base;113 $sub_high = int(256 * 256 * 256 / $mod_base);116 $sub_high = ($sub_high * 256) + int($sub_low / $mod_base);117 $sub_low = $sub_low % $mod_base;123 $tab_base_low = $tab_base_low + $mod_base;
5080 lldb::addr_t mod_base; in LoadModules() local5086 valid &= modInfo.get_base(mod_base); in LoadModules()5097 LoadModuleAtAddress(file, link_map, mod_base, mod_base_is_offset); in LoadModules()