Searched refs:_align (Results 1 – 4 of 4) sorted by relevance
| /f-stack/freebsd/contrib/dpdk_rte_lpm/ |
| H A D | rte_shim.h | 4 #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/dpdk/drivers/compress/octeontx/ |
| H A D | otx_zip.h | 65 #define ZIP_ALIGN_ROUNDUP(x, _align) \ argument 66 ((_align) * (((x) + (_align) - 1) / (_align)))
|
| /f-stack/freebsd/netinet/libalias/ |
| H A D | alias_local.h | 322 u_char _proto, u_char _align);
|
| /f-stack/dpdk/drivers/common/sfc_efx/base/ |
| H A D | efx.h | 33 #define EFX_P2ROUNDUP(_type, _value, _align) \ argument 34 (-(-(_type)(_value) & -(_type)(_align))) 37 #define EFX_P2ALIGN(_type, _value, _align) \ argument 38 ((_type)(_value) & -(_type)(_align)) 41 #define EFX_IS_P2ALIGNED(_type, _value, _align) \ argument 42 ((((_type)(_value)) & ((_type)(_align) - 1)) == 0)
|