Searched refs:mod_base (Results 1 – 5 of 5) sorted by relevance
/external/e2fsprogs/lib/et/ |
D | et_h.awk | 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) [all …]
|
D | et_c.awk | 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) [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_runpy.py | 116 def _make_pkg(self, source, depth, mod_base="runpy_test"): argument 118 test_fname = mod_base+os.extsep+"py" 133 mod_name = (pkg_name+".")*depth + mod_base
|
/external/python/cpython3/Lib/test/ |
D | test_runpy.py | 223 def _make_pkg(self, source, depth, mod_base="runpy_test", argument 230 test_fname = mod_base+os.extsep+"py" 247 mod_name = (pkg_name+".")*depth + mod_base
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | ProcessGDBRemote.cpp | 4801 lldb::addr_t mod_base; in LoadModules() local 4807 valid &= modInfo.get_base(mod_base); in LoadModules() 4818 LoadModuleAtAddress(file, link_map, mod_base, mod_base_is_offset); in LoadModules()
|