Searched refs:num_dsts (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_conv.h68 LLVMValueRef *dsts, unsigned num_dsts);
75 LLVMValueRef *dst, unsigned num_dsts);
H A Dlp_bld_pack.h76 LLVMValueRef *dst, unsigned num_dsts);
119 LLVMValueRef *dst, unsigned num_dsts);
H A Dlp_bld_conv.c47 * src_type.length * num_srcs == dst_type.length * num_dsts
357 LLVMValueRef *dst, unsigned num_dsts)
366 assert(src_type.length * num_srcs == dst_type.length * num_dsts);
371 assert(num_dsts <= LP_MAX_VECTOR_LENGTH);
397 4 * num_dsts == num_srcs &&
419 for (i = 0; i < num_dsts; ++i, src += 4) {
452 2 * num_dsts == num_srcs &&
474 for (i = 0; i < num_dsts; ++i, src += 2) {
628 lp_build_resize(gallivm, tmp_type, new_type, tmp, num_srcs, tmp, num_dsts);
631 num_tmps = num_dsts;
353 lp_build_conv(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, const LLVMValueRef *src, unsigned num_srcs, LLVMValueRef *dst, unsigned num_dsts) argument
720 lp_build_conv_mask(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, const LLVMValueRef *src, unsigned num_srcs, LLVMValueRef *dst, unsigned num_dsts) argument
[all...]
H A Dlp_bld_pack.c328 LLVMValueRef *dst, unsigned num_dsts)
337 assert(src_type.length == dst_type.length * num_dsts);
357 assert(num_tmps == num_dsts);
607 LLVMValueRef *dst, unsigned num_dsts)
627 assert(src_type.length * num_srcs == dst_type.length * num_dsts);
630 assert(num_srcs == 1 || num_dsts == 1);
635 assert(num_dsts <= LP_MAX_VECTOR_LENGTH);
642 assert(num_dsts == 1);
700 lp_build_unpack(gallivm, src_type, dst_type, src[0], tmp, num_dsts);
706 assert(src_type.length * num_srcs == dst_type.length * num_dsts);
324 lp_build_unpack(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, LLVMValueRef src, LLVMValueRef *dst, unsigned num_dsts) argument
603 lp_build_resize(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, const LLVMValueRef *src, unsigned num_srcs, LLVMValueRef *dst, unsigned num_dsts) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_conv.h68 LLVMValueRef *dsts, unsigned num_dsts);
75 LLVMValueRef *dst, unsigned num_dsts);
H A Dlp_bld_pack.h76 LLVMValueRef *dst, unsigned num_dsts);
119 LLVMValueRef *dst, unsigned num_dsts);
H A Dlp_bld_conv.c47 * src_type.length * num_srcs == dst_type.length * num_dsts
357 LLVMValueRef *dst, unsigned num_dsts)
366 assert(src_type.length * num_srcs == dst_type.length * num_dsts);
371 assert(num_dsts <= LP_MAX_VECTOR_LENGTH);
397 4 * num_dsts == num_srcs &&
419 for (i = 0; i < num_dsts; ++i, src += 4) {
452 2 * num_dsts == num_srcs &&
474 for (i = 0; i < num_dsts; ++i, src += 2) {
628 lp_build_resize(gallivm, tmp_type, new_type, tmp, num_srcs, tmp, num_dsts);
631 num_tmps = num_dsts;
353 lp_build_conv(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, const LLVMValueRef *src, unsigned num_srcs, LLVMValueRef *dst, unsigned num_dsts) argument
720 lp_build_conv_mask(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, const LLVMValueRef *src, unsigned num_srcs, LLVMValueRef *dst, unsigned num_dsts) argument
[all...]
H A Dlp_bld_pack.c328 LLVMValueRef *dst, unsigned num_dsts)
337 assert(src_type.length == dst_type.length * num_dsts);
357 assert(num_tmps == num_dsts);
607 LLVMValueRef *dst, unsigned num_dsts)
627 assert(src_type.length * num_srcs == dst_type.length * num_dsts);
630 assert(num_srcs == 1 || num_dsts == 1);
635 assert(num_dsts <= LP_MAX_VECTOR_LENGTH);
642 assert(num_dsts == 1);
700 lp_build_unpack(gallivm, src_type, dst_type, src[0], tmp, num_dsts);
706 assert(src_type.length * num_srcs == dst_type.length * num_dsts);
324 lp_build_unpack(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, LLVMValueRef src, LLVMValueRef *dst, unsigned num_dsts) argument
603 lp_build_resize(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, const LLVMValueRef *src, unsigned num_srcs, LLVMValueRef *dst, unsigned num_dsts) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_test_conv.c102 struct lp_type dst_type, unsigned num_dsts)
135 lp_build_conv(gallivm, src_type, dst_type, src, num_srcs, dst, num_dsts);
137 for(i = 0; i < num_dsts; ++i) {
166 unsigned num_dsts; local
198 num_dsts = src_type.length/dst_type.length;
201 num_dsts = 1;
205 num_dsts = 1;
210 assert(src_type.length * num_srcs == dst_type.length * num_dsts);
216 func = add_conv_test(gallivm, src_type, num_srcs, dst_type, num_dsts);
238 for(j = 0; j < num_dsts;
100 add_conv_test(struct gallivm_state *gallivm, struct lp_type src_type, unsigned num_srcs, struct lp_type dst_type, unsigned num_dsts) argument
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_conv.c102 struct lp_type dst_type, unsigned num_dsts)
135 lp_build_conv(gallivm, src_type, dst_type, src, num_srcs, dst, num_dsts);
137 for(i = 0; i < num_dsts; ++i) {
166 unsigned num_dsts; local
198 num_dsts = src_type.length/dst_type.length;
201 num_dsts = 1;
205 num_dsts = 1;
210 assert(src_type.length * num_srcs == dst_type.length * num_dsts);
216 func = add_conv_test(gallivm, src_type, num_srcs, dst_type, num_dsts);
238 for(j = 0; j < num_dsts;
100 add_conv_test(struct gallivm_state *gallivm, struct lp_type src_type, unsigned num_srcs, struct lp_type dst_type, unsigned num_dsts) argument
[all...]

Completed in 247 milliseconds