/external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/micro_features/ |
frontend.cc | 35 int input_shift = local 37 FftCompute(&state->fft, state->window.output, input_shift); 44 uint32_t* scaled_filterbank = FilterbankSqrt(&state->filterbank, input_shift);
|
/external/tensorflow/tensorflow/lite/experimental/microfrontend/lib/ |
frontend.c | 35 int input_shift = local 37 FftCompute(&state->fft, state->window.output, input_shift); 46 uint32_t* scaled_filterbank = FilterbankSqrt(&state->filterbank, input_shift);
|
/external/tensorflow/tensorflow/lite/kernels/internal/reference/integer_ops/ |
tanh.h | 25 int32_t input_multiplier, int32_t input_shift, 44 MultiplyByQuantizedMultiplier(input, input_multiplier, input_shift);
|
log_softmax.h | 23 inline void LogSoftmax(int32_t input_multiplier, int32_t input_shift, 58 input_diff, input_multiplier, input_shift); 87 input_diff, input_multiplier, input_shift);
|
/external/libvpx/libvpx/ |
tools_common.c | 272 int input_shift) { 274 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0; 279 input_shift < 0) { 302 for (x = 0; x < w; x++) *p_dst++ = (*p_src++ << input_shift) + offset; 308 int input_shift) { 310 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0; 315 dst->fmt != src->fmt + VPX_IMG_FMT_HIGHBITDEPTH || input_shift < 0) { 338 *p_dst++ = (*p_src++ << input_shift) + offset [all...] |
tools_common.h | 158 void vpx_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift);
|
vpxenc.c | 1915 int input_shift = 0; local [all...] |
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
merge.cc | 227 int input_shift = 6 + log_fs_mult - local 229 input_shift = std::max(input_shift, 0); 232 input_shift); 235 if (input_shift > expanded_shift) { 236 energy_expanded = energy_expanded >> (input_shift - expanded_shift); 238 energy_input = energy_input >> (expanded_shift - input_shift);
|
/external/libaom/libaom/common/ |
tools_common.c | 245 int input_shift) { 247 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0; 252 input_shift < 0) { 274 for (x = 0; x < w; x++) *p_dst++ = (*p_src++ << input_shift) + offset; 280 int input_shift) { 282 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0; 287 dst->fmt != src->fmt + AOM_IMG_FMT_HIGHBITDEPTH || input_shift < 0) { 310 *p_dst++ = (*p_src++ << input_shift) + offset [all...] |
tools_common.h | 167 void aom_img_upshift(aom_image_t *dst, const aom_image_t *src, int input_shift);
|
/external/libvpx/libvpx/vpx_dsp/ |
psnr.c | 126 int height, unsigned int input_shift) { 134 diff = (a[x] >> input_shift) - (b[x] >> input_shift); 215 const unsigned int input_shift = bit_depth - in_bit_depth; local 223 if (input_shift) { 225 b_strides[i], w, h, input_shift);
|
/external/libaom/libaom/aom_dsp/ |
psnr.c | 127 int height, unsigned int input_shift) { 135 diff = (a[x] >> input_shift) - (b[x] >> input_shift); 318 const unsigned int input_shift = bit_depth - in_bit_depth; local 326 if (input_shift) { 328 b_strides[i], w, h, input_shift);
|
/external/libaom/libaom/examples/ |
aom_cx_set_ref.c | 316 int input_shift = 0; local 322 aom_img_upshift(&raw_shift, &raw, input_shift);
|
lightfield_encoder.c | 122 int input_shift = 0; local 123 aom_img_upshift(raw_shift, raw, input_shift);
|
/external/libaom/libaom/apps/ |
aomenc.c | 2123 int input_shift = 0; local [all...] |