Searched defs:dcols (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libeti/form/common/
H A Dfield.c51 0, /* dcols */
163 f->dcols = cols;
208 f->dcols = field->dcols;
259 f->dcols = field->dcols;
342 if (!f || max && ((onerow && f->dcols > max) ||
349 if (!Opt(f, O_STATIC) && ((!max || onerow && f->dcols < max) ||
362 dynamic_field_info(FIELD *f, int *drows, int *dcols, int *max) argument
366 /* int *dcols; numbe
[all...]
H A Dform.c340 int dcols; local
350 dcols = c->dcols;
353 while (start < dcols) {
354 chunk = MIN(cols, dcols - start);
/illumos-gate/usr/src/lib/libeti/form/inc/
H A Dform.h83 int dcols; /* dynamic cols */ member in struct:fieldnode
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dvdev_raidz.c441 * Divides the IO evenly across all child vdevs; usually, dcols is
446 uint64_t unit_shift, uint64_t dcols, uint64_t nparity)
454 uint64_t f = b % dcols;
456 uint64_t o = (b / dcols) << unit_shift;
463 q = s / (dcols - nparity);
469 r = s - q * (dcols - nparity);
485 scols = MIN(dcols, roundup(bc, nparity + 1));
487 acols = dcols;
488 scols = dcols;
512 if (col >= dcols) {
445 vdev_raidz_map_alloc(caddr_t data, uint64_t size, uint64_t offset, uint64_t unit_shift, uint64_t dcols, uint64_t nparity) argument
[all...]
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dzfssubr.c1171 uint64_t dcols, uint64_t nparity)
1176 uint64_t f = b % dcols;
1177 uint64_t o = (b / dcols) << unit_shift;
1180 q = s / (dcols - nparity);
1181 r = s - q * (dcols - nparity);
1187 scols = MIN(dcols, roundup(bc, nparity + 1));
1189 acols = dcols;
1190 scols = dcols;
1213 if (col >= dcols) {
1214 col -= dcols;
1170 vdev_raidz_map_alloc(void *data, off_t offset, size_t size, uint64_t unit_shift, uint64_t dcols, uint64_t nparity) argument
[all...]

Completed in 493 milliseconds