Home
last modified time | relevance | path

Searched refs:tmp_size (Results 1 – 7 of 7) sorted by relevance

/freebsd-14-stable/usr.sbin/bsnmpd/modules/snmp_hostres/
HDhostres_storage_tbl.c315 uint64_t tmp_size; in storage_OS_get_memstat() local
349 if ((tmp_size = memstat_get_size(mt_item)) == 0) in storage_OS_get_memstat()
350 tmp_size = memstat_get_sizemask(mt_item); in storage_OS_get_memstat()
352 (tmp_size > INT_MAX ? INT_MAX : (int32_t)tmp_size); in storage_OS_get_memstat()
354 tmp_size = memstat_get_countlimit(mt_item); in storage_OS_get_memstat()
356 (tmp_size > INT_MAX ? INT_MAX : (int32_t)tmp_size); in storage_OS_get_memstat()
358 tmp_size = memstat_get_count(mt_item); in storage_OS_get_memstat()
360 (tmp_size > INT_MAX ? INT_MAX : (int32_t)tmp_size); in storage_OS_get_memstat()
362 tmp_size = memstat_get_failures(mt_item); in storage_OS_get_memstat()
364 (tmp_size > INT_MAX ? INT_MAX : (int32_t)tmp_size); in storage_OS_get_memstat()
/freebsd-14-stable/sys/dev/cxgbe/cudbg/
HDcudbg_flash_utils.c163 u32 tmp_size; in cudbg_write_flash() local
222 tmp_size = sec_data_size - sec_data_offset; in cudbg_write_flash()
224 tmp_size = cur_entity_size; in cudbg_write_flash()
232 tmp_size); in cudbg_write_flash()
239 cur_entity_size -= tmp_size; in cudbg_write_flash()
241 start_offset += tmp_size; in cudbg_write_flash()
337 u32 tmp_size; in cudbg_read_flash() local
440 tmp_size = CUDBG_SF_SECTOR_SIZE - in cudbg_read_flash()
443 tmp_size = size; in cudbg_read_flash()
454 tmp_size, 0); in cudbg_read_flash()
[all …]
/freebsd-14-stable/sys/dev/drm2/ttm/
HDttm_memory.c459 size_t tmp_size = 4; in ttm_round_pot() local
461 while (tmp_size < size) in ttm_round_pot()
462 tmp_size <<= 1; in ttm_round_pot()
464 return tmp_size; in ttm_round_pot()
/freebsd-14-stable/crypto/openssl/test/
HDendecoder_legacy_test.c447 size_t tmp_size; in test_DER() local
475 tmp_size = der_provided_len, in test_DER()
477 &tmp_size))) in test_DER()
/freebsd-14-stable/sys/contrib/openzfs/tests/zfs-tests/cmd/
HDdraid.c69 int tmp_size, error; in read_map() local
103 tmp_size = 2 * buf_size; in read_map()
104 tmp_buf = malloc(tmp_size); in read_map()
114 buf_size = tmp_size; in read_map()
/freebsd-14-stable/sys/dev/bnxt/bnxt_re/
HDqplib_res.c105 int sg_indx, pg_indx, tmp_size, offset; in __fill_user_dma_pages() local
122 tmp_size = tmp_sg[sg_indx].size; in __fill_user_dma_pages()
124 while (tmp_size > 0) { in __fill_user_dma_pages()
132 tmp_size -= sginfo->pgsize; in __fill_user_dma_pages()
/freebsd-14-stable/sys/dev/sfxge/
HDsfxge_rx.c844 uint16_t tmp_size; in sfxge_rx_qcomplete() local
849 &tmp_size); in sfxge_rx_qcomplete()
851 rx_desc->size = (int)tmp_size + sc->rx_prefix_size; in sfxge_rx_qcomplete()