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

/illumos-gate/usr/src/lib/libc/port/stdio/
H A D__extensions.c100 * Return the amount of output pending on a stream (in bytes).
105 size_t amount; local
109 amount = stream->_ptr - stream->_base;
111 return (amount);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1buf.c355 asn1_error_code asn1buf_ensure_space(asn1buf *buf, const unsigned int amount) argument
358 if(avail < amount){
359 asn1_error_code retval = asn1buf_expand(buf, amount-avail);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/tftp/
H A Dtftp.c120 off_t amount = 0; local
225 amount += size;
233 if (amount > 0)
234 printstats("Sent", amount);
247 unsigned long amount = 0; local
374 amount += size;
403 if (amount > 0)
404 printstats("Received", amount);
725 printstats(char *direction, off_t amount) argument
732 " seconds", direction, amount, tenth
[all...]
/illumos-gate/usr/src/uts/common/fs/doorfs/
H A Ddoor_sys.c72 * The maximum amount of data (in bytes) that will be transferred using
79 * Maximum amount of data that will be transferred in a reply to a
1096 uintptr_t start, end, offset, amount; local
1104 amount = end - start;
1106 ASSERT(amount > 0 && amount <= count && amount <= pgsize);
1108 if (copyout_nowatch(kbase + offset, (void *)start, amount))
1110 count -= amount;
2349 int amount; local
2496 size_t amount; local
2807 uint_t amount; local
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/targets/
H A Dst.c12633 * the read and write error thresholds based on the amount of
13390 * command fails, or if the amount of Request Sense data is not enough, then
15756 * and then space forward this amount
15765 * add 1, rewind, space forward this amount,
18514 int amount = SAS_TLR_MOD_LEN; local
18520 ret = st_gen_mode_sense(un, ubf, 0x18, mode_data, amount);
18526 if (mode_data->data_len != amount + 1) {
18527 amount = mode_data->data_len + 1;
18544 ret = st_gen_mode_select(un, ubf, mode_data, amount);
18556 (char *)mode_data, amount);
[all...]

Completed in 105 milliseconds