HomeSort by relevance Sort by last modified time
    Searched refs:num_dsts (Results 1 - 5 of 5) sorted by null

  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.h 68 LLVMValueRef *dsts, unsigned num_dsts);
75 LLVMValueRef *dst, unsigned num_dsts);
lp_bld_pack.h 76 LLVMValueRef *dst, unsigned num_dsts);
119 LLVMValueRef *dst, unsigned num_dsts);
lp_bld_conv.c 47 * 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;
    [all...]
lp_bld_pack.c 328 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);
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_conv.c 102 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; ++j)
    [all...]

Completed in 615 milliseconds