Searched refs:c_vec (Results 1 – 5 of 5) sorted by relevance
/external/libpng/powerpc/ |
D | filter_vsx_intrinsics.c | 508 vector unsigned short a_vec,b_vec,c_vec,nearest_vec; in png_read_filter_row_paeth4_vsx() local 545 c_vec = vsx_char_to_short(vec_perm(pp_vec , VSX_CHAR_ZERO , VSX_LEFTSHIFTED1_4),1,4); in png_read_filter_row_paeth4_vsx() 546 pa_vec = (vector signed short) vec_sub(b_vec,c_vec); in png_read_filter_row_paeth4_vsx() 547 pb_vec = (vector signed short) vec_sub(a_vec , c_vec); in png_read_filter_row_paeth4_vsx() 559 c_vec in png_read_filter_row_paeth4_vsx() 566 c_vec = vsx_char_to_short(vec_perm(pp_vec , VSX_CHAR_ZERO , VSX_LEFTSHIFTED2_4),2,4); in png_read_filter_row_paeth4_vsx() 567 pa_vec = (vector signed short) vec_sub(b_vec,c_vec); in png_read_filter_row_paeth4_vsx() 568 pb_vec = (vector signed short) vec_sub(a_vec , c_vec); in png_read_filter_row_paeth4_vsx() 580 c_vec in png_read_filter_row_paeth4_vsx() 587 c_vec = vsx_char_to_short(vec_perm(pp_vec , VSX_CHAR_ZERO , VSX_LEFTSHIFTED3_4),3,4); in png_read_filter_row_paeth4_vsx() [all …]
|
/external/llvm/test/Assembler/ |
D | fast-math-flags.ll | 29 ; CHECK: %c_vec = fmul <3 x float> %vec, %vec 30 %c_vec = fmul <3 x float> %vec, %vec 63 ; CHECK: %c_vec = fmul nnan <3 x float> %vec, %vec 64 %c_vec = fmul nnan <3 x float> %vec, %vec 97 ; CHECK: %c_vec = fmul nnan <3 x float> %vec, %vec 98 %c_vec = fmul nnan <3 x float> %vec, %vec 131 ; CHECK: %c_vec = fmul nsz <3 x float> %vec, %vec 132 %c_vec = fmul nsz <3 x float> %vec, %vec
|
/external/llvm-project/llvm/test/Assembler/ |
D | fast-math-flags.ll | 31 ; CHECK: %c_vec = fmul <3 x float> %vec, %vec 32 %c_vec = fmul <3 x float> %vec, %vec 69 ; CHECK: %c_vec = fmul nnan <3 x float> %vec, %vec 70 %c_vec = fmul nnan <3 x float> %vec, %vec 141 ; CHECK: %c_vec = fmul nnan <3 x float> %vec, %vec 142 %c_vec = fmul nnan <3 x float> %vec, %vec 175 ; CHECK: %c_vec = fmul nsz <3 x float> %vec, %vec 176 %c_vec = fmul nsz <3 x float> %vec, %vec
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | where_op_test.py | 264 c_vec = np.array([False, True] * 8192) # [16384] 267 tf_val = array_ops.where(c_vec, x * x, -x).eval()
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | constant_folding_test.cc | 537 Output c_vec = ops::Const(s.WithOpName("c_vec"), 3.0f, {2}); in TEST_F() local 545 Output parent1 = ops::Add(s.WithOpName("parent1"), child1, c_vec); in TEST_F() 547 Output parent1a = ops::Add(s.WithOpName("parent1a"), c_vec, child1a); in TEST_F() 549 Output child2 = ops::BiasAdd(s.WithOpName("child2"), x_mat, c_vec); in TEST_F() 551 Output child2a = ops::BiasAdd(s.WithOpName("child2a"), x_mat, c_vec); in TEST_F() 555 Output parent3 = ops::BiasAdd(s.WithOpName("parent3"), child3, c_vec); in TEST_F() 557 Output parent3a = ops::BiasAdd(s.WithOpName("parent3a"), child3a, c_vec); in TEST_F() 560 Output parent4 = ops::BiasAdd(s.WithOpName("parent4"), child4, c_vec); in TEST_F() 565 Output child6 = ops::Add(s.WithOpName("child6"), x_vec, c_vec); in TEST_F() 567 Output child7 = ops::Add(s.WithOpName("child7"), x_mat, c_vec); in TEST_F() [all …]
|