Searched refs:num_dsts (Results 1 – 5 of 5) sorted by relevance
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_conv.c | 449 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 …]
|
D | lp_bld_pack.c | 236 unsigned num_dsts) in lp_build_concat_n() argument 238 int size = num_srcs / num_dsts; in lp_build_concat_n() 241 assert(num_srcs >= num_dsts); in lp_build_concat_n() 244 if (num_srcs == num_dsts) { in lp_build_concat_n() 245 for (i = 0; i < num_dsts; ++i) { in lp_build_concat_n() 251 for (i = 0; i < num_dsts; ++i) { in lp_build_concat_n() 483 LLVMValueRef *dst, unsigned num_dsts) in lp_build_unpack() argument 492 assert(src_type.length == dst_type.length * num_dsts); in lp_build_unpack() 513 assert(num_tmps == num_dsts); in lp_build_unpack() 851 LLVMValueRef *dst, unsigned num_dsts) in lp_build_resize() argument [all …]
|
D | lp_bld_pack.h | 89 LLVMValueRef *dst, unsigned num_dsts); 109 unsigned num_dsts); 149 LLVMValueRef *dst, unsigned num_dsts);
|
D | lp_bld_conv.h | 71 LLVMValueRef *dsts, unsigned num_dsts); 88 LLVMValueRef *dst, unsigned num_dsts);
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_test_conv.c | 102 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 …]
|