| /OK3568_Linux_fs/kernel/lib/ |
| H A D | bch.c | 577 unsigned int *roots) in find_affine4_roots() argument 606 return solve_linear_system(bch, rows, roots, 4); in find_affine4_roots() 613 unsigned int *roots) in find_poly_deg1_roots() argument 619 roots[n++] = mod_s(bch, GF_N(bch)-bch->a_log_tab[poly->c[0]]+ in find_poly_deg1_roots() 628 unsigned int *roots) in find_poly_deg2_roots() argument 657 roots[n++] = modulo(bch, 2*GF_N(bch)-l1- in find_poly_deg2_roots() 659 roots[n++] = modulo(bch, 2*GF_N(bch)-l1- in find_poly_deg2_roots() 670 unsigned int *roots) in find_poly_deg3_roots() argument 692 roots[n++] = a_ilog(bch, tmp[i]); in find_poly_deg3_roots() 703 unsigned int *roots) in find_poly_deg4_roots() argument [all …]
|
| /OK3568_Linux_fs/u-boot/lib/ |
| H A D | bch.c | 550 unsigned int *roots) in find_affine4_roots() argument 579 return solve_linear_system(bch, rows, roots, 4); in find_affine4_roots() 586 unsigned int *roots) in find_poly_deg1_roots() argument 592 roots[n++] = mod_s(bch, GF_N(bch)-bch->a_log_tab[poly->c[0]]+ in find_poly_deg1_roots() 601 unsigned int *roots) in find_poly_deg2_roots() argument 630 roots[n++] = modulo(bch, 2*GF_N(bch)-l1- in find_poly_deg2_roots() 632 roots[n++] = modulo(bch, 2*GF_N(bch)-l1- in find_poly_deg2_roots() 643 unsigned int *roots) in find_poly_deg3_roots() argument 665 roots[n++] = a_ilog(bch, tmp[i]); in find_poly_deg3_roots() 676 unsigned int *roots) in find_poly_deg4_roots() argument [all …]
|
| /OK3568_Linux_fs/kernel/security/selinux/ss/ |
| H A D | sidtab.c | 37 memset(s->roots, 0, sizeof(s->roots)); in sidtab_init() 163 if (!s->roots[0].ptr_leaf) { in sidtab_alloc_roots() 164 s->roots[0].ptr_leaf = kzalloc(SIDTAB_NODE_ALLOC_SIZE, in sidtab_alloc_roots() 166 if (!s->roots[0].ptr_leaf) in sidtab_alloc_roots() 170 if (!s->roots[l].ptr_inner) { in sidtab_alloc_roots() 171 s->roots[l].ptr_inner = kzalloc(SIDTAB_NODE_ALLOC_SIZE, in sidtab_alloc_roots() 173 if (!s->roots[l].ptr_inner) in sidtab_alloc_roots() 175 s->roots[l].ptr_inner->entries[0] = s->roots[l - 1]; in sidtab_alloc_roots() 195 entry = &s->roots[level]; in sidtab_do_lookup() 457 rc = sidtab_convert_tree(¶ms->target->roots[level], in sidtab_convert() [all …]
|
| H A D | sidtab.h | 81 union sidtab_entry_inner roots[SIDTAB_MAX_LEVEL + 1]; member
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/ |
| H A D | i915_buddy.c | 126 mm->roots = kmalloc_array(mm->n_roots, in i915_buddy_init() 129 if (!mm->roots) in i915_buddy_init() 156 mm->roots[i] = root; in i915_buddy_init() 167 i915_block_free(mm->roots[i]); in i915_buddy_init() 168 kfree(mm->roots); in i915_buddy_init() 179 GEM_WARN_ON(!i915_buddy_block_is_free(mm->roots[i])); in i915_buddy_fini() 180 i915_block_free(mm->roots[i]); in i915_buddy_fini() 183 kfree(mm->roots); in i915_buddy_fini() 362 list_add_tail(&mm->roots[i]->tmp_link, &dfs); in i915_buddy_alloc_range()
|
| H A D | i915_buddy.h | 56 struct i915_buddy_block **roots; member
|
| /OK3568_Linux_fs/kernel/drivers/md/ |
| H A D | dm-verity-fec.c | 50 for (i = 0; i < v->fec->roots; i++) in fec_decode_rs8() 67 position = (index + rsb) * v->fec->roots; in fec_read_parity() 156 offset += v->fec->roots; in fec_decode_bufs() 258 if (neras && *neras <= v->fec->roots) in fec_read_bufs() 276 if (neras && *neras <= v->fec->roots && in fec_read_bufs() 538 v->fec->roots); in verity_fec_status_table() 572 return init_rs_gfp(8, 0x11d, 0, 1, v->fec->roots, gfp_mask); in fec_rs_alloc() 641 v->fec->roots = num_c; in verity_fec_parse_opt_args() 710 if (!f->roots) { in verity_fec_ctr() 714 f->rsn = DM_VERITY_FEC_RSM - f->roots; in verity_fec_ctr() [all …]
|
| H A D | dm-verity-fec.h | 44 unsigned char roots; /* number of parity bytes, M-N of RS(M, N) */ member
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-extended/python-blivet/python3-blivet/ |
| H A D | 0004-fix-new.roots-object-is-not-iterable.patch | 4 Subject: [PATCH 04/11] fix new.roots object is not iterable 21 - for root in new.roots: 22 + for root in new.roots or []:
|
| /OK3568_Linux_fs/kernel/Documentation/core-api/ |
| H A D | librs.rst | 47 * primitive element to generate roots = 1 48 * generator polynomial degree (number of roots) = 6 74 /* Parity buffer. Size = number of roots */ 107 /* Parity buffer. Size = number of roots */ 124 /* Parity buffer. Size = number of roots */ 146 /* Parity buffer. Size = number of roots */
|
| /OK3568_Linux_fs/kernel/fs/btrfs/ |
| H A D | ref-verify.c | 69 struct rb_root roots; member 239 while ((n = rb_first(&be->roots))) { in free_block_entry() 241 rb_erase(&re->node, &be->roots); in free_block_entry() 286 exist_re = insert_root_entry(&exist->roots, re); in add_block_entry() 299 be->roots = RB_ROOT; in add_block_entry() 303 insert_root_entry(&be->roots, re); in add_block_entry() 340 re = lookup_root_entry(&be->roots, ref_root); in add_tree_block() 418 re = lookup_root_entry(&be->roots, ref_root); in add_extent_data_ref() 653 for (n = rb_first(&be->roots); n; n = rb_next(n)) { in dump_block_entry() 820 tmp = insert_root_entry(&be->roots, re); in btrfs_ref_tree_mod() [all …]
|
| H A D | backref.c | 1201 struct ulist *roots, const u64 *extent_item_pos, argument 1353 if (roots && ref->count && ref->root_id && ref->parent == 0) { 1361 ret = ulist_add(roots, ref->root_id, 0, GFP_NOFS); 1492 u64 time_seq, struct ulist **roots, argument 1503 *roots = ulist_alloc(GFP_NOFS); 1504 if (!*roots) { 1512 tmp, *roots, NULL, NULL, ignore_offset); 1515 ulist_free(*roots); 1516 *roots = NULL; 1532 u64 time_seq, struct ulist **roots, argument [all …]
|
| H A D | backref.h | 49 u64 time_seq, struct ulist **roots, bool ignore_offset); 65 struct ulist *roots, struct ulist *tmp_ulist);
|
| H A D | qgroup.c | 2393 struct ulist *roots, struct ulist *tmp, in qgroup_update_refcnt() argument 2403 if (!roots) in qgroup_update_refcnt() 2406 while ((unode = ulist_next(roots, &uiter))) { in qgroup_update_refcnt() 2577 static int maybe_fs_roots(struct ulist *roots) in maybe_fs_roots() argument 2583 if (!roots || roots->nnodes == 0) in maybe_fs_roots() 2587 unode = ulist_next(roots, &uiter); in maybe_fs_roots() 3205 struct ulist *roots = NULL; in qgroup_rescan_leaf() local 3263 &roots, false); in qgroup_rescan_leaf() 3268 num_bytes, NULL, roots); in qgroup_rescan_leaf()
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/ |
| H A D | jquery.treetable.js | 250 this.roots = []; property in anonymousFunction75f42a160100.Tree.Tree 298 this.roots.push(node); 355 _ref = this.roots;
|
| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | biquads.c | 147 double const * roots, size_t num_roots, double * poly) in make_poly_from_roots() argument 151 poly[1] = -roots[0]; in make_poly_from_roots() 155 poly[j] -= poly[j - 1] * roots[i]; in make_poly_from_roots()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-extended/python-blivet/ |
| H A D | python3-blivet_3.4.3.bb | 11 file://0004-fix-new.roots-object-is-not-iterable.patch \
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | btrfs.rst | 19 * Subvolumes (separate internal filesystem roots)
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libtool/libtool/ |
| H A D | 0001-ltmain.in-Handle-trailing-slashes-on-install-command.patch | 6 libtool --mode=install /usr/bin/install -c gck-roots-store-standalone.la '/image/usr/lib/gnome-keyr…
|
| /OK3568_Linux_fs/external/recovery/ |
| H A D | Makefile | 12 roots.o \
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/go/go-1.18/ |
| H A D | 0003-allow-GOTOOLDIR-to-be-overridden-in-the-environment.patch | 6 to allow for split host/target build roots
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/device-mapper/ |
| H A D | verity.rst | 108 Number of generator roots. This equals to the number of parity bytes in 109 the encoding data. For example, in RS(M, N) encoding, the number of roots
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/ |
| H A D | core.hpp | 1903 CV_EXPORTS_W int solveCubic(InputArray coeffs, OutputArray roots); 1913 CV_EXPORTS_W double solvePoly(InputArray coeffs, OutputArray roots, int maxIters = 300);
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/ |
| H A D | core.hpp | 1903 CV_EXPORTS_W int solveCubic(InputArray coeffs, OutputArray roots); 1913 CV_EXPORTS_W double solvePoly(InputArray coeffs, OutputArray roots, int maxIters = 300);
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/ |
| H A D | core.hpp | 1903 CV_EXPORTS_W int solveCubic(InputArray coeffs, OutputArray roots); 1913 CV_EXPORTS_W double solvePoly(InputArray coeffs, OutputArray roots, int maxIters = 300);
|