Searched refs:intsz (Results 1 – 5 of 5) sorted by relevance
| /freebsd/usr.sbin/makefs/zfs/ |
| H A D | zap.c | 55 size_t intsz; /* array element size; 1, 2, 4 or 8 */ member 75 howmany(ent->intsz * ent->intcnt, ZAP_LEAF_ARRAY_BYTES)); in zap_entry_chunks() 131 zap_add(zfs_zap_t *zap, const char *name, size_t intsz, size_t intcnt, in zap_add() argument 136 assert(intsz == 1 || intsz == 2 || intsz == 4 || intsz == 8); in zap_add() 138 assert(intcnt <= ZAP_MAXVALUELEN && intcnt * intsz <= ZAP_MAXVALUELEN); in zap_add() 143 ent->intsz = intsz; in zap_add() 145 if (intsz == sizeof(uint64_t) && intcnt == 1) { in zap_add() 152 ent->valp = ecalloc(intcnt, intsz); in zap_add() 154 memcpy(ent->valp, val, intcnt * intsz); in zap_add() 159 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 | 49 dodefault(zfs_prop_t prop, int intsz, int numints, void *buf) in dodefault() argument 61 if (intsz != 1) in dodefault() 66 if (intsz != 8 || numints < 1) in dodefault() 88 int intsz, int numints, void *buf, char *setpoint, boolean_t snapshot) in dsl_prop_get_dd() argument 126 iuvstr, intsz, numints, buf); in dsl_prop_get_dd() 138 propname, intsz, numints, buf); in dsl_prop_get_dd() 157 recvdstr, intsz, numints, buf); in dsl_prop_get_dd() 182 err = dodefault(prop, intsz, numints, buf); in dsl_prop_get_dd() 193 int intsz, int numints, void *buf, char *setpoint) in dsl_prop_get_ds() argument 210 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 | 83 int intsz, int numints, void *buf, char *setpoint); 89 int intsz, int numints, void *buf, char *setpoint); 93 int intsz, int numints, void *buf, char *setpoint, 101 zprop_source_t source, int intsz, int numints, const void *value,
|
| /freebsd/contrib/mandoc/ |
| H A D | out.c | 503 size_t intsz; /* Width of the integer part in basic units. */ in tblcalc_number() 544 intsz = 0; in tblcalc_number() 548 intsz += (*tbl->slen)(buf, tbl->arg); in tblcalc_number() 557 if (intsz > col->decimal) { 558 col->nwidth += intsz - col->decimal; 559 col->decimal = intsz; 561 totsz += col->decimal - intsz; 482 size_t intsz, totsz; tblcalc_number() local
|
| H A D | tbl_term.c | 908 size_t intsz; /* Of the integer part. */ in tbl_number() 938 intsz = 0; in tbl_word() 942 intsz += term_strlen(tp, buf); in tbl_word() 950 if (col->decimal > intsz && col->width > totsz) { in tbl_word() 951 pad = col->decimal - intsz; in tbl_word() 862 size_t intsz, padl, totsz; tbl_number() local
|