Home
last modified time | relevance | path

Searched refs:y_vec (Results 1 – 4 of 4) sorted by relevance

/external/llvm/test/CodeGen/AArch64/
Darm64-neon-v8.1a.ll330 %y_vec = insertelement <4 x i16> undef, i16 %y, i64 0
331 %prod_vec = call <4 x i16> @llvm.aarch64.neon.sqrdmulh.v4i16(<4 x i16> %x_vec, <4 x i16> %y_vec)
344 %y_vec = insertelement <4 x i32> undef, i32 %y, i64 0
345 %prod_vec = call <4 x i32> @llvm.aarch64.neon.sqrdmulh.v4i32(<4 x i32> %x_vec, <4 x i32> %y_vec)
359 %y_vec = insertelement <4 x i16> undef, i16 %y, i64 0
360 %prod_vec = call <4 x i16> @llvm.aarch64.neon.sqrdmulh.v4i16(<4 x i16> %x_vec, <4 x i16> %y_vec)
373 %y_vec = insertelement <4 x i32> undef, i32 %y, i64 0
374 %prod_vec = call <4 x i32> @llvm.aarch64.neon.sqrdmulh.v4i32(<4 x i32> %x_vec, <4 x i32> %y_vec)
408 define i16 @test_sqrdmlah_extract_i16(i16 %acc, i16 %x, <4 x i16> %y_vec) {
410 %shuffle = shufflevector <4 x i16> %y_vec, <4 x i16> undef, <4 x i32> <i32 1,i32 1,i32 1,i32 1>
[all …]
/external/piex/src/binary_parse/
Drange_checked_byte_ptr.cc266 std::vector<unsigned char> y_vec = y.extractBytes(0, num); in memcmp() local
269 return ::memcmp(&x_vec[0], &y_vec[0], num); in memcmp()
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_ppc.c850 int y_vec, w_vec; in emit_lit() local
857 y_vec = get_src_vec(gen, inst, 0, TGSI_CHAN_Y); /* y_vec = src[0].y */ in emit_lit()
858 ppc_vmaxfp(gen->f, y_vec, y_vec, zero_vec); /* y_vec = max(y_vec, 0) */ in emit_lit()
873 ppc_vec_pow(gen->f, pow_vec, y_vec, w_vec); /* pow = pow(y, w) */ in emit_lit()
/external/opencv3/modules/ml/src/
Dsvm.cpp490 y_vec = _y; in Solver()
581 const schar* _y = &y_vec[0]; in get_row_svc()
648 const schar* y = &y_vec[0]; in solve_generic()
811 const schar* y = &y_vec[0]; in select_working_set()
857 const schar* y = &y_vec[0]; in calc_rho()
907 const schar* y = &y_vec[0]; in select_working_set_nu_svm()
966 const schar* y = &y_vec[0]; in calc_rho_nu_svm()
1210 vector<schar> y_vec; member in cv::ml::SVMImpl::Solver