Lines Matching refs:temp_out
537 tran_low_t temp_in[4], temp_out[4]; in vp9_fht4x4_c() local
544 ht.cols(temp_in, temp_out); in vp9_fht4x4_c()
545 for (j = 0; j < 4; ++j) out[j * 4 + i] = temp_out[j]; in vp9_fht4x4_c()
551 ht.rows(temp_in, temp_out); in vp9_fht4x4_c()
552 for (j = 0; j < 4; ++j) output[j + i * 4] = (temp_out[j] + 1) >> 2; in vp9_fht4x4_c()
667 tran_low_t temp_in[8], temp_out[8]; in vp9_fht8x8_c() local
673 ht.cols(temp_in, temp_out); in vp9_fht8x8_c()
674 for (j = 0; j < 8; ++j) out[j * 8 + i] = temp_out[j]; in vp9_fht8x8_c()
680 ht.rows(temp_in, temp_out); in vp9_fht8x8_c()
682 output[j + i * 8] = (temp_out[j] + (temp_out[j] < 0)) >> 1; in vp9_fht8x8_c()
750 tran_low_t temp_in[16], temp_out[16]; in vp9_fht16x16_c() local
756 ht.cols(temp_in, temp_out); in vp9_fht16x16_c()
758 out[j * 16 + i] = (temp_out[j] + 1 + (temp_out[j] < 0)) >> 2; in vp9_fht16x16_c()
764 ht.rows(temp_in, temp_out); in vp9_fht16x16_c()
765 for (j = 0; j < 16; ++j) output[j + i * 16] = temp_out[j]; in vp9_fht16x16_c()