Searched refs:_align (Results 1 – 7 of 7) sorted by relevance
/freebsd/sys/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
|
/freebsd/include/arm/ |
H A D | Makefile | 5 INCS= _align.h \
|
/freebsd/sys/dev/ofw/ |
H A D | ofw_if.m | 318 * @param _align Requested alignment 324 u_int _align;
|
/freebsd/sys/dev/sfxge/common/ |
H A D | efx.h | 58 #define EFX_P2ROUNDUP(_type, _value, _align) \ argument 59 (-(-(_type)(_value) & -(_type)(_align))) 62 #define EFX_P2ALIGN(_type, _value, _align) \ argument 63 ((_type)(_value) & -(_type)(_align)) 66 #define EFX_IS_P2ALIGNED(_type, _value, _align) \ argument 67 ((((_type)(_value)) & ((_type)(_align) - 1)) == 0)
|
/freebsd/contrib/elftoolchain/elfcopy/ |
H A D | elfcopy.h | 293 Elf_Type _dtype, uint64_t flags, uint64_t _align, uint64_t _vma,
|
/freebsd/sys/netinet/libalias/ |
H A D | alias_local.h | 299 u_char _align);
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | pci.h | 826 #define pci_pool_create(_name, _pdev, _size, _align, _alloc) \ argument 827 dma_pool_create(_name, &(_pdev)->dev, _size, _align, _alloc)
|