HomeSort by relevance Sort by last modified time
    Searched defs:log_scale (Results 1 - 9 of 9) sorted by null

  /external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/micro_features/
frontend_util.h 33 struct LogScaleConfig log_scale; member in struct:FrontendConfig
frontend.h 23 #include "tensorflow/lite/experimental/micro/examples/micro_speech/micro_features/log_scale.h"
34 struct LogScaleState log_scale; member in struct:FrontendState
  /external/tensorflow/tensorflow/lite/experimental/microfrontend/lib/
frontend_util.h 35 struct LogScaleConfig log_scale; member in struct:FrontendConfig
frontend.h 23 #include "tensorflow/lite/experimental/microfrontend/lib/log_scale.h"
38 struct LogScaleState log_scale; member in struct:FrontendState
  /external/libaom/libaom/av1/encoder/
av1_quantize.h 29 int log_scale; member in struct:QUANT_PARAM
  /external/libaom/libaom/aom_dsp/x86/
adaptive_quantize_sse2.c 224 const int log_scale = 1; local
227 const __m128i log_scale_vec = _mm_set1_epi16(log_scale);
233 const int zbins[2] = { ROUND_POWER_OF_TWO(zbin_ptr[0], log_scale),
234 ROUND_POWER_OF_TWO(zbin_ptr[1], log_scale) };
273 zbin = _mm_srli_epi16(zbin, log_scale);
274 round = _mm_srli_epi16(round, log_scale);
307 calculate_qcoeff_log_scale(&qcoeff0, round, quant, &shift, &log_scale);
313 calculate_qcoeff_log_scale(&qcoeff1, round, quant, &shift, &log_scale);
327 &log_scale);
330 dqcoeff_ptr + 8, &log_scale);
    [all...]
  /external/libaom/libaom/test/
av1_quantize_test.cc 30 const int16_t *scan, const int16_t *iscan, int log_scale);
69 int log_scale = (txSize == TX_32X32); local
98 &ref_eob, scanOrder.scan, scanOrder.iscan, log_scale);
103 scanOrder.scan, scanOrder.iscan, log_scale));
142 int log_scale = (txSize == TX_32X32); local
175 &ref_eob, scanOrder.scan, scanOrder.iscan, log_scale);
180 scanOrder.scan, scanOrder.iscan, log_scale));
quantize_func_test.cc 38 typedef void (*QuantizeFuncHbd)(QUAN_PARAM_LIST, int log_scale);
42 qcoeff_ptr, dqcoeff_ptr, dequant_ptr, eob_ptr, scan, iscan, log_scale)
50 const int log_scale = 0; local
56 const int log_scale = 1; local
62 const int log_scale = 2; local
  /external/libaom/libaom/av1/encoder/x86/
av1_quantize_avx2.c 46 const int16_t *dequant_ptr, int log_scale,
52 if (log_scale > 0) {
53 const __m128i rnd = _mm_set1_epi16((int16_t)1 << (log_scale - 1));
55 round = _mm_srai_epi16(round, log_scale);
61 if (log_scale == 1) {
62 qp[1] = _mm256_slli_epi16(qp[1], log_scale);
66 *thr = _mm256_srai_epi16(qp[2], 1 + log_scale);
69 static INLINE void update_qp(int log_scale, __m256i *thr, __m256i *qp) {
73 *thr = _mm256_srai_epi16(qp[2], 1 + log_scale);
149 const int log_scale = 0 local
224 const int log_scale = 1; local
303 const int log_scale = 2; local
    [all...]

Completed in 159 milliseconds