Lines Matching defs:count
133 const int32_t count = va_arg(ap, int32_t);
134 /* count[4] data[count] */
135 return max_t(size_t, hdr + 4 + count, err_size);
142 const int32_t count = va_arg(ap, int32_t);
143 /* fid[4] offset[8] count[4] data[count] */
144 return hdr + 4 + 8 + 4 + count;
251 * T - array of strings (int16_t count, followed by strings)
252 * R - array of qids (int16_t count, followed by qids)
380 uint32_t *count = va_arg(ap, uint32_t *);
384 p9pdu_readf(pdu, proto_version, "d", count);
386 *count =
387 min_t(uint32_t, *count,
609 uint32_t count = va_arg(ap, uint32_t);
613 count);
614 if (!errcode && pdu_write_u(pdu, from, count))