/openbmc/linux/arch/x86/kvm/mmu/ |
H A D | tdp_mmu.c | 150 #define __for_each_tdp_mmu_root_yield_safe(_kvm, _root, _as_id, _shared, _only_valid)\ argument 151 for (_root = tdp_mmu_next_root(_kvm, NULL, _shared, _only_valid); \ 152 _root; \ 153 _root = tdp_mmu_next_root(_kvm, _root, _shared, _only_valid)) \ 155 kvm_mmu_page_as_id(_root) != _as_id) { \ 158 #define for_each_valid_tdp_mmu_root_yield_safe(_kvm, _root, _as_id, _shared) \ argument 159 __for_each_tdp_mmu_root_yield_safe(_kvm, _root, _as_id, _shared, true) 161 #define for_each_tdp_mmu_root_yield_safe(_kvm, _root, _shared) \ argument 162 for (_root = tdp_mmu_next_root(_kvm, NULL, _shared, false); \ 163 _root; \ [all …]
|
H A D | mmu.c | 163 #define for_each_shadow_entry_using_root(_vcpu, _root, _addr, _walker) \ argument 165 (_root), (_addr)); \
|
/openbmc/phosphor-inventory-manager/ |
H A D | manager.cpp | 59 ServerObject<ManagerIface>(bus, root), _root(root), _bus(std::move(bus)), in Manager() 234 compareFirst(RelPathCompare(_root))); in updateObjects() 236 absPath.assign(_root); in updateObjects() 301 p.assign(_root); in destroyObjects() 324 auto oit = _refs.find(_root + p); in getInterfaceHolder() 326 throw std::runtime_error(_root + p + " was not found"); in getInterfaceHolder() 393 refIt = _refs.find(_root + condition.path); in restore()
|
H A D | manager.hpp | 192 const char* _root; member in phosphor::inventory::manager::Manager
|
/openbmc/u-boot/tools/dtoc/ |
H A D | fdt.py | 511 self._root = self.Node(self, None, 0, '/', '/') 512 self._root.Scan() 520 return self._root 530 node = self._root 558 self._root.Sync(auto_resize) 624 self._root.Refresh(0)
|
H A D | test_fdt | 171 del self.dtb._root.subnodes[-1]
|
H A D | test_fdt.py | 171 del self.dtb._root.subnodes[-1]
|
/openbmc/phosphor-hwmon/ |
H A D | mainloop.hpp | 112 const char* _root; member in MainLoop
|
H A D | mainloop.cpp | 229 std::string objectPath{_root}; in getObject() 344 _instance(), _devPath(devPath), _prefix(prefix), _root(root), _state(), in MainLoop()
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | create_go.py | 294 _root, _, _ = self.__split_path_version(modulepath) 296 _root = _root[:-len(_subdir)].strip('/') 300 return (GoImport(_root, _vcs, _root_url.geturl(), None), _commit)
|
/openbmc/linux/kernel/ |
H A D | resource.c | 75 #define for_each_resource(_root, _p, _skip_children) \ argument 76 for ((_p) = (_root)->child; (_p); \
|