Searched refs:intsz (Results 1 – 5 of 5) sorted by relevance
/freebsd/usr.sbin/makefs/zfs/ |
H A D | zap.c | 54 size_t intsz; /* array element size; 1, 2, 4 or 8 */ member 74 howmany(ent->intsz * ent->intcnt, ZAP_LEAF_ARRAY_BYTES)); in zap_entry_chunks() 130 zap_add(zfs_zap_t *zap, const char *name, size_t intsz, size_t intcnt, in zap_add() argument 135 assert(intsz == 1 || intsz == 2 || intsz == 4 || intsz == 8); in zap_add() 137 assert(intcnt <= ZAP_MAXVALUELEN && intcnt * intsz <= ZAP_MAXVALUELEN); in zap_add() 142 ent->intsz = intsz; in zap_add() 144 if (intsz == sizeof(uint64_t) && intcnt == 1) { in zap_add() 151 ent->valp = ecalloc(intcnt, intsz); in zap_add() 153 memcpy(ent->valp, val, intcnt * intsz); in zap_add() 158 if (zap->micro && (intcnt != 1 || intsz != sizeof(uint64_t) || in zap_add() [all …]
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | dsl_prop.c | 48 dodefault(zfs_prop_t prop, int intsz, int numints, void *buf) in dodefault() argument 60 if (intsz != 1) in dodefault() 65 if (intsz != 8 || numints < 1) in dodefault() 87 int intsz, int numints, void *buf, char *setpoint, boolean_t snapshot) in dsl_prop_get_dd() argument 125 iuvstr, intsz, numints, buf); in dsl_prop_get_dd() 137 propname, intsz, numints, buf); in dsl_prop_get_dd() 156 recvdstr, intsz, numints, buf); in dsl_prop_get_dd() 181 err = dodefault(prop, intsz, numints, buf); in dsl_prop_get_dd() 192 int intsz, int numints, void *buf, char *setpoint) in dsl_prop_get_ds() argument 209 err = zap_lookup(mos, zapobj, propname, intsz, numints, buf); in dsl_prop_get_ds() [all …]
|
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | dsl_prop.h | 82 int intsz, int numints, void *buf, char *setpoint); 88 int intsz, int numints, void *buf, char *setpoint); 92 int intsz, int numints, void *buf, char *setpoint, 100 zprop_source_t source, int intsz, int numints, const void *value,
|
/freebsd/contrib/mandoc/ |
H A D | out.c | 490 size_t intsz, totsz; in tblcalc_number() local 531 intsz = 0; in tblcalc_number() 535 intsz += (*tbl->slen)(buf, tbl->arg); in tblcalc_number() 544 if (intsz > col->decimal) { in tblcalc_number() 545 col->nwidth += intsz - col->decimal; in tblcalc_number() 546 col->decimal = intsz; in tblcalc_number() 548 totsz += col->decimal - intsz; in tblcalc_number()
|
H A D | tbl_term.c | 862 size_t intsz, padl, totsz; in tbl_number() local 891 intsz = 0; in tbl_number() 895 intsz += term_strlen(tp, buf); in tbl_number() 903 if (col->decimal > intsz && col->width > totsz) { in tbl_number() 904 padl = col->decimal - intsz; in tbl_number()
|