Home
last modified time | relevance | path

Searched refs:_size (Results 1 – 15 of 15) sorted by relevance

/f-stack/freebsd/sys/
H A Dbitstring.h287 if (_start + _size > _nbits || _nbits <= 0) { in bit_ffs_area_at()
292 _logsize = fls(_size - 1); in bit_ffs_area_at()
301 if (_offset + _size < (int)_BITSTR_BITS && in bit_ffs_area_at()
307 _test |= _test >> (((_size - 1) >> _b) + 1) / 2; in bit_ffs_area_at()
314 if (_value + _size > _nbits) { in bit_ffs_area_at()
319 if (_offset + _size <= (int)_BITSTR_BITS) in bit_ffs_area_at()
334 if (_start + _size > _nbits || _nbits <= 0) { in bit_ffc_area_at()
339 _logsize = fls(_size - 1); in bit_ffc_area_at()
348 if (_offset + _size < (int)_BITSTR_BITS && in bit_ffc_area_at()
361 if (_value + _size > _nbits) { in bit_ffc_area_at()
[all …]
H A Dmalloc.h231 size_t _size = (size); \
234 _malloc_item = malloc(_size, type, (flags) &~ M_ZERO); \
237 bzero(_malloc_item, _size); \
239 _malloc_item = malloc(_size, type, flags); \
H A Dacl.h367 ssize_t acl_copy_ext(void *_buf_p, acl_t _acl, ssize_t _size);
/f-stack/freebsd/contrib/dpdk_rte_lpm/
H A Drte_shim.h4 #define rte_malloc(_type, _size, _align) malloc(_size, M_TEMP, M_NOWAIT) argument
6 #define rte_zmalloc(_type, _size, _align) malloc(_size, M_TEMP, M_NOWAIT | M_ZERO) argument
7 #define rte_zmalloc_socket(_type, _size, _align, _s) malloc(_size, M_TEMP, M_NOWAIT | M_ZERO) argument
/f-stack/freebsd/arm/include/
H A Dplatformvar.h93 #define FDT_PLATFORM_DEF2(NAME, VAR_NAME, NAME_STR, _size, _compatible, \ argument
106 .size = _size, \
/f-stack/dpdk/drivers/common/sfc_efx/
H A Defsys.h246 #define EFSYS_MEM_ZERO(_esmp, _size) \ argument
248 (void)memset((void *)(_esmp)->esm_base, 0, (_size)); \
615 #define EFSYS_DMA_SYNC_FOR_KERNEL(_esmp, _offset, _size) ((void)0) argument
618 #define EFSYS_DMA_SYNC_FOR_DEVICE(_esmp, _offset, _size) rte_wmb() argument
633 #define EFSYS_KMEM_ALLOC(_esip, _size, _p) \ argument
636 (_p) = rte_zmalloc("sfc", (_size), 0); \
640 #define EFSYS_KMEM_FREE(_esip, _size, _p) \ argument
643 (void)(_size); \
/f-stack/freebsd/contrib/zstd/lib/common/
H A Dcompiler.h144 size_t const _size = (size_t)(s); \
146 for (_pos=0; _pos<_size; _pos+=CACHELINE_SIZE) { \
/f-stack/freebsd/net80211/
H A Dieee80211_regdomain.c190 #define swap(_a, _b, _size) { \ argument
192 int i = _size; \
198 _a -= _size; \
/f-stack/freebsd/netgraph/bluetooth/l2cap/
H A Dng_l2cap_cmds.h344 #define _ng_l2cap_echo_req(_m, _ident, _data, _size) \ argument
360 m_copyback((_m), sizeof(*c), (_size), (_data)); \
361 c->length += (_size); \
/f-stack/dpdk/drivers/net/bnx2x/
H A Decore_sp.h128 #define ECORE_ZALLOC(_size, _flags, _sc) \ argument
129 rte_zmalloc("", _size, RTE_CACHE_LINE_SIZE)
131 #define ECORE_CALLOC(_len, _size, _flags, _sc) \ argument
132 rte_calloc("", _len, _size, RTE_CACHE_LINE_SIZE)
134 #define ECORE_FREE(_s, _buf, _size) \ argument
/f-stack/dpdk/app/test/
H A Dtest_link_bonding_rssconf.c111 #define FOR_EACH(_i, _item, _array, _size) \ argument
112 for (_i = 0, _item = &_array[0]; _i < _size && (_item = &_array[_i]); _i++)
H A Dtest_link_bonding_mode4.c122 #define FOR_EACH(_i, _item, _array, _size) \ argument
123 for (_i = 0, _item = &_array[0]; _i < _size && (_item = &_array[_i]); _i++)
/f-stack/dpdk/drivers/net/cxgbe/base/
H A Dadapter.h800 #define t4_os_alloc(_size) t4_alloc_mem((_size)) argument
/f-stack/dpdk/drivers/common/sfc_efx/base/
H A Defx_tx.c786 #define EFX_TX_DESC(_etp, _addr, _size, _eop, _added) \ argument
797 size_t, (_size), boolean_t, (_eop)); \
801 FSF_AZ_TX_KER_BYTE_COUNT, (uint32_t)(_size), \
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.c1284 size_t const _size = (size_t)(s); \
1286 for (_pos=0; _pos<_size; _pos+=CACHELINE_SIZE) { \