Home
last modified time | relevance | path

Searched refs:snod (Results 1 – 12 of 12) sorted by relevance

/external/u-boot/fs/ubifs/
Dgc.c241 struct ubifs_scan_node *snod, *tmp; in sort_nodes() local
246 list_for_each_entry_safe(snod, tmp, &sleb->nodes, list) { in sort_nodes()
247 ubifs_assert(snod->type == UBIFS_INO_NODE || in sort_nodes()
248 snod->type == UBIFS_DATA_NODE || in sort_nodes()
249 snod->type == UBIFS_DENT_NODE || in sort_nodes()
250 snod->type == UBIFS_XENT_NODE || in sort_nodes()
251 snod->type == UBIFS_TRUN_NODE); in sort_nodes()
253 if (snod->type != UBIFS_INO_NODE && in sort_nodes()
254 snod->type != UBIFS_DATA_NODE && in sort_nodes()
255 snod->type != UBIFS_DENT_NODE && in sort_nodes()
[all …]
Dreplay.c539 struct ubifs_scan_node *snod; in replay_bud() local
579 list_for_each_entry(snod, &sleb->nodes, list) { in replay_bud()
584 if (snod->sqnum >= SQNUM_WATERMARK) { in replay_bud()
589 if (snod->sqnum > c->max_sqnum) in replay_bud()
590 c->max_sqnum = snod->sqnum; in replay_bud()
592 switch (snod->type) { in replay_bud()
595 struct ubifs_ino_node *ino = snod->node; in replay_bud()
600 err = insert_node(c, lnum, snod->offs, snod->len, in replay_bud()
601 &snod->key, snod->sqnum, deletion, in replay_bud()
607 struct ubifs_data_node *dn = snod->node; in replay_bud()
[all …]
Dscan.c191 struct ubifs_scan_node *snod; in ubifs_add_snod() local
193 snod = kmalloc(sizeof(struct ubifs_scan_node), GFP_NOFS); in ubifs_add_snod()
194 if (!snod) in ubifs_add_snod()
197 snod->sqnum = le64_to_cpu(ch->sqnum); in ubifs_add_snod()
198 snod->type = ch->node_type; in ubifs_add_snod()
199 snod->offs = offs; in ubifs_add_snod()
200 snod->len = le32_to_cpu(ch->len); in ubifs_add_snod()
201 snod->node = buf; in ubifs_add_snod()
212 key_read(c, &ino->key, &snod->key); in ubifs_add_snod()
215 invalid_key_init(c, &snod->key); in ubifs_add_snod()
[all …]
Dmaster.c32 struct ubifs_scan_node *snod; in scan_for_master() local
42 snod = list_entry(sleb->nodes.prev, struct ubifs_scan_node, in scan_for_master()
44 if (snod->type != UBIFS_MST_NODE) in scan_for_master()
46 memcpy(c->mst_node, snod->node, snod->len); in scan_for_master()
47 offs = snod->offs; in scan_for_master()
60 snod = list_entry(sleb->nodes.prev, struct ubifs_scan_node, list); in scan_for_master()
61 if (snod->type != UBIFS_MST_NODE) in scan_for_master()
63 if (snod->offs != offs) in scan_for_master()
66 (void *)snod->node + UBIFS_CH_SZ, in scan_for_master()
79 snod->type, lnum, snod->offs); in scan_for_master()
Drecovery.c504 struct ubifs_scan_node *snod; in fix_unclean_leb() local
506 snod = list_entry(sleb->nodes.prev, in fix_unclean_leb()
508 endpt = snod->offs + snod->len; in fix_unclean_leb()
573 struct ubifs_scan_node *snod; in drop_last_group() local
576 snod = list_entry(sleb->nodes.prev, struct ubifs_scan_node, in drop_last_group()
578 ch = snod->node; in drop_last_group()
583 sleb->lnum, snod->offs); in drop_last_group()
584 *offs = snod->offs; in drop_last_group()
585 list_del(&snod->list); in drop_last_group()
586 kfree(snod); in drop_last_group()
[all …]
Dorphan.c553 struct ubifs_scan_node *snod; in do_kill_orphans() local
559 list_for_each_entry(snod, &sleb->nodes, list) { in do_kill_orphans()
560 if (snod->type != UBIFS_ORPH_NODE) { in do_kill_orphans()
562 snod->type, sleb->lnum, snod->offs); in do_kill_orphans()
563 ubifs_dump_node(c, snod->node); in do_kill_orphans()
567 orph = snod->node; in do_kill_orphans()
589 cmt_no, sleb->lnum, snod->offs); in do_kill_orphans()
590 ubifs_dump_node(c, snod->node); in do_kill_orphans()
617 cmt_no, sleb->lnum, snod->offs); in do_kill_orphans()
847 struct ubifs_scan_node *snod; in dbg_read_orphans() local
[all …]
Dlprops.c1025 struct ubifs_scan_node *snod; in scan_check_cb() local
1118 list_for_each_entry(snod, &sleb->nodes, list) { in scan_check_cb()
1124 is_idx = (snod->type == UBIFS_IDX_NODE) ? 1 : 0; in scan_check_cb()
1126 if (is_idx && snod->type != UBIFS_IDX_NODE) { in scan_check_cb()
1128 lnum, snod->offs); in scan_check_cb()
1132 if (snod->type == UBIFS_IDX_NODE) { in scan_check_cb()
1133 struct ubifs_idx_node *idx = snod->node; in scan_check_cb()
1135 key_read(c, ubifs_idx_key(c, idx), &snod->key); in scan_check_cb()
1139 found = ubifs_tnc_has_node(c, &snod->key, level, lnum, in scan_check_cb()
1140 snod->offs, is_idx); in scan_check_cb()
[all …]
Dlog.c627 struct ubifs_scan_node *snod; in ubifs_consolidate_log() local
645 list_for_each_entry(snod, &sleb->nodes, list) { in ubifs_consolidate_log()
646 switch (snod->type) { in ubifs_consolidate_log()
648 struct ubifs_ref_node *ref = snod->node; in ubifs_consolidate_log()
656 &offs, snod->node); in ubifs_consolidate_log()
666 snod->node); in ubifs_consolidate_log()
Ddebug.c806 struct ubifs_scan_node *snod; in ubifs_dump_sleb() local
811 list_for_each_entry(snod, &sleb->nodes, list) { in ubifs_dump_sleb()
814 sleb->lnum, snod->offs, snod->len); in ubifs_dump_sleb()
815 ubifs_dump_node(c, snod->node); in ubifs_dump_sleb()
822 struct ubifs_scan_node *snod; in ubifs_dump_leb() local
842 list_for_each_entry(snod, &sleb->nodes, list) { in ubifs_dump_leb()
845 snod->offs, snod->len); in ubifs_dump_leb()
846 ubifs_dump_node(c, snod->node); in ubifs_dump_leb()
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Den-IPA.txt15200 $x{snowdon → snodən ; # snɑʊdɑn
15201 $x{snowden → snodən ; # snɑʊdɛn
19107 $x{snowed → snod ; # snɑʊd
Dinternal_raw_IPA.txt151926 snod snɑd
151990 snowed %29802 snod
Dinternal_raw_IPA-old.txt181451 snod snɑd
181535 snowed %20629 snod