Home
last modified time | relevance | path

Searched refs:root (Results 1526 - 1550 of 3807) sorted by relevance

1...<<61626364656667686970>>...153

/kernel/linux/linux-5.10/fs/hfsplus/
H A Dbrec.c74 if (!tree->root) in hfs_brec_insert()
149 new_node->parent = tree->root; in hfs_brec_insert()
434 new_node->parent = tree->root; in hfs_brec_update_parent()
470 if (tree->root) { in hfs_btree_inc_height()
471 node = hfs_bnode_find(tree, tree->root); in hfs_btree_inc_height()
481 tree->root = new_node->this; in hfs_btree_inc_height()
507 /* insert old root idx into new root */ in hfs_btree_inc_height()
508 node->parent = tree->root; in hfs_btree_inc_height()
/kernel/linux/linux-5.10/fs/omfs/
H A Dinode.c296 static int omfs_show_options(struct seq_file *m, struct dentry *root) in omfs_show_options() argument
298 struct omfs_sb_info *sbi = OMFS_SB(root->d_sb); in omfs_show_options()
331 * stored in the root block. For ReplayTV, there is no such free bitmap
461 struct inode *root; in omfs_fill_super() local
549 "super and root blocks (%llx, %llx)\n", in omfs_fill_super()
576 root = omfs_iget(sb, be64_to_cpu(omfs_rb->r_root_dir)); in omfs_fill_super()
577 if (IS_ERR(root)) { in omfs_fill_super()
578 ret = PTR_ERR(root); in omfs_fill_super()
582 sb->s_root = d_make_root(root); in omfs_fill_super()
/kernel/linux/linux-5.10/fs/ocfs2/
H A Dreservations.c306 struct rb_root *root = &resmap->m_reservations; in ocfs2_resv_insert() local
308 struct rb_node **p = &root->rb_node; in ocfs2_resv_insert()
338 rb_insert_color(&new->r_node, root); in ocfs2_resv_insert()
463 struct rb_root *root = &resmap->m_reservations; in __ocfs2_resv_find_window() local
479 goal, wanted, RB_EMPTY_ROOT(root)); in __ocfs2_resv_find_window()
483 if (RB_EMPTY_ROOT(root)) { in __ocfs2_resv_find_window()
526 next = rb_first(root); in __ocfs2_resv_find_window()
/kernel/linux/linux-5.10/fs/hfs/
H A Dbrec.c76 if (!tree->root) in hfs_brec_insert()
149 new_node->parent = tree->root; in hfs_brec_insert()
430 new_node->parent = tree->root; in hfs_brec_update_parent()
466 if (tree->root) { in hfs_btree_inc_height()
467 node = hfs_bnode_find(tree, tree->root); in hfs_btree_inc_height()
477 tree->root = new_node->this; in hfs_btree_inc_height()
503 /* insert old root idx into new root */ in hfs_btree_inc_height()
504 node->parent = tree->root; in hfs_btree_inc_height()
/kernel/linux/linux-6.6/fs/hfs/
H A Dbrec.c76 if (!tree->root) in hfs_brec_insert()
149 new_node->parent = tree->root; in hfs_brec_insert()
430 new_node->parent = tree->root; in hfs_brec_update_parent()
466 if (tree->root) { in hfs_btree_inc_height()
467 node = hfs_bnode_find(tree, tree->root); in hfs_btree_inc_height()
477 tree->root = new_node->this; in hfs_btree_inc_height()
503 /* insert old root idx into new root */ in hfs_btree_inc_height()
504 node->parent = tree->root; in hfs_btree_inc_height()
/kernel/linux/linux-6.6/fs/hfsplus/
H A Dbrec.c74 if (!tree->root) in hfs_brec_insert()
149 new_node->parent = tree->root; in hfs_brec_insert()
434 new_node->parent = tree->root; in hfs_brec_update_parent()
470 if (tree->root) { in hfs_btree_inc_height()
471 node = hfs_bnode_find(tree, tree->root); in hfs_btree_inc_height()
481 tree->root = new_node->this; in hfs_btree_inc_height()
507 /* insert old root idx into new root */ in hfs_btree_inc_height()
508 node->parent = tree->root; in hfs_btree_inc_height()
/kernel/linux/linux-6.6/fs/omfs/
H A Dinode.c295 static int omfs_show_options(struct seq_file *m, struct dentry *root) in omfs_show_options() argument
297 struct omfs_sb_info *sbi = OMFS_SB(root->d_sb); in omfs_show_options()
330 * stored in the root block. For ReplayTV, there is no such free bitmap
460 struct inode *root; in omfs_fill_super() local
548 "super and root blocks (%llx, %llx)\n", in omfs_fill_super()
575 root = omfs_iget(sb, be64_to_cpu(omfs_rb->r_root_dir)); in omfs_fill_super()
576 if (IS_ERR(root)) { in omfs_fill_super()
577 ret = PTR_ERR(root); in omfs_fill_super()
581 sb->s_root = d_make_root(root); in omfs_fill_super()
/kernel/linux/linux-6.6/fs/ocfs2/
H A Dreservations.c302 struct rb_root *root = &resmap->m_reservations; in ocfs2_resv_insert() local
304 struct rb_node **p = &root->rb_node; in ocfs2_resv_insert()
334 rb_insert_color(&new->r_node, root); in ocfs2_resv_insert()
459 struct rb_root *root = &resmap->m_reservations; in __ocfs2_resv_find_window() local
475 goal, wanted, RB_EMPTY_ROOT(root)); in __ocfs2_resv_find_window()
479 if (RB_EMPTY_ROOT(root)) { in __ocfs2_resv_find_window()
522 next = rb_first(root); in __ocfs2_resv_find_window()
/kernel/linux/linux-6.6/block/
H A Delevator.c227 void elv_rb_add(struct rb_root *root, struct request *rq) in elv_rb_add() argument
229 struct rb_node **p = &root->rb_node; in elv_rb_add()
244 rb_insert_color(&rq->rb_node, root); in elv_rb_add()
248 void elv_rb_del(struct rb_root *root, struct request *rq) in elv_rb_del() argument
251 rb_erase(&rq->rb_node, root); in elv_rb_del()
256 struct request *elv_rb_find(struct rb_root *root, sector_t sector) in elv_rb_find() argument
258 struct rb_node *n = root->rb_node; in elv_rb_find()
/kernel/linux/linux-6.6/net/sched/
H A Dcls_route.c129 struct route4_head *head = rcu_dereference_bh(tp->root); in route4_classify()
219 struct route4_head *head = rtnl_dereference(tp->root); in route4_get()
251 rcu_assign_pointer(tp->root, head); in route4_init()
280 struct route4_head *head = rtnl_dereference(tp->root); in route4_destroy()
316 struct route4_head *head = rtnl_dereference(tp->root); in route4_delete()
477 struct route4_head *head = rtnl_dereference(tp->root); in route4_change()
575 struct route4_head *head = rtnl_dereference(tp->root); in route4_walk()
/kernel/linux/linux-6.6/tools/perf/util/
H A Denv.c153 struct rb_root *root; in perf_env__purge_bpf() local
158 root = &env->bpf_progs.infos; in perf_env__purge_bpf()
159 next = rb_first(root); in perf_env__purge_bpf()
166 rb_erase(&node->rb_node, root); in perf_env__purge_bpf()
173 root = &env->bpf_progs.btfs; in perf_env__purge_bpf()
174 next = rb_first(root); in perf_env__purge_bpf()
181 rb_erase(&node->rb_node, root); in perf_env__purge_bpf()
/third_party/alsa-lib/src/pcm/
H A Dpcm_dsnoop.c519 * \param root Configuration root
531 snd_config_t *root, snd_config_t *sconf, in snd_pcm_dsnoop_open()
564 ret = snd_pcm_open_slave(&spcm, root, sconf, stream, in snd_pcm_dsnoop_open()
610 ret = snd_pcm_open_slave(&spcm, root, sconf, stream, in snd_pcm_dsnoop_open()
765 * \param root Root configuration node
774 snd_config_t *root, snd_config_t *conf, in _snd_pcm_dsnoop_open()
783 err = snd_pcm_direct_parse_open_conf(root, conf, stream, &dopen); in _snd_pcm_dsnoop_open()
795 err = snd_pcm_slave_conf(root, dopen.slave, &sconf, 8, in _snd_pcm_dsnoop_open()
818 root, scon in _snd_pcm_dsnoop_open()
528 snd_pcm_dsnoop_open(snd_pcm_t **pcmp, const char *name, struct snd_pcm_direct_open_conf *opts, struct slave_params *params, snd_config_t *root, snd_config_t *sconf, snd_pcm_stream_t stream, int mode) snd_pcm_dsnoop_open() argument
773 _snd_pcm_dsnoop_open(snd_pcm_t **pcmp, const char *name, snd_config_t *root, snd_config_t *conf, snd_pcm_stream_t stream, int mode) _snd_pcm_dsnoop_open() argument
[all...]
/third_party/node/deps/v8/tools/profview/
H A Dprofile-utils.js221 this.tree = createEmptyNode("root");
247 this.tree = createEmptyNode("root");
265 let root = createEmptyNode("root");
272 root.children.push(n);
290 return { categories, root };
296 let { categories, root } = buildCategoryTreeAndLookup();
298 this.tree = root;
326 let { categories, root } = buildCategoryTreeAndLookup();
327 this.tree = root;
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_eu.c421 brw_find_label(const struct brw_label *root, int offset) in brw_find_label() argument
423 const struct brw_label *curr = root; in brw_find_label()
460 struct brw_label *root = ralloc(mem_ctx, struct brw_label); in brw_create_label() local
461 root->number = 0; in brw_create_label()
462 root->offset = offset; in brw_create_label()
463 root->next = NULL; in brw_create_label()
464 *labels = root; in brw_create_label()
/third_party/python/Lib/idlelib/
H A Ddebugger.py104 self.root.after(100, lambda: self.run(*args))
132 self.root = root = pyshell.root
133 self.top = top = ListedToplevel(root)
245 self.root.tk.call('vwait', '::idledebugwait')
289 self.root.tk.call('set', '::idledebugwait', '1')
/third_party/typescript/tests/baselines/reference/tsbuildWatch/noEmitOnError/
H A Ddoes-not-emit-any-files-on-error.js63 Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
117 Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
171 Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
255 Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
311 Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
365 Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
426 Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
/third_party/python/Lib/venv/
H A D__init__.py305 # For symlinking, we need a complete copy of the root directory
330 for root, dirs, files in os.walk(context.python_dir):
332 tcldir = os.path.basename(root)
336 src = os.path.join(root, 'init.tcl')
419 for root, dirs, files in os.walk(path):
420 if root == path: # at top-level, remove irrelevant dirs
429 srcfile = os.path.join(root, f)
430 suffix = root[plen:].split(os.sep)[2:]
/kernel/linux/linux-5.10/arch/parisc/kernel/
H A Ddrivers.c44 static struct device root = { variable
92 return device_for_each_child(&root, &recurse_data, descend_children); in for_each_padev()
294 while (dev != &root) { in find_pa_parent_type()
323 while (dev != &root) { in get_node_path()
485 struct device *parent = &root; in create_parisc_device()
758 struct device *parent = &root; in hwpath_to_device()
883 &root); in walk_central_bus()
910 if (device_register(&root)) in init_parisc_bus()
911 panic("Could not register PA-RISC root device\n"); in init_parisc_bus()
912 get_device(&root); in init_parisc_bus()
[all...]
/kernel/linux/linux-5.10/arch/powerpc/kernel/
H A Deeh_driver.c173 * finding the root cause it works around the warning in eeh_enable_irq()
217 static void eeh_set_channel_state(struct eeh_pe *root, pci_channel_state_t s) in eeh_set_channel_state() argument
222 eeh_for_each_pe(root, pe) in eeh_set_channel_state()
228 static void eeh_set_irq_state(struct eeh_pe *root, bool enable) in eeh_set_irq_state() argument
233 eeh_for_each_pe(root, pe) { in eeh_set_irq_state()
301 static void eeh_pe_report(const char *name, struct eeh_pe *root, in eeh_pe_report() argument
308 eeh_for_each_pe(root, pe) eeh_pe_for_each_dev(pe, edev, tmp) in eeh_pe_report()
558 static int eeh_clear_pe_frozen_state(struct eeh_pe *root, bool include_passed) in eeh_clear_pe_frozen_state() argument
563 eeh_for_each_pe(root, pe) { in eeh_clear_pe_frozen_state()
572 eeh_pe_state_clear(root, EEH_PE_ISOLATE in eeh_clear_pe_frozen_state()
[all...]
/kernel/linux/linux-6.6/arch/powerpc/kernel/
H A Deeh_driver.c172 * finding the root cause it works around the warning in eeh_enable_irq()
216 static void eeh_set_channel_state(struct eeh_pe *root, pci_channel_state_t s) in eeh_set_channel_state() argument
221 eeh_for_each_pe(root, pe) in eeh_set_channel_state()
227 static void eeh_set_irq_state(struct eeh_pe *root, bool enable) in eeh_set_irq_state() argument
232 eeh_for_each_pe(root, pe) { in eeh_set_irq_state()
300 static void eeh_pe_report(const char *name, struct eeh_pe *root, in eeh_pe_report() argument
307 eeh_for_each_pe(root, pe) eeh_pe_for_each_dev(pe, edev, tmp) in eeh_pe_report()
557 static int eeh_clear_pe_frozen_state(struct eeh_pe *root, bool include_passed) in eeh_clear_pe_frozen_state() argument
562 eeh_for_each_pe(root, pe) { in eeh_clear_pe_frozen_state()
571 eeh_pe_state_clear(root, EEH_PE_ISOLATE in eeh_clear_pe_frozen_state()
[all...]
/kernel/linux/linux-6.6/arch/parisc/kernel/
H A Ddrivers.c44 static struct device root = { variable
92 return device_for_each_child(&root, &recurse_data, descend_children); in for_each_padev()
293 while (dev != &root) { in find_pa_parent_type()
322 while (dev != &root) { in get_node_path()
485 struct device *parent = &root; in create_parisc_device()
758 struct device *parent = &root; in hwpath_to_device()
883 &root); in walk_central_bus()
910 if (device_register(&root)) in init_parisc_bus()
911 panic("Could not register PA-RISC root device\n"); in init_parisc_bus()
912 get_device(&root); in init_parisc_bus()
[all...]
/kernel/linux/linux-5.10/drivers/md/bcache/
H A Dwriteback.c829 c->root, in bch_root_node_dirty_init()
862 bch_btree_iter_init(&c->root->keys, &iter, NULL); in bch_dirty_init_thread()
863 k = bch_btree_iter_next_filter(&iter, &c->root->keys, bch_ptr_bad); in bch_dirty_init_thread()
878 &c->root->keys, in bch_dirty_init_thread()
932 b = c->root; in bch_sectors_dirty_init()
934 if (b != c->root) { in bch_sectors_dirty_init()
939 /* Just count root keys if no leaf node */ in bch_sectors_dirty_init()
940 if (c->root->level == 0) { in bch_sectors_dirty_init()
945 for_each_key_filter(&c->root->keys, in bch_sectors_dirty_init()
949 sectors_dirty_init_fn(&op.op, c->root, in bch_sectors_dirty_init()
[all...]
/kernel/linux/linux-5.10/fs/nilfs2/
H A Drecovery.c63 msg = "Checksum error in super root"; in nilfs_warn_segment_error()
72 msg = "No super root in the last segment"; in nilfs_warn_segment_error()
124 * nilfs_read_super_root_block - read super root block
126 * @sr_block: disk block number of the super root block
127 * @pbh: address of a buffer_head pointer to return super root buffer
432 * Releasing the next segment of the latest super root. in nilfs_prepare_segment_for_recovery()
446 * Collecting segments written after the latest super root. in nilfs_prepare_segment_for_recovery()
494 struct nilfs_root *root, in nilfs_recover_dsync_blocks()
506 inode = nilfs_iget(sb, root, rb->ino); in nilfs_recover_dsync_blocks()
570 struct nilfs_root *root, in nilfs_do_roll_forward()
492 nilfs_recover_dsync_blocks(struct the_nilfs *nilfs, struct super_block *sb, struct nilfs_root *root, struct list_head *head, unsigned long *nr_salvaged_blocks) nilfs_recover_dsync_blocks() argument
568 nilfs_do_roll_forward(struct the_nilfs *nilfs, struct super_block *sb, struct nilfs_root *root, struct nilfs_recovery_info *ri) nilfs_do_roll_forward() argument
734 struct nilfs_root *root; nilfs_salvage_orphan_logs() local
[all...]
/kernel/linux/linux-6.6/fs/nilfs2/
H A Drecovery.c63 msg = "Checksum error in super root"; in nilfs_warn_segment_error()
72 msg = "No super root in the last segment"; in nilfs_warn_segment_error()
124 * nilfs_read_super_root_block - read super root block
126 * @sr_block: disk block number of the super root block
127 * @pbh: address of a buffer_head pointer to return super root buffer
432 * Releasing the next segment of the latest super root. in nilfs_prepare_segment_for_recovery()
446 * Collecting segments written after the latest super root. in nilfs_prepare_segment_for_recovery()
494 struct nilfs_root *root, in nilfs_recover_dsync_blocks()
506 inode = nilfs_iget(sb, root, rb->ino); in nilfs_recover_dsync_blocks()
570 struct nilfs_root *root, in nilfs_do_roll_forward()
492 nilfs_recover_dsync_blocks(struct the_nilfs *nilfs, struct super_block *sb, struct nilfs_root *root, struct list_head *head, unsigned long *nr_salvaged_blocks) nilfs_recover_dsync_blocks() argument
568 nilfs_do_roll_forward(struct the_nilfs *nilfs, struct super_block *sb, struct nilfs_root *root, struct nilfs_recovery_info *ri) nilfs_do_roll_forward() argument
734 struct nilfs_root *root; nilfs_salvage_orphan_logs() local
[all...]
/kernel/linux/linux-6.6/drivers/md/bcache/
H A Dwriteback.c885 c->root, in bch_root_node_dirty_init()
918 bch_btree_iter_init(&c->root->keys, &iter, NULL); in bch_dirty_init_thread()
919 k = bch_btree_iter_next_filter(&iter, &c->root->keys, bch_ptr_bad); in bch_dirty_init_thread()
934 &c->root->keys, in bch_dirty_init_thread()
988 b = c->root; in bch_sectors_dirty_init()
990 if (b != c->root) { in bch_sectors_dirty_init()
995 /* Just count root keys if no leaf node */ in bch_sectors_dirty_init()
996 if (c->root->level == 0) { in bch_sectors_dirty_init()
1001 for_each_key_filter(&c->root->keys, in bch_sectors_dirty_init()
1005 sectors_dirty_init_fn(&op.op, c->root, in bch_sectors_dirty_init()
[all...]

Completed in 24 milliseconds

1...<<61626364656667686970>>...153