Home
last modified time | relevance | path

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

/freebsd-13.1/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_storage_tbl.c317 uint64_t tmp_size; in storage_OS_get_memstat() local
351 if ((tmp_size = memstat_get_size(mt_item)) == 0) in storage_OS_get_memstat()
352 tmp_size = memstat_get_sizemask(mt_item); in storage_OS_get_memstat()
354 (tmp_size > INT_MAX ? INT_MAX : (int32_t)tmp_size); in storage_OS_get_memstat()
356 tmp_size = memstat_get_countlimit(mt_item); in storage_OS_get_memstat()
358 (tmp_size > INT_MAX ? INT_MAX : (int32_t)tmp_size); in storage_OS_get_memstat()
360 tmp_size = memstat_get_count(mt_item); in storage_OS_get_memstat()
362 (tmp_size > INT_MAX ? INT_MAX : (int32_t)tmp_size); in storage_OS_get_memstat()
364 tmp_size = memstat_get_failures(mt_item); in storage_OS_get_memstat()
366 (tmp_size > INT_MAX ? INT_MAX : (int32_t)tmp_size); in storage_OS_get_memstat()
/freebsd-13.1/sys/dev/cxgbe/cudbg/
H A Dcudbg_flash_utils.c165 u32 tmp_size; in cudbg_write_flash() local
226 tmp_size = cur_entity_size; in cudbg_write_flash()
234 tmp_size); in cudbg_write_flash()
241 cur_entity_size -= tmp_size; in cudbg_write_flash()
243 start_offset += tmp_size; in cudbg_write_flash()
339 u32 tmp_size; in cudbg_read_flash() local
442 tmp_size = CUDBG_SF_SECTOR_SIZE - in cudbg_read_flash()
445 tmp_size = size; in cudbg_read_flash()
456 tmp_size, 0); in cudbg_read_flash()
457 data_offset += (tmp_size); in cudbg_read_flash()
[all …]
/freebsd-13.1/sys/dev/drm2/ttm/
H A Dttm_memory.c461 size_t tmp_size = 4; in ttm_round_pot() local
463 while (tmp_size < size) in ttm_round_pot()
464 tmp_size <<= 1; in ttm_round_pot()
466 return tmp_size; in ttm_round_pot()
/freebsd-13.1/sys/contrib/openzfs/tests/zfs-tests/cmd/draid/
H A Ddraid.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-13.1/sys/dev/sfxge/
H A Dsfxge_rx.c846 uint16_t tmp_size; in sfxge_rx_qcomplete() local
850 &tmp_size); in sfxge_rx_qcomplete()
852 rx_desc->size = (int)tmp_size + sc->rx_prefix_size; in sfxge_rx_qcomplete()