Lines Matching defs:offset
420 uint32_t x1 = render_area->offset.x;
421 uint32_t y1 = render_area->offset.y;
1922 VkDeviceSize offset,
1956 assert(buf->size >= offset);
1958 cmd->state.index_va = buf->iova + offset;
1959 cmd->state.max_index_count = (buf->size - offset) >> index_shift;
1999 uint32_t offset = pDynamicOffsets[dyn_idx];
2007 va += offset;
2017 va += offset;
2211 /* BUFFER_BASE is 32-byte aligned, add remaining offset to BUFFER_OFFSET */
2212 uint32_t offset = iova & 0x1f;
2217 tu_cs_emit(cs, size + offset);
2219 cmd->state.streamout_offset[idx] = offset;
2241 /* TODO: only update offset for active buffers */
2247 uint32_t offset = cmd->state.streamout_offset[idx];
2261 if (offset) {
2266 tu_cs_emit(cs, offset);
2299 uint32_t offset = cmd->state.streamout_offset[idx];
2316 if (offset) {
2321 tu_cs_emit(cs, -offset);
2339 uint32_t offset,
2344 memcpy((void*) cmd->push_constants + offset, pValues, size);
4132 unsigned offset = link->push_consts.lo;
4136 tu_cs_emit(cs, CP_LOAD_STATE6_0_DST_OFF(offset / 4) |
4144 tu_cs_emit(cs, push_constants[i + offset]);
4157 unsigned offset = pipeline->shared_consts.lo;
4163 tu_cs_emit(cs, CP_LOAD_STATE6_0_DST_OFF(offset) |
4172 tu_cs_emit(cs, push_constants[i + offset]);
4653 uint32_t offset = vs_params_offset(cmd);
4656 VkResult result = tu_cs_begin_sub_stream(&cmd->sub_cs, 3 + (offset ? 8 : 0), &cs);
4666 if (offset) {
4668 tu_cs_emit(&cs, CP_LOAD_STATE6_0_DST_OFF(offset) |
4686 cmd->state.vs_params = (struct tu_draw_state) {entry.bo->iova + entry.offset, entry.size / 4};
4752 VkDeviceSize offset,
4772 tu_cs_emit_qw(cs, buf->iova + offset);
4779 VkDeviceSize offset,
4801 tu_cs_emit_qw(cs, buf->iova + offset);
4808 VkDeviceSize offset,
4835 tu_cs_emit_qw(cs, buf->iova + offset);
4843 VkDeviceSize offset,
4867 tu_cs_emit_qw(cs, buf->iova + offset);
4912 * A starting offset for the grid. If unaligned is set, the offset
4937 uint32_t offset = const_state->offsets.driver_param;
4941 if (link->constlen <= offset)
4945 (link->constlen - offset) * 4);
4963 tu_cs_emit(cs, CP_LOAD_STATE6_0_DST_OFF(offset) |
4975 tu_cs_emit(cs, CP_LOAD_STATE6_0_DST_OFF(offset) |
4999 tu_cs_emit(cs, CP_LOAD_STATE6_0_DST_OFF(offset) |
5012 tu_cs_emit(cs, CP_LOAD_STATE6_0_DST_OFF(offset + (IR3_DP_BASE_GROUP_X / 4)) |
5142 VkDeviceSize offset)
5149 info.indirect_offset = offset;
5448 uint64_t iova = buf->iova + pConditionalRenderingBegin->offset;