Lines Matching defs:vdata
1237 /* buffer_store_dword(,x2,x3,x4) <- the suffix is selected by the type of vdata. */
1238 void ac_build_buffer_store_dword(struct ac_llvm_context *ctx, LLVMValueRef rsrc, LLVMValueRef vdata,
1242 unsigned num_channels = ac_get_llvm_num_components(vdata);
1249 v[i] = LLVMBuildExtractElement(ctx->builder, vdata, LLVMConstInt(ctx->i32, i, 0), "");
1261 ac_build_buffer_store_common(ctx, rsrc, ac_to_float(ctx, vdata), vindex, voffset, soffset,
1733 LLVMValueRef vdata, LLVMValueRef voffset, LLVMValueRef soffset,
1736 vdata = LLVMBuildBitCast(ctx->builder, vdata, ctx->i16, "");
1738 ac_build_buffer_store_common(ctx, rsrc, vdata, NULL, voffset, soffset, cache_policy, false);
1741 void ac_build_buffer_store_byte(struct ac_llvm_context *ctx, LLVMValueRef rsrc, LLVMValueRef vdata,
1744 vdata = LLVMBuildBitCast(ctx->builder, vdata, ctx->i8, "");
1746 ac_build_buffer_store_common(ctx, rsrc, vdata, NULL, voffset, soffset, cache_policy, false);