Searched defs:final_output (Results 1 - 3 of 3) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
H A Dfwd_txfm.c91 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *final_output, int stride) { argument
167 output = final_output;
173 final_output[j + i * 8] /= 2;
789 void vpx_highbd_fdct8x8_c(const int16_t *input, tran_low_t *final_output, argument
791 vpx_fdct8x8_c(input, final_output, stride);
794 void vpx_highbd_fdct8x8_1_c(const int16_t *input, tran_low_t *final_output, argument
796 vpx_fdct8x8_1_c(input, final_output, stride);
/external/libvpx/libvpx/vpx_dsp/arm/
H A Dfwd_txfm_neon.c16 void vpx_fdct8x8_neon(const int16_t *input, int16_t *final_output, int stride) { argument
194 vst1q_s16(&final_output[0 * 8], input_0);
195 vst1q_s16(&final_output[1 * 8], input_1);
196 vst1q_s16(&final_output[2 * 8], input_2);
197 vst1q_s16(&final_output[3 * 8], input_3);
198 vst1q_s16(&final_output[4 * 8], input_4);
199 vst1q_s16(&final_output[5 * 8], input_5);
200 vst1q_s16(&final_output[6 * 8], input_6);
201 vst1q_s16(&final_output[7 * 8], input_7);
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp438 std::stringstream final_output; local
488 final_output << name << ":";
490 final_output << index_id << ";";
492 final_output << usec_name << ":" << usec_value << ";";
507 final_output << name << ":" << value << ";";
512 final_output << name << ":" << value << ";";
515 final_output << end_delimiter;
518 return final_output.str();

Completed in 145 milliseconds