Home
last modified time | relevance | path

Searched refs:mod_base (Results 1 – 5 of 5) sorted by relevance

/freebsd/crypto/krb5/src/util/et/
H A Det_h.awk72 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
[all …]
H A Det_h.pl87 $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 …]
H A Det_c.awk72 mod_base = 1000000
79 tab_base_low = table_number % mod_base
80 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_base
91 sub_low = 256*256*256 % mod_base
92 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_base
102 tab_base_low = tab_base_low + mod_base
H A Det_c.pl89 $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;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp5080 lldb::addr_t mod_base; in LoadModules() local
5086 valid &= modInfo.get_base(mod_base); in LoadModules()
5097 LoadModuleAtAddress(file, link_map, mod_base, mod_base_is_offset); in LoadModules()