Home
last modified time | relevance | path

Searched refs:_root (Results 1 – 22 of 22) sorted by relevance

/netbsd-src/external/bsd/kyua-cli/dist/utils/config/
H A Dtree.cpp41 _root(new detail::static_inner_node()) in tree()
50 _root(root) in tree()
68 dynamic_cast< detail::static_inner_node* >(_root->deep_copy()); in deep_copy()
90 _root->define(key, 0, detail::new_node< detail::dynamic_inner_node >); in define_dynamic()
111 const detail::base_node* raw_node = _root->lookup_ro(key, 0); in is_set()
136 const detail::base_node* raw_node = _root->lookup_ro(key, 0); in push_lua()
160 detail::base_node* raw_node = _root->lookup_rw( in set_lua()
184 const detail::base_node* raw_node = _root->lookup_ro(key, 0); in lookup_string()
211 detail::base_node* raw_node = _root->lookup_rw( in set_string()
245 raw_node = _root.get(); in all_properties()
[all …]
H A Dtree.ipp59 _root->define(key, 0, detail::new_node< LeafType >);
81 const detail::base_node* raw_node = _root->lookup_ro(key, 0);
108 detail::base_node* raw_node = _root->lookup_rw(
137 leaf_node* raw_node = _root->lookup_rw(key, 0,
H A Dtree.hpp85 std::shared_ptr< detail::static_inner_node > _root; member in utils::config::tree
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
H A Ddlist.d206 private BaseNode* _root; in DList() local
218 if (_root) return; in DList()
220 _root = (new PayNode()).asBaseNode(); in DList()
221 _root._next = _root._prev = _root; in DList()
225 assert(_root); in DList()
226 return _root._next; in DList()
230 assert(_root); in DList()
231 return _root._prev; in DList()
262 const lroot = lhs._root; in DList()
263 const rroot = rhs._root; in DList()
[all …]
H A Dslist.d74 private Node * _root; in SList() local
78 if (_root) return; in SList()
79 _root = cast (Node*) new NodeWithoutPayload(); in SList()
84 assert(_root); in SList()
85 return _root._next; in SList()
159 if (_root is rhs._root) return true; in SList()
160 if (_root is null) return rhs._root is null || rhs._first is null; in SList()
161 if (rhs._root is null) return _root is null || _first is null; in SList()
227 return _root is null || _first is null; in SList()
310 if (_root) in SList()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/
H A Ddlist.d212 private BaseNode* _root;
224 if (_root) return;
226 _root = (new PayNode()).asBaseNode();
227 _root._next = _root._prev = _root;
231 assert(_root, "Root pointer must not be null");
232 return _root._next;
236 assert(_root, "Root pointer must not be null");
237 return _root._prev;
268 const lroot = lhs._root;
269 const rroot = rhs._root;
[all …]
H A Dslist.d75 private Node * _root; variable
79 if (_root) return; in initialize()
80 _root = cast (Node*) new NodeWithoutPayload(); in initialize()
85 assert(_root, "root pointer must not be null"); in inout()
86 return _root._next; in inout()
215 if (_root is rhs._root) return true; in opEquals()
216 if (_root is null) return rhs._root is null || rhs._first is null; in opEquals()
217 if (rhs._root is null) return _root is null || _first is null; in opEquals()
283 return _root is null || _first is null; in empty()
370 if (_root) in clear()
[all …]
/netbsd-src/sys/compat/netbsd32/
H A Dnetbsd32_sysctl.c123 const struct sysctlnode *_root = &netbsd32_sysctl_root; variable
126 sysctl_createv(clog, 0, &_root, NULL,
131 sysctl_createv(clog, 0, &_root, NULL,
138 sysctl_createv(clog, 0, &_root, NULL,
143 sysctl_createv(clog, 0, &_root, NULL,
149 sysctl_createv(clog, 0, &_root, NULL,
155 sysctl_createv(clog, 0, &_root, NULL,
162 sysctl_createv(clog, 0, &_root, NULL,
167 sysctl_createv(clog, 0, &_root, NULL,
172 sysctl_createv(clog, 0, &_root, NULL,
[all …]
/netbsd-src/sys/arch/hpc/stand/hpcboot/
H A Dhpcboot.cpp66 app->_root = new RootWindow(*app); in WinMain()
71 if (!app->_root->create(0)) in WinMain()
82 if (app->_root) in WinMain()
83 delete app->_root; in WinMain()
224 if (MessageBox(menu._root->_window, TEXT("Push YES to boot."), in hpcboot()
232 UpdateWindow(menu._root->_window); in hpcboot()
245 MessageBox(menu._root->_window, error_message, in hpcboot()
261 if (HPC_PREFERENCE.auto_boot > 0 && _root && in run()
264 _root->disableTimer(); in run()
266 if (!_root->isDialogMessage(msg)) { in run()
H A Dhpcmenu.cpp105 (LoadString(_root->_app._instance, res, 0, 0)); in dir()
289 MessageBox(_root->_window, in setup_kernel_args()
293 UpdateWindow(_root->_window); in setup_kernel_args()
308 MessageBox(_root->_window, in setup_kernel_args()
312 UpdateWindow(_root->_window); in setup_kernel_args()
358 _root->progress(msg); in progress()
365 _root->unprogress(); in unprogress()
379 MessageBox(_root->_window, in boot()
H A Dhpcmenu.h55 RootWindow *_root; variable
72 _root = 0; in HpcBootApp()
123 RootWindow *_root; variable
H A Dload_elf.cpp202 MessageBox(HPC_MENU._root->_window, in symbol_block_size()
206 UpdateWindow(HPC_MENU._root->_window); in symbol_block_size()
241 MessageBox(HPC_MENU._root->_window, in symbol_block_size()
245 UpdateWindow(HPC_MENU._root->_window); in symbol_block_size()
H A Darch.cpp108 HWND owner = HpcMenuInterface::Instance()._root->_window; in _load_func()
/netbsd-src/sys/arch/hpc/stand/hpcboot/menu/
H A Drootwindow.h75 RootWindow &_root;
78 : Window(app, root._window), _root(root) { in BootButton()
88 RootWindow &_root;
91 : Window(app, root._window), _root(root) { in CancelButton()
101 RootWindow &_root;
104 : Window(app, root._window), _root(root) { in ProgressBar()
H A Drootwindow.cpp249 HpcMenuInterface::Instance()._root = this; in WMCreate()
389 int cx = _root._button_width; in create()
390 int cy = _root._button_height; in create()
409 int cx = _root._button_width; in create()
410 int cy = _root._button_height; in create()
411 int x = _rect.right - _root._button_width; in create()
430 int cx = _rect.right - _rect.left - _root._button_width * 2; in create()
431 int cy = _root._button_height; in create()
432 int x = _rect.left + _root._button_width; in create()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dfree_list.d197 if (probMiss < tooFewMisses && _root) in updateStats()
199 auto b = blockFor(_root); in updateStats()
200 _root = _root.next; in updateStats()
950 private Node* _root; member
985 if (!_root) in allocate()
992 auto oldRoot = _root; in allocate()
993 _root = _root.next; in allocate()
1013 newRoot.next = _root; in deallocate()
1014 _root = newRoot; in deallocate()
1038 for (auto n = _root; n;) in deallocateAll()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dfree_list.d202 if (probMiss < tooFewMisses && _root) in updateStats()
204 auto b = blockFor(_root); in updateStats()
205 _root = _root.next; in updateStats()
1032 private Node* _root; member
1067 if (!_root) in allocate()
1074 auto oldRoot = _root; in allocate()
1075 _root = _root.next; in allocate()
1095 newRoot.next = _root; in deallocate()
1096 _root = newRoot; in deallocate()
1120 for (auto n = _root; n;) in deallocateAll()
[all …]
/netbsd-src/external/bsd/kyua-cli/dist/engine/
H A Dtest_case_test.cpp127 fs::path _root; member in __anon54dd8b330111::atf_helper
149 _root(_srcdir), in atf_helper()
208 _root = fs::path(new_root); in move()
211 const fs::path new_path = _root / _binary_path; in move()
235 "atf", _binary_path, _root, "the-suite", in run()
282 fs::path _root; member in __anon54dd8b330111::plain_helper
300 _root(_srcdir), in plain_helper()
335 _root = fs::path(new_root); in move()
338 const fs::path new_path = _root / _binary_path; in move()
356 "plain", _binary_path, _root, "unit-tests", mdbuilder.build()); in run()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
H A Dparallel_backend_tbb.h731 bool _root; //means a task is merging root task variable
828 _M_comp(__comp), _M_leaf_merge(__leaf_merge), _M_nsort(__nsort), _root(__root), in __merge_func()
856 return _root ? nullptr : &static_cast<__func_task<__merge_func>*>(__self->parent())->body(); in parent_merge()
1030 _M_x_beg, _M_z_beg, _x_orig, _y_orig, _root); in split_merging()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
H A Dcpplint.py358 _root = None variable
1130 if _root:
1131 file_path_from_root = re.sub('^' + _root + os.sep, '', file_path_from_root)
3991 global _root
3992 _root = val
/netbsd-src/sys/sys/
H A Dmount.h258 int fsname##_root(struct mount *, int, struct vnode **); \
/netbsd-src/external/lgpl3/gmp/dist/mini-gmp/
H A DChangeLog630 * mini-gmp.c (mpz_rootrem): Extended code from _root.