Searched refs:in_ptr (Results 1 - 20 of 20) sorted by relevance

/external/libopus/silk/
H A DLPC_analysis_filter.c64 const opus_int16 *in_ptr; local
83 in_ptr = &in[ ix - 1 ];
85 out32_Q12 = silk_SMULBB( in_ptr[ 0 ], B[ 0 ] );
88 out32_Q12 = silk_SMLABB_ovflw( out32_Q12, in_ptr[ -1 ], B[ 1 ] );
89 out32_Q12 = silk_SMLABB_ovflw( out32_Q12, in_ptr[ -2 ], B[ 2 ] );
90 out32_Q12 = silk_SMLABB_ovflw( out32_Q12, in_ptr[ -3 ], B[ 3 ] );
91 out32_Q12 = silk_SMLABB_ovflw( out32_Q12, in_ptr[ -4 ], B[ 4 ] );
92 out32_Q12 = silk_SMLABB_ovflw( out32_Q12, in_ptr[ -5 ], B[ 5 ] );
94 out32_Q12 = silk_SMLABB_ovflw( out32_Q12, in_ptr[ -j ], B[ j ] );
95 out32_Q12 = silk_SMLABB_ovflw( out32_Q12, in_ptr[
[all...]
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dfilter_ma_fast_q12.c20 void WebRtcSpl_FilterMAFastQ12(const int16_t* in_ptr, argument
33 o += B[j] * in_ptr[i - j];
/external/webrtc/webrtc/common_audio/vad/
H A Dvad_filterbank.c44 const int16_t* in_ptr = data_in; local
59 tmp32 = kHpZeroCoefs[0] * *in_ptr;
63 filter_state[0] = *in_ptr++;
260 const int16_t* in_ptr = data_in; // [0 - 4000] Hz. local
268 SplitFilter(in_ptr, data_length, &self->upper_state[frequency_band],
273 in_ptr = hp_120; // [2000 - 4000] Hz.
276 SplitFilter(in_ptr, length, &self->upper_state[frequency_band],
289 in_ptr = lp_120; // [0 - 2000] Hz.
293 SplitFilter(in_ptr, length, &self->upper_state[frequency_band],
302 in_ptr
[all...]
/external/webrtc/webrtc/common_audio/
H A Dfir_filter_sse.cc53 float* in_ptr = &state_[i]; local
61 if (reinterpret_cast<uintptr_t>(in_ptr) & 0x0F) {
63 m_in = _mm_loadu_ps(in_ptr + j);
68 m_in = _mm_load_ps(in_ptr + j);
H A Dfir_filter_neon.cc53 float* in_ptr = &state_[i]; local
60 m_in = vld1q_f32(in_ptr + j);
/external/libxcam/modules/soft/
H A Dsoft_copy_task.cpp30 const typename ImageT::Type *in_ptr = in->get_buf_ptr (0, y); local
33 memcpy (out_ptr, in_ptr, size);
/external/tensorflow/tensorflow/core/kernels/
H A Ddequantize_op.cc80 const T* in_ptr = input.flat<T>().data(); variable
85 ((static_cast<int>(in_ptr[i]) + half_range_) * scale_factor) +
116 const T* in_ptr = input.flat<T>().data(); variable
120 out_ptr[i] = static_cast<int>(in_ptr[i]) * scale_factor;
H A Droll_op.cc124 const T* in_ptr = &input[0];
126 in_ptr += start;
172 memcpy(out_ptr, in_ptr, group_size * sizeof(T));
177 in_ptr += group_size;
H A Dreverse_op.cc57 const T* in_ptr = input.bit_casted_tensor<T, 3>().data();
60 in_ptr += start * row_size;
68 memcpy(out_ptr, in_ptr, inner_size * sizeof(T));
69 in_ptr += inner_size;
H A Ddepthwise_conv_op_gpu.cu.cc256 const T* const in_ptr = inout_offset + input;
258 tile_ptr[0] = ldg(in_ptr);
260 tile_ptr[tile_offset] = ldg(tensor_offset + in_ptr);
536 const T* const in_ptr = inout_offset + input;
538 tile_ptr[0] = ldg(in_ptr);
540 tile_ptr[tile_offset] = ldg(block_pixels + in_ptr);
1205 const T* const in_ptr = inout_offset + input;
1207 tile_ptr[0] = ldg(in_ptr);
1209 tile_ptr[tile_offset] = ldg(tensor_offset + in_ptr);
1470 const T* const in_ptr
[all...]
/external/webrtc/webrtc/modules/audio_processing/transient/
H A Dtransient_suppressor.h64 void Suppress(float* in_ptr, float* spectral_mean, float* out_ptr);
H A Dtransient_suppressor.cc232 void TransientSuppressor::Suppress(float* in_ptr, argument
238 fft_buffer_[i] = in_ptr[i] * window_[i];
/external/libchrome/base/json/
H A Dstring_escape_unittest.cc32 const char* in_ptr = cases[i].to_escape; local
33 std::string in_str = in_ptr;
36 EscapeJSONString(in_ptr, false, &out);
/external/libjpeg-turbo/
H A Djcsample.c128 JSAMPARRAY in_ptr, out_ptr; local
132 in_ptr = input_buf[ci] + in_row_index;
134 (*downsample->methods[ci]) (cinfo, compptr, in_ptr, out_ptr);
/external/pdfium/third_party/libtiff/
H A Dtif_jpeg.c1314 JSAMPLE *in_ptr = line_work_buf + iPair * 2; local
1316 out_ptr[0] = (unsigned char)((in_ptr[0] & 0xff0) >> 4);
1317 out_ptr[1] = (unsigned char)(((in_ptr[0] & 0xf) << 4)
1318 | ((in_ptr[1] & 0xf00) >> 8));
1319 out_ptr[2] = (unsigned char)(((in_ptr[1] & 0xff) >> 0));
1479 JSAMPLE *in_ptr = (JSAMPLE *) (tmpbuf + iPair * 2); local
1480 out_ptr[0] = (unsigned char)((in_ptr[0] & 0xff0) >> 4);
1481 out_ptr[1] = (unsigned char)(((in_ptr[0] & 0xf) << 4)
1482 | ((in_ptr[1] & 0xf00) >> 8));
1483 out_ptr[2] = (unsigned char)(((in_ptr[
1944 unsigned char *in_ptr = local
[all...]
/external/libpng/
H A Dpngwrite.c1571 png_const_uint_16p in_ptr = input_row; local
1576 const png_uint_16 alpha = in_ptr[aindex];
1593 png_uint_16 component = *in_ptr++;
1620 ++in_ptr;
1723 png_const_uint_16p in_ptr = input_row; local
1728 png_uint_16 alpha = in_ptr[aindex];
1741 *out_ptr++ = png_unpremultiply(*in_ptr++, alpha, reciprocal);
1745 ++in_ptr;
1764 png_const_uint_16p in_ptr = input_row; local
1769 png_uint_32 component = *in_ptr
[all...]
/external/pdfium/third_party/libpng16/
H A Dpngwrite.c1559 png_const_uint_16p in_ptr = input_row; local
1564 const png_uint_16 alpha = in_ptr[aindex];
1581 png_uint_16 component = *in_ptr++;
1608 ++in_ptr;
1710 png_const_uint_16p in_ptr = input_row; local
1715 png_uint_16 alpha = in_ptr[aindex];
1728 *out_ptr++ = png_unpremultiply(*in_ptr++, alpha, reciprocal);
1732 ++in_ptr;
1751 png_const_uint_16p in_ptr = input_row; local
1756 png_uint_32 component = *in_ptr
[all...]
/external/python/cpython3/Python/
H A Dfileutils.c533 FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, time_t *time_out, int* nsec_out) argument
536 /* Cannot simply cast and dereference in_ptr,
539 memcpy(&in, in_ptr, sizeof(in));
/external/tensorflow/tensorflow/contrib/lite/kernels/internal/reference/
H A Dreference_ops.h2660 const T* in_ptr = input_data;
2676 *out_ptr++ = *in_ptr++;
/external/python/cpython2/Modules/
H A Dposixmodule.c1055 FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, time_t *time_out, int* nsec_out) argument
1058 /* Cannot simply cast and dereference in_ptr,
1061 memcpy(&in, in_ptr, sizeof(in));

Completed in 688 milliseconds