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

/osnet-11/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);
/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A Dloopback.c195 grub_size_t amount = pos - file->size;
196 grub_memset (buf + (size << GRUB_DISK_SECTOR_BITS) - amount, 0, amount);
194 grub_size_t amount = pos - file->size; local
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dargp-fmtstream.c354 __argp_fmtstream_ensure (struct argp_fmtstream *fs, size_t amount)
356 if ((size_t) (fs->end - fs->p) < amount)
382 if ((size_t) (fs->end - fs->buf) < amount)
386 size_t new_size = old_size + amount;
351 __argp_fmtstream_ensure(struct argp_fmtstream *fs, size_t amount) argument
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1buf.c383 asn1buf_ensure_space(asn1buf *buf, const unsigned int amount) argument
386 if (avail >= amount)
388 return asn1buf_expand(buf, amount-avail);
/osnet-11/usr/src/grub/grub2/grub-core/net/
H A Dnet.c1393 grub_size_t amount, total = 0; local
1402 amount = nb->tail - nb->data;
1403 grub_file_progress_hook(file, amount, 0);
1404 if (amount > len)
1405 amount = len;
1406 len -= amount;
1407 total += amount;
1408 file->device->net->offset += amount;
1411 grub_memcpy (ptr, nb->data, amount);
1412 ptr += amount;
[all...]

Completed in 27 milliseconds