Home
last modified time | relevance | path

Searched refs:num_dsts (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_conv.c449 int num_dsts = num_srcs; in lp_build_conv_auto() local
457 return num_dsts; in lp_build_conv_auto()
477 num_dsts = (num_srcs + 3) / 4; in lp_build_conv_auto()
480 lp_build_conv(gallivm, src_type, *dst_type, src, num_srcs, dst, num_dsts); in lp_build_conv_auto()
481 return num_dsts; in lp_build_conv_auto()
488 num_dsts = (num_srcs + 1) / 2; in lp_build_conv_auto()
491 lp_build_conv(gallivm, src_type, *dst_type, src, num_srcs, dst, num_dsts); in lp_build_conv_auto()
492 return num_dsts; in lp_build_conv_auto()
498 lp_build_conv(gallivm, src_type, *dst_type, src, num_srcs, dst, num_dsts); in lp_build_conv_auto()
514 num_dsts /= 2; in lp_build_conv_auto()
[all …]
Dlp_bld_pack.c261 unsigned num_dsts) in lp_build_concat_n() argument
263 int size = num_srcs / num_dsts; in lp_build_concat_n()
266 assert(num_srcs >= num_dsts); in lp_build_concat_n()
269 if (num_srcs == num_dsts) { in lp_build_concat_n()
270 for (i = 0; i < num_dsts; ++i) { in lp_build_concat_n()
276 for (i = 0; i < num_dsts; ++i) { in lp_build_concat_n()
519 LLVMValueRef *dst, unsigned num_dsts) in lp_build_unpack() argument
528 assert(src_type.length == dst_type.length * num_dsts); in lp_build_unpack()
549 assert(num_tmps == num_dsts); in lp_build_unpack()
887 LLVMValueRef *dst, unsigned num_dsts) in lp_build_resize() argument
[all …]
Dlp_bld_pack.h89 LLVMValueRef *dst, unsigned num_dsts);
109 unsigned num_dsts);
149 LLVMValueRef *dst, unsigned num_dsts);
Dlp_bld_conv.h71 LLVMValueRef *dsts, unsigned num_dsts);
88 LLVMValueRef *dst, unsigned num_dsts);
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_test_conv.c102 struct lp_type dst_type, unsigned num_dsts) in add_conv_test() argument
135 lp_build_conv(gallivm, src_type, dst_type, src, num_srcs, dst, num_dsts); in add_conv_test()
137 for(i = 0; i < num_dsts; ++i) { in add_conv_test()
167 unsigned num_dsts; in test_one() local
199 num_dsts = src_type.length/dst_type.length; in test_one()
202 num_dsts = 1; in test_one()
206 num_dsts = 1; in test_one()
211 assert(src_type.length * num_srcs == dst_type.length * num_dsts); in test_one()
218 func = add_conv_test(gallivm, src_type, num_srcs, dst_type, num_dsts); in test_one()
242 for(j = 0; j < num_dsts; ++j) { in test_one()
[all …]