Lines Matching defs:bufs
255 * @bufs: pointer to an array of buffers
259 ice_update_pkg_no_lock(struct ice_hw *hw, struct ice_buf *bufs, u32 count)
265 struct ice_buf_hdr *bh = (struct ice_buf_hdr *)(bufs + i);
285 * @bufs: pointer to an array of buffers
291 ice_update_pkg(struct ice_hw *hw, struct ice_buf *bufs, u32 count)
299 status = ice_update_pkg_no_lock(hw, bufs, count);
367 * @bufs: pointer to an array of buffers
377 ice_dwnld_cfg_bufs_no_lock(struct ice_hw *hw, struct ice_buf *bufs, u32 start,
385 if (!bufs || !count)
392 bh = (struct ice_buf_hdr *)(bufs + start);
400 bh = (struct ice_buf_hdr *)(bufs + start + i);
537 struct ice_buf_table *bufs;
546 bufs = ice_find_buf_table(seg);
547 buf_count = LE32_TO_CPU(bufs->buf_count);
552 state = ice_dwnld_cfg_bufs_no_lock(hw, bufs->buf_array, start, count,
700 * @bufs: pointer to an array of buffers
707 ice_dwnld_cfg_bufs(struct ice_hw *hw, struct ice_buf *bufs, u32 count)
713 if (!bufs || !count)
720 bh = (struct ice_buf_hdr *)bufs;
731 state = ice_dwnld_cfg_bufs_no_lock(hw, bufs, 0, count, true);