Searched refs:out_arr (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/mips/ |
D | idct16x16_msa.c | 207 DECLARE_ALIGNED(32, int16_t, out_arr[16 * 16]); in vpx_idct16x16_256_add_msa() 208 int16_t *out = out_arr; in vpx_idct16x16_256_add_msa() 227 DECLARE_ALIGNED(32, int16_t, out_arr[16 * 16]); in vpx_idct16x16_10_add_msa() 228 int16_t *out = out_arr; in vpx_idct16x16_10_add_msa() 252 out = out_arr; in vpx_idct16x16_10_add_msa()
|
D | idct32x32_msa.c | 635 DECLARE_ALIGNED(32, int16_t, out_arr[32 * 32]); in vpx_idct32x32_1024_add_msa() 636 int16_t *out_ptr = out_arr; in vpx_idct32x32_1024_add_msa() 655 DECLARE_ALIGNED(32, int16_t, out_arr[32 * 32]); in vpx_idct32x32_34_add_msa() 656 int16_t *out_ptr = out_arr; in vpx_idct32x32_34_add_msa() 683 out_ptr = out_arr; in vpx_idct32x32_34_add_msa()
|
/external/tensorflow/tensorflow/core/framework/ |
D | shape_inference_test.cc | 827 ShapeHandle out_arr[4]; in TEST_F() local 840 ASSERT_TRUE(c.Subshape(in0, start, end, &out_arr[0]).ok()); in TEST_F() 841 ASSERT_TRUE(c.Subshape(in0, neg_start, end, &out_arr[1]).ok()); in TEST_F() 842 ASSERT_TRUE(c.Subshape(in0, start, neg_end, &out_arr[2]).ok()); in TEST_F() 843 ASSERT_TRUE(c.Subshape(in0, neg_start, neg_end, &out_arr[3]).ok()); in TEST_F() 847 out = out_arr[arr_idx]; in TEST_F()
|