Searched refs:out_ptr (Results 1 - 25 of 51) sorted by relevance

123

/external/libvpx/libvpx/vp9/common/mips/msa/
H A Dvp9_idct16x16_msa.c20 int16_t *out_ptr = &out[0]; local
27 vpx_idct16_1d_rows_msa((input + (i << 7)), (out_ptr + (i << 7)));
33 vpx_idct16_1d_columns_addblk_msa((out_ptr + (i << 3)), (dst + (i << 3)),
41 vpx_idct16_1d_rows_msa((input + (i << 7)), (out_ptr + (i << 7)));
46 vpx_iadst16_1d_columns_addblk_msa((out_ptr + (i << 3)),
54 vpx_iadst16_1d_rows_msa((input + (i << 7)), (out_ptr + (i << 7)));
60 vpx_idct16_1d_columns_addblk_msa((out_ptr + (i << 3)), (dst + (i << 3)),
68 vpx_iadst16_1d_rows_msa((input + (i << 7)), (out_ptr + (i << 7)));
73 vpx_iadst16_1d_columns_addblk_msa((out_ptr + (i << 3)),
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dfilter_ma_fast_q12.c21 int16_t* out_ptr,
42 *out_ptr++ = (int16_t)((o + (int32_t)2048) >> 12);
20 WebRtcSpl_FilterMAFastQ12(const int16_t* in_ptr, int16_t* out_ptr, const int16_t* B, size_t B_length, size_t length) argument
/external/libxaac/decoder/
H A Dixheaacd_aac_imdct.h28 VOID ixheaacd_post_twiddle_dec(WORD32 out_ptr[], WORD32 spec_data[],
33 WORD32 out_ptr[], WORD32 spec_data[],
37 WORD32 out_ptr[], WORD32 spec_data[],
59 WORD32 *spec_data1, WORD32 *spec_data2, WORD32 *out_ptr,
64 WORD32 *spec_data1, WORD32 *spec_data2, WORD32 *out_ptr,
69 WORD32 *spec_data1, WORD32 *spec_data2, WORD32 *out_ptr,
H A Dixheaacd_acelp_mdct.c139 WORD32 *out_ptr = &out[2 * nlength - 1]; local
143 out_ptr[0] = -ixheaacd_mul_add64_sat_32(data_re[i], data_im[i], sin_ptr[i],
148 out_ptr[-2] = -ixheaacd_mul_add64_sat_32(data_re[i + 1], data_im[i + 1],
153 out_ptr[-4] = -ixheaacd_mul_add64_sat_32(data_re[i + 2], data_im[i + 2],
158 out_ptr[-6] = -ixheaacd_mul_add64_sat_32(data_re[i + 3], data_im[i + 3],
161 out_ptr -= 8;
H A Dixheaacd_aac_imdct.c129 WORD32 *spec_data1, WORD32 *spec_data2, WORD32 *out_ptr,
136 WORD32 *out_ptr1 = out_ptr + (npoints2 << 1) - 1;
153 *out_ptr =
156 *out_ptr = ixheaacd_shl32(*out_ptr, neg_expo);
157 out_ptr++;
159 *out_ptr = ixheaacd_sub32(ixheaacd_mult32x16in32(tempi, cos),
162 *out_ptr = ixheaacd_shl32(*out_ptr, neg_expo);
163 out_ptr
128 ixheaacd_pretwiddle_compute_dec( WORD32 *spec_data1, WORD32 *spec_data2, WORD32 *out_ptr, ia_aac_dec_imdct_tables_struct *ptr_imdct_tables, WORD npoints4, WORD32 neg_expo) argument
294 ixheaacd_post_twiddle_dec(WORD32 out_ptr[], WORD32 spec_data[], ia_aac_dec_imdct_tables_struct *ptr_imdct_tables, WORD npoints) argument
[all...]
H A Dixheaacd_hbe_trans.c743 FLOAT32 *out_ptr = &ptr_hbe_txposer->qmf_out_buf[1][2 * qmf_band_idx]; local
762 *out_ptr++ +=
765 *out_ptr++ +=
769 out_ptr += 126;
773 out_ptr -= 128 * 8;
776 out_ptr -= (128 * 2 * qmf_voc_columns) - 2;
1018 FLOAT32 *out_ptr = &ptr_hbe_txposer->qmf_out_buf[3][2 * qmf_band_idx]; local
1054 *out_ptr++ += (temp_r * 0.6666667f);
1055 *out_ptr++ += (temp_i * 0.6666667f);
1058 out_ptr
1075 FLOAT32 *out_ptr = &ptr_hbe_txposer->qmf_out_buf[1][2 * qmf_band_idx]; local
1480 FLOAT32 *out_ptr = &ptr_hbe_txposer->qmf_out_buf[3][2 * qmf_band_idx]; local
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_video_generic.cc59 uint8_t* out_ptr = buffer; local
64 *out_ptr++ = generic_header_;
69 memcpy(out_ptr, payload_data_, payload_length_);
/external/libxcam/modules/soft/
H A Dsoft_copy_task.cpp31 typename ImageT::Type *out_ptr = out->get_buf_ptr (0, y); local
33 memcpy (out_ptr, in_ptr, size);
/external/tensorflow/tensorflow/core/kernels/
H A Ddequantize_op.cc79 float* out_ptr = output->flat<float>().data(); variable
84 out_ptr[i] =
115 float* out_ptr = output->flat<float>().data(); variable
120 out_ptr[i] = static_cast<int>(in_ptr[i]) * scale_factor;
H A Droll_op.cc125 T* out_ptr = &output[0];
127 out_ptr += start;
150 out_ptr += (out_indx - indx) * stride;
172 memcpy(out_ptr, in_ptr, group_size * sizeof(T));
176 out_ptr += group_size;
179 // produce next combination of indices and adjust the out_ptr position
194 out_ptr -= dim_range[j]; // now wraps around
198 out_ptr += dim_range[j]; // indx became 0 so reverse wrap around
H A Dreverse_op.cc58 T* out_ptr = result->bit_casted_tensor<T, 3>().data();
61 out_ptr += start * row_size;
64 out_ptr += row_size;
67 out_ptr -= inner_size;
68 memcpy(out_ptr, in_ptr, inner_size * sizeof(T));
73 out_ptr += row_size;
H A Dmatrix_triangular_solve_op.cc188 auto out_ptr = AsDeviceMemory(output.data()); variable
193 stream->ThenMemcpyD2D(&out_ptr, rhs_ptr, sizeof(Scalar) * rhs_elems)
231 matrix_ptr, leading_dim_matrix /*lda*/, &out_ptr,
/external/webrtc/webrtc/system_wrappers/source/
H A Ddata_log_c_helpers_unittest.c36 char* out_ptr = WebRtcDataLog_Combine(combined_name, kOutLen, kTableName, 17); local
38 if (!out_ptr) {
/external/boringssl/src/crypto/bytestring/
H A Dcbs.c60 int CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len) { argument
61 OPENSSL_free(*out_ptr);
62 *out_ptr = NULL;
68 *out_ptr = BUF_memdup(cbs->data, cbs->len);
69 if (*out_ptr == NULL) {
76 int CBS_strdup(const CBS *cbs, char **out_ptr) { argument
77 if (*out_ptr != NULL) {
78 OPENSSL_free(*out_ptr);
80 *out_ptr = BUF_strndup((const char*)cbs->data, cbs->len);
81 return (*out_ptr !
[all...]
/external/libvpx/libvpx/vp9/encoder/mips/msa/
H A Dvp9_fdct16x16_msa.c87 int16_t *out_ptr = out + 128; local
109 ST_SH(out5, (out_ptr + 4 * 16));
116 ST_SH(out13, (out_ptr + 5 * 16));
126 ST_SH(out1, (out_ptr + 7 * 16));
134 ST_SH(out9, (out_ptr + 6 * 16));
141 ST_SH(out3, (out_ptr));
145 ST_SH(out7, (out_ptr + 3 * 16));
149 ST_SH(out11, (out_ptr + 16));
153 ST_SH(out15, (out_ptr + 2 * 16));
265 int16_t *out_ptr local
[all...]
/external/webrtc/webrtc/modules/audio_processing/transient/
H A Dtransient_suppressor.h64 void Suppress(float* in_ptr, float* spectral_mean, float* out_ptr);
/external/libxcam/modules/ocl/
H A Dcl_context.cpp585 void *out_ptr = NULL; local
595 out_ptr = clEnqueueMapBuffer (
606 out_ptr && errcode == CL_SUCCESS,
610 ptr = out_ptr;
633 void *out_ptr = NULL; local
644 out_ptr = clEnqueueMapImage (
658 out_ptr && errcode == CL_SUCCESS,
662 ptr = out_ptr;
/external/boringssl/include/openssl/
H A Dbytestring.h71 // CBS_stow copies the current contents of |cbs| into |*out_ptr| and
72 // |*out_len|. If |*out_ptr| is not NULL, the contents are freed with
74 // success, |*out_ptr| should be freed with OPENSSL_free. If |cbs| is empty,
75 // |*out_ptr| will be NULL.
76 OPENSSL_EXPORT int CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len);
78 // CBS_strdup copies the current contents of |cbs| into |*out_ptr| as a
79 // NUL-terminated C string. If |*out_ptr| is not NULL, the contents are freed
81 // failure. On success, |*out_ptr| should be freed with OPENSSL_free.
85 OPENSSL_EXPORT int CBS_strdup(const CBS *cbs, char **out_ptr);
/external/boringssl/src/crypto/
H A Dcpu-arm-linux.c80 // one and sets |*out_ptr| and |*out_len| to a newly-allocated buffer with the
82 static int read_file(char **out_ptr, size_t *out_len, const char *path) { argument
120 *out_ptr = buf;
/external/boringssl/src/include/openssl/
H A Dbytestring.h71 // CBS_stow copies the current contents of |cbs| into |*out_ptr| and
72 // |*out_len|. If |*out_ptr| is not NULL, the contents are freed with
74 // success, |*out_ptr| should be freed with OPENSSL_free. If |cbs| is empty,
75 // |*out_ptr| will be NULL.
76 OPENSSL_EXPORT int CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len);
78 // CBS_strdup copies the current contents of |cbs| into |*out_ptr| as a
79 // NUL-terminated C string. If |*out_ptr| is not NULL, the contents are freed
81 // failure. On success, |*out_ptr| should be freed with OPENSSL_free.
85 OPENSSL_EXPORT int CBS_strdup(const CBS *cbs, char **out_ptr);
/external/libxaac/decoder/armv7/
H A Dixheaacd_function_selector_arm_non_neon.c153 (WORD32 out_ptr[], WORD32 spec_data[],
180 (WORD32 *spec_data1, WORD32 *spec_data2, WORD32 *out_ptr,
/external/webrtc/webrtc/common_audio/vad/
H A Dvad_filterbank.c45 int16_t* out_ptr = data_out; local
70 *out_ptr++ = filter_state[2];
/external/libvpx/libvpx/vpx_dsp/mips/
H A Didct32x32_msa.c636 int16_t *out_ptr = out_arr; local
641 idct32x8_1d_rows_msa((input + (i << 8)), (out_ptr + (i << 8)));
647 idct8x32_1d_columns_addblk_msa((out_ptr + (i << 3)), (dst + (i << 3)),
656 int16_t *out_ptr = out_arr; local
660 "sw $zero, 0(%[out_ptr]) \n\t"
661 "sw $zero, 4(%[out_ptr]) \n\t"
662 "sw $zero, 8(%[out_ptr]) \n\t"
663 "sw $zero, 12(%[out_ptr]) \n\t"
664 "sw $zero, 16(%[out_ptr]) \n\t"
665 "sw $zero, 20(%[out_ptr]) \
[all...]
/external/libpng/
H A Dpngwrite.c1572 png_uint_16p out_ptr = output_row; local
1574 while (out_ptr < row_end)
1580 out_ptr[aindex] = alpha;
1615 *out_ptr++ = component;
1621 ++out_ptr;
1724 png_bytep out_ptr = output_row; local
1726 while (out_ptr < row_end)
1734 out_ptr[aindex] = alphabyte;
1741 *out_ptr++ = png_unpremultiply(*in_ptr++, alpha, reciprocal);
1746 ++out_ptr;
1765 png_bytep out_ptr = output_row; local
[all...]
/external/pdfium/third_party/libpng16/
H A Dpngwrite.c1560 png_uint_16p out_ptr = output_row; local
1562 while (out_ptr < row_end)
1568 out_ptr[aindex] = alpha;
1603 *out_ptr++ = component;
1609 ++out_ptr;
1711 png_bytep out_ptr = output_row; local
1713 while (out_ptr < row_end)
1721 out_ptr[aindex] = alphabyte;
1728 *out_ptr++ = png_unpremultiply(*in_ptr++, alpha, reciprocal);
1733 ++out_ptr;
1752 png_bytep out_ptr = output_row; local
[all...]

Completed in 1803 milliseconds

123