Home
last modified time | relevance | path

Searched refs:aeb (Results 1 – 25 of 117) sorted by relevance

12345

/external/u-boot/drivers/mtd/ubi/
Dattach.c117 struct ubi_ainf_peb *aeb; in add_to_list() local
129 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL); in add_to_list()
130 if (!aeb) in add_to_list()
133 aeb->pnum = pnum; in add_to_list()
134 aeb->vol_id = vol_id; in add_to_list()
135 aeb->lnum = lnum; in add_to_list()
136 aeb->ec = ec; in add_to_list()
138 list_add(&aeb->u.list, list); in add_to_list()
140 list_add_tail(&aeb->u.list, list); in add_to_list()
157 struct ubi_ainf_peb *aeb; in add_corrupted() local
[all …]
Dfastmap.c145 struct ubi_ainf_peb *aeb; in add_aeb() local
147 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL); in add_aeb()
148 if (!aeb) in add_aeb()
151 aeb->pnum = pnum; in add_aeb()
152 aeb->ec = ec; in add_aeb()
153 aeb->lnum = -1; in add_aeb()
154 aeb->scrub = scrub; in add_aeb()
155 aeb->copy_flag = aeb->sqnum = 0; in add_aeb()
157 ai->ec_sum += aeb->ec; in add_aeb()
160 if (ai->max_ec < aeb->ec) in add_aeb()
[all …]
Deba.c1297 struct ubi_ainf_peb *aeb; in self_check_eba() local
1338 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) in self_check_eba()
1339 scan_eba[i][aeb->lnum] = aeb->pnum; in self_check_eba()
1345 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) in self_check_eba()
1346 fm_eba[i][aeb->lnum] = aeb->pnum; in self_check_eba()
1389 struct ubi_ainf_peb *aeb; in ubi_eba_init() local
1422 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) { in ubi_eba_init()
1423 if (aeb->lnum >= vol->reserved_pebs) in ubi_eba_init()
1428 ubi_move_aeb_to_list(av, aeb, &ai->erase); in ubi_eba_init()
1430 vol->eba_tbl[aeb->lnum] = aeb->pnum; in ubi_eba_init()
Ddebug.c178 void ubi_dump_aeb(const struct ubi_ainf_peb *aeb, int type) in ubi_dump_aeb() argument
181 pr_err("\tec %d\n", aeb->ec); in ubi_dump_aeb()
182 pr_err("\tpnum %d\n", aeb->pnum); in ubi_dump_aeb()
184 pr_err("\tlnum %d\n", aeb->lnum); in ubi_dump_aeb()
185 pr_err("\tscrub %d\n", aeb->scrub); in ubi_dump_aeb()
186 pr_err("\tsqnum %llu\n", aeb->sqnum); in ubi_dump_aeb()
Dvtbl.c374 struct ubi_ainf_peb *aeb; local
406 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) {
407 leb[aeb->lnum] = vzalloc(ubi->vtbl_size);
408 if (!leb[aeb->lnum]) {
413 err = ubi_io_read_data(ubi, leb[aeb->lnum], aeb->pnum, 0,
426 aeb->scrub = 1;
Dwl.c1532 struct ubi_ainf_peb *aeb, *tmp; local
1554 list_for_each_entry_safe(aeb, tmp, &ai->erase, u.list) {
1561 e->pnum = aeb->pnum;
1562 e->ec = aeb->ec;
1564 if (schedule_erase(ubi, e, aeb->vol_id, aeb->lnum, 0)) {
1572 list_for_each_entry(aeb, &ai->free, u.list) {
1579 e->pnum = aeb->pnum;
1580 e->ec = aeb->ec;
1592 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
1599 e->pnum = aeb->pnum;
[all …]
Dubi.h918 int ubi_compare_lebs(struct ubi_device *ubi, const struct ubi_ainf_peb *aeb,
1009 struct ubi_ainf_peb *aeb, in ubi_move_aeb_to_list() argument
1012 rb_erase(&aeb->u.rb, &av->root); in ubi_move_aeb_to_list()
1013 list_add_tail(&aeb->u.list, list); in ubi_move_aeb_to_list()
Ddebug.h50 void ubi_dump_aeb(const struct ubi_ainf_peb *aeb, int type);
/external/llvm/test/CodeGen/SystemZ/
Dfp-add-01.ll19 ; CHECK: aeb %f0, 0(%r2)
29 ; CHECK: aeb %f0, 4092(%r2)
42 ; CHECK: aeb %f0, 0(%r2)
54 ; CHECK: aeb %f0, 0(%r2)
66 ; CHECK: aeb %f0, 400(%r1,%r2)
79 ; CHECK: aeb %f0, 16{{[04]}}(%r15)
Dfp-sincos-01.ll10 ; CHECK-OPT: aeb %f0, 160(%r15)
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/
Dfp-add-01.ll21 ; CHECK: aeb %f0, 0(%r2)
31 ; CHECK: aeb %f0, 4092(%r2)
44 ; CHECK: aeb %f0, 0(%r2)
56 ; CHECK: aeb %f0, 0(%r2)
68 ; CHECK: aeb %f0, 400(%r1,%r2)
81 ; CHECK-SCALAR: aeb %f0, 16{{[04]}}(%r15)
Dfp-sincos-01.ll10 ; CHECK-OPT: aeb %f0, 160(%r15)
/external/mesa3d/src/intel/compiler/
Dbrw_vec4_cse.cpp142 exec_list aeb; in opt_cse_local() local
155 foreach_in_list_use_after(aeb_entry, entry, &aeb) { in opt_cse_local()
174 aeb.push_tail(entry); in opt_cse_local()
233 foreach_in_list_safe(aeb_entry, entry, &aeb) { in opt_cse_local()
Dbrw_fs_cse.cpp244 exec_list aeb; in opt_cse_local() local
258 foreach_in_list_use_after(aeb_entry, entry, &aeb) { in opt_cse_local()
277 aeb.push_tail(entry); in opt_cse_local()
317 foreach_in_list_safe(aeb_entry, entry, &aeb) { in opt_cse_local()
/external/icu/icu4c/source/i18n/
Ddouble-conversion-cached-powers.cpp100 {UINT64_2PART_C(0xbce50864, 92111aeb), -130, -20},
/external/icu/icu4c/source/data/locales/
Dnaq.txt168 "Gamaǀaeb",
/external/icu/icu4c/source/data/lang/
Dsi.txt20 aeb{"ටියුනිසියනු අරාබි"}
Dhy.txt21 aeb{"թունիսական արաբերեն"}
/external/capstone/suite/MC/SystemZ/
Dinsn-good.s.cs20 0xed,0x00,0x00,0x00,0x00,0x0a = aeb %f0, 0
21 0xed,0x00,0x0f,0xff,0x00,0x0a = aeb %f0, 4095
22 0xed,0x00,0x10,0x00,0x00,0x0a = aeb %f0, 0(%r1)
23 0xed,0x00,0xf0,0x00,0x00,0x0a = aeb %f0, 0(%r15)
24 0xed,0x01,0xff,0xff,0x00,0x0a = aeb %f0, 4095(%r1,%r15)
25 0xed,0x0f,0x1f,0xff,0x00,0x0a = aeb %f0, 4095(%r15,%r1)
26 0xed,0xf0,0x00,0x00,0x00,0x0a = aeb %f15, 0
/external/libexif/
Dconfig.sub292 …| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3…
1209 sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
/external/libnfnetlink/
Dconfig.sub293 …| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3…
1216 sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
/external/libnetfilter_conntrack/
Dconfig.sub293 …| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3…
1216 sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
/external/swiftshader/third_party/LLVM/autoconf/
Dconfig.sub298 …| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3…
1256 sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
/external/libpcap/
Dconfig.sub757 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
1248 sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
/external/google-breakpad/autotools/
Dconfig.sub307 …| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3…

12345