Lines Matching defs:size

359 	/* Max size of RNDV header */
1917 u16 size;
1931 u16 size;
1956 u16 size;
1974 u16 size;
1988 u16 size;
2003 u16 size;
2017 u16 size;
2032 u16 size;
2045 u16 size;
2052 u16 size;
2058 u16 size;
2063 u16 size;
2074 u16 size;
2081 u16 size;
2100 u16 size;
2789 static inline void *rdma_zalloc_obj(struct ib_device *dev, size_t size,
2793 return kzalloc_node(size, gfp, dev->ops.get_numa_node(dev));
2795 return kzalloc(size, gfp);
2843 * to a HW supported page size.
2855 struct ib_device *_ib_alloc_device(size_t size);
2898 * @pgsz: best HW supported page size to use
2929 unsigned long pfn, unsigned long size, pgprot_t prot,
3172 * 1) MADs are variable size up to 2K
3351 * rdma_max_mad_size - Return the max MAD size required by this RDMA Port.
3356 * This MAD size includes the MAD headers and MAD payload. No other headers
3359 * Return the max MAD size required by the Port. Will return 0 if the port
3420 * Return the MTU size supported by the port as an integer value. Will return
3438 * Return the MTU size supported by the port as an integer value.
3912 * Users can examine the cq structure to determine the actual CQ size.
3926 * @cqe: The minimum size of the CQ.
3928 * Users can examine the cq structure to determine the actual CQ size.
4080 * @size: The size of the region in bytes
4084 void *cpu_addr, size_t size,
4089 return dma_map_single(dev->dma_device, cpu_addr, size, direction);
4096 * @size: The size of the region in bytes
4100 u64 addr, size_t size,
4104 dma_unmap_single(dev->dma_device, addr, size, direction);
4112 * @size: The size of the region in bytes
4118 size_t size,
4123 return dma_map_page(dev->dma_device, page, offset, size, direction);
4130 * @size: The size of the region in bytes
4134 u64 addr, size_t size,
4138 dma_unmap_page(dev->dma_device, addr, size, direction);
4225 * ib_dma_max_seg_size - Return the size limit of a single DMA transfer
4228 * The returned value represents a size in bytes.
4241 * @size: The size of the region in bytes
4246 size_t size,
4250 dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
4257 * @size: The size of the region in bytes
4262 size_t size,
4266 dma_sync_single_for_device(dev->dma_device, addr, size, dir);