Lines Matching refs:size

339 	/* Max size of RNDV header */
1878 u16 size;
1892 u16 size;
1917 u16 size;
1935 u16 size;
1949 u16 size;
1964 u16 size;
1978 u16 size;
1993 u16 size;
2006 u16 size;
2013 u16 size;
2019 u16 size;
2024 u16 size;
2035 u16 size;
2042 u16 size;
2061 u16 size;
2763 * to a HW supported page size.
2774 struct ib_device *_ib_alloc_device(size_t size);
2817 * @pgsz: best HW supported page size to use
2848 unsigned long pfn, unsigned long size, pgprot_t prot,
3113 * 1) MADs are variable size up to 2K
3291 * rdma_max_mad_size - Return the max MAD size required by this RDMA Port.
3296 * This MAD size includes the MAD headers and MAD payload. No other headers
3299 * Return the max MAD size required by the Port. Will return 0 if the port
3359 * Return the MTU size supported by the port as an integer value. Will return
3377 * Return the MTU size supported by the port as an integer value.
3826 * Users can examine the cq structure to determine the actual CQ size.
3840 * @cqe: The minimum size of the CQ.
3842 * Users can examine the cq structure to determine the actual CQ size.
3972 * @size: The size of the region in bytes
3976 void *cpu_addr, size_t size,
3981 return dma_map_single(dev->dma_device, cpu_addr, size, direction);
3988 * @size: The size of the region in bytes
3992 u64 addr, size_t size,
3996 dma_unmap_single(dev->dma_device, addr, size, direction);
4004 * @size: The size of the region in bytes
4010 size_t size,
4015 return dma_map_page(dev->dma_device, page, offset, size, direction);
4022 * @size: The size of the region in bytes
4026 u64 addr, size_t size,
4030 dma_unmap_page(dev->dma_device, addr, size, direction);
4084 * ib_dma_max_seg_size - Return the size limit of a single DMA transfer
4087 * The returned value represents a size in bytes.
4100 * @size: The size of the region in bytes
4105 size_t size,
4109 dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
4116 * @size: The size of the region in bytes
4121 size_t size,
4125 dma_sync_single_for_device(dev->dma_device, addr, size, dir);
4131 * @size: The size of the region to allocate in bytes
4136 size_t size,
4140 return dma_alloc_coherent(dev->dma_device, size, dma_handle, flag);
4146 * @size: The size of the region
4151 size_t size, void *cpu_addr,
4154 dma_free_coherent(dev->dma_device, size, cpu_addr, dma_handle);