HomeSort by: relevance | last modified time | path
    Searched defs:ashift (Results 1 - 8 of 8) sorted by relevancy

  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
metaslab.c 65 * MAX(1 << ashift, space_map_blksize), so a metaslab might use the
789 uint64_t ashift = vd->vdev_ashift; local
799 SPACE_MAP_HISTOGRAM_SIZE + ashift);
808 mg_hist[i + ashift] +=
822 uint64_t ashift = mg->mg_vd->vdev_ashift; local
830 mg->mg_histogram[i + ashift] +=
832 mc->mc_histogram[i + ashift] +=
842 uint64_t ashift = mg->mg_vd->vdev_ashift; local
850 ASSERT3U(mg->mg_histogram[i + ashift], >=,
852 ASSERT3U(mc->mc_histogram[i + ashift], >=
    [all...]
vdev_raidz.c 1694 uint64_t ashift = vd->vdev_top->vdev_ashift; local
1698 asize = ((psize - 1) >> ashift) + 1;
1700 asize = roundup(asize, nparity + 1) << ashift;
  /src/external/cddl/osnet/dist/cmd/zdb/
zdb.c 2139 dump_label_uberblocks(vdev_label_t *lbl, uint64_t ashift)
2145 vd.vdev_ashift = ashift;
2168 uint64_t psize, ashift; local
2220 ashift = SPA_MINBLOCKSHIFT;
2228 ZPOOL_CONFIG_ASHIFT, &ashift) != 0))
2229 ashift = SPA_MINBLOCKSHIFT;
2233 dump_label_uberblocks(&label, ashift);
  /src/external/cddl/osnet/dist/cmd/zpool/
zpool_main.c 1337 uint64_t ashift; local
  /src/sys/dev/stbi/
stb_image.c 3416 int rshift=0,gshift=0,bshift=0,ashift=0,rcount=0,gcount=0,bcount=0,acount=0; local
3439 ashift = high_bit(ma)-7; acount = bitcount(mr);
3459 a = (ma ? shiftsigned(v & ma, ashift, acount) : 255);
  /src/external/cddl/osnet/dist/cmd/ztest/
ztest.c 820 make_vdev_file(char *path, char *aux, char *pool, size_t size, uint64_t ashift)
826 if (ashift == 0)
827 ashift = ztest_get_ashift();
858 VERIFY(nvlist_add_uint64(file, ZPOOL_CONFIG_ASHIFT, ashift) == 0);
865 uint64_t ashift, int r)
871 return (make_vdev_file(path, aux, pool, size, ashift));
875 child[c] = make_vdev_file(path, aux, pool, size, ashift);
895 uint64_t ashift, int r, int m)
901 return (make_vdev_raidz(path, aux, pool, size, ashift, r));
906 child[c] = make_vdev_raidz(path, aux, pool, size, ashift, r)
2754 uint64_t ashift = ztest_get_ashift(); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/fortran/
simplify.cc 3819 int ashift, *bits, i, k, bitsize, shift; local
3856 ashift = (shift >= 0 ? shift : -shift);
3858 if (ashift > bitsize)
3888 for (i = bitsize - 1; i >= bitsize - ashift; i--)
3891 for (i = bitsize - 1; i >= bitsize - ashift; i--)
3894 for (i = bitsize - 1; i >= ashift; i--)
3897 mpz_clrbit (result->value.integer, i - ashift);
3899 mpz_setbit (result->value.integer, i - ashift);
3956 int shift, ashift, isize, ssize, delta, k; local
3981 ashift = shift
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
simplify.cc 3767 int ashift, *bits, i, k, bitsize, shift; local
3804 ashift = (shift >= 0 ? shift : -shift);
3806 if (ashift > bitsize)
3836 for (i = bitsize - 1; i >= bitsize - ashift; i--)
3839 for (i = bitsize - 1; i >= bitsize - ashift; i--)
3842 for (i = bitsize - 1; i >= ashift; i--)
3845 mpz_clrbit (result->value.integer, i - ashift);
3847 mpz_setbit (result->value.integer, i - ashift);
3904 int shift, ashift, isize, ssize, delta, k; local
3926 ashift = shift
    [all...]

Completed in 39 milliseconds