Searched refs:current_size (Results 1 – 4 of 4) sorted by relevance
/illumos-gate/usr/src/cmd/ndmpd/tlm/ |
H A D | tlm_lib.c | 168 int current_size; in tlm_get_read_buffer() local 180 current_size = buffer->tb_buffer_size - buffer->tb_buffer_spot; in tlm_get_read_buffer() 181 if (buffer->tb_full && current_size <= 0) { in tlm_get_read_buffer() 194 current_size = buffer->tb_buffer_size - buffer->tb_buffer_spot; in tlm_get_read_buffer() 212 current_size = buffer->tb_buffer_size - buffer->tb_buffer_spot; in tlm_get_read_buffer() 216 if (current_size <= 0) in tlm_get_read_buffer() 219 current_size = min(want, current_size); in tlm_get_read_buffer() 221 buffer->tb_buffer_spot += current_size; in tlm_get_read_buffer() 222 *actual_size = current_size; in tlm_get_read_buffer() 244 int current_size; in tlm_unget_read_buffer() local [all …]
|
/illumos-gate/usr/src/cmd/fs.d/ufs/ncheck/ |
H A D | ncheck.c | 136 uchar_t *extend_tbl(uchar_t *tbl, unsigned int *current_size, 676 extend_tbl(uchar_t *tbl, unsigned int *current_size, unsigned int new_size) in extend_tbl() argument 685 if (tbl && (*current_size < new_size)) { in extend_tbl() 695 *current_size = new_size; in extend_tbl()
|
/illumos-gate/usr/src/lib/libbsm/common/ |
H A D | adt_token.c | 1107 adt_adjust_address(void *current_address, size_t current_size, in adt_adjust_address() argument 1113 adjustment = (size_t)current_address + current_size; in adt_adjust_address()
|
/illumos-gate/usr/src/common/nvpair/ |
H A D | nvpair.c | 424 uint32_t current_size = priv->nvp_nbuckets; in nvt_grow() local 426 ASSERT3U(UINT32_MAX >> 1, >=, current_size); in nvt_grow() 427 return (nvt_resize(priv, current_size << 1)); in nvt_grow() 452 uint32_t current_size = priv->nvp_nbuckets; in nvt_shrink() local 454 ASSERT3U(current_size, >=, nvlist_hashtable_init_size); in nvt_shrink() 455 return (nvt_resize(priv, current_size >> 1)); in nvt_shrink()
|