HomeSort by relevance Sort by last modified time
    Searched full:quant (Results 1 - 25 of 264) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/icu/source/i18n/
regexcst.txt 67 quoted n expr-quant doLiteralChar
68 rule_char n expr-quant doLiteralChar
71 '.' n expr-quant doDotAny
72 '^' n expr-quant doCaret
73 '$' n expr-quant doDollar
83 # expr-quant We've just finished scanning a term, now look for the optional
86 expr-quant:
87 '*' n quant-star
88 '+' n quant-plus
89 '?' n quant-op
    [all...]
regexcst.h 146 , {doNOP, 42 /* * */, 63,0, TRUE} // 14 expr-quant
155 , {doSuppressComments, 63 /* ? */, 25,0, TRUE} // 23 open-paren-quant
195 , {doNGStar, 63 /* ? */, 20,0, TRUE} // 63 quant-star
198 , {doNGPlus, 63 /* ? */, 20,0, TRUE} // 66 quant-plus
201 , {doNGOpt, 63 /* ? */, 20,0, TRUE} // 69 quant-opt
331 "expr-quant",
340 "open-paren-quant",
380 "quant-star",
383 "quant-plus",
386 "quant-opt"
    [all...]
  /external/icu/icu4c/source/i18n/
regexcst.txt 67 quoted n expr-quant doLiteralChar
68 rule_char n expr-quant doLiteralChar
71 '.' n expr-quant doDotAny
72 '^' n expr-quant doCaret
73 '$' n expr-quant doDollar
83 # expr-quant We've just finished scanning a term, now look for the optional
86 expr-quant:
87 '*' n quant-star
88 '+' n quant-plus
89 '?' n quant-op
    [all...]
regexcst.h 146 , {doNOP, 42 /* * */, 63,0, TRUE} // 14 expr-quant
155 , {doSuppressComments, 63 /* ? */, 25,0, TRUE} // 23 open-paren-quant
195 , {doNGStar, 63 /* ? */, 20,0, TRUE} // 63 quant-star
198 , {doNGPlus, 63 /* ? */, 20,0, TRUE} // 66 quant-plus
201 , {doNGOpt, 63 /* ? */, 20,0, TRUE} // 69 quant-opt
331 "expr-quant",
340 "open-paren-quant",
380 "quant-star",
383 "quant-plus",
386 "quant-opt"
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_quantize.c 137 p->zbin, p->round, p->quant, p->quant_shift,
143 static void invert_quant(int16_t *quant, int16_t *shift, int d) {
150 *quant = (int16_t)(t - (1 << 16));
157 int i, q, quant; local
165 quant = i == 0 ? vp9_dc_quant(q, cm->y_dc_delta_q)
167 invert_quant(&quants->y_quant[q][i], &quants->y_quant_shift[q][i], quant);
168 quants->y_zbin[q][i] = ROUND_POWER_OF_TWO(qzbin_factor * quant, 7);
169 quants->y_round[q][i] = (qrounding_factor * quant) >> 7;
170 cm->y_dequant[q][i] = quant;
173 quant = i == 0 ? vp9_dc_quant(q, cm->uv_dc_delta_q
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_quantize.c 137 p->zbin, p->round, p->quant, p->quant_shift,
143 static void invert_quant(int16_t *quant, int16_t *shift, int d) {
150 *quant = (int16_t)(t - (1 << 16));
157 int i, q, quant; local
165 quant = i == 0 ? vp9_dc_quant(q, cm->y_dc_delta_q)
167 invert_quant(&quants->y_quant[q][i], &quants->y_quant_shift[q][i], quant);
168 quants->y_zbin[q][i] = ROUND_POWER_OF_TWO(qzbin_factor * quant, 7);
169 quants->y_round[q][i] = (qrounding_factor * quant) >> 7;
170 cm->y_dequant[q][i] = quant;
173 quant = i == 0 ? vp9_dc_quant(q, cm->uv_dc_delta_q
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_quantize.c 23 const int16_t *round_ptr, const int16_t quant,
34 tmp = (tmp * quant) >> 16;
45 const int16_t *round_ptr, const int16_t quant,
58 quant) >> 16;
69 const int16_t *round_ptr, const int16_t quant,
81 tmp = (tmp * quant) >> 15;
92 const int16_t *round_ptr, const int16_t quant,
105 quant) >> 15;
524 p->zbin, p->round, p->quant, p->quant_shift,
534 p->zbin, p->round, p->quant, p->quant_shift
552 const int quant = vp9_dc_quant(q, 0, bit_depth); local
574 int i, q, quant; local
    [all...]
vp9_block.h 39 int16_t *quant; member in struct:macroblock_plane
45 // Zbin Over Quant value
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
block.cpp 76 /* do residue transform quant invquant, invtrans and write output out */
87 int Qq, Rq, q_bits, qp_const, quant; local
141 /* quant */
156 quant = quant_coef[Rq][k];
159 lev = data * quant + qp_const;
163 lev = -data * quant + qp_const;
171 quant = dequant_coefres[Rq][k];
175 coef[idx] = (lev * quant) << Qq;
180 coef[idx] = (-lev * quant) << Qq;
359 /* performa dct, quant, iquant, idct for the entire MB *
372 int Rq, Qq, quant, q_bits, qp_const; local
733 int Qq, Rq, qp_const, q_bits, quant; local
1124 int q_bits, qp_const, quant; local
1212 int Qq, Rq, q_bits, qp_const, quant; local
    [all...]
  /external/libvorbis/vq/
vqgen.h 53 int quant; /* 0 < quant <= 16 */ member in struct:__anon8462
localcodebook.h 47 long q_min; /* packed 32 bit float; quant value 0 maps to minval */
49 int q_quant; /* bits: 0 < quant <= 16 */
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_zscan.c 178 struct ureg_dst quant, fragment; local
198 quant = ureg_DECL_temporary(shader);
205 * fragment = tex(tmp, 0) * quant
215 ureg_TEX(shader, ureg_writemask(quant, TGSI_WRITEMASK_X << i), TGSI_TEXTURE_3D, vtex[i], samp_quant);
218 ureg_MUL(shader, quant, ureg_src(quant), ureg_imm1f(shader, 16.0f));
219 ureg_MUL(shader, fragment, ureg_src(tmp[0]), ureg_src(quant));
511 buffer->quant = zscan->pipe->create_sampler_view(zscan->pipe, res, &sv_tmpl);
513 if (!buffer->quant)
526 pipe_sampler_view_reference(&buffer->quant, NULL)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_zscan.c 178 struct ureg_dst quant, fragment; local
198 quant = ureg_DECL_temporary(shader);
205 * fragment = tex(tmp, 0) * quant
215 ureg_TEX(shader, ureg_writemask(quant, TGSI_WRITEMASK_X << i), TGSI_TEXTURE_3D, vtex[i], samp_quant);
218 ureg_MUL(shader, quant, ureg_src(quant), ureg_imm1f(shader, 16.0f));
219 ureg_MUL(shader, fragment, ureg_src(tmp[0]), ureg_src(quant));
511 buffer->quant = zscan->pipe->create_sampler_view(zscan->pipe, res, &sv_tmpl);
513 if (!buffer->quant)
526 pipe_sampler_view_reference(&buffer->quant, NULL)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
block.h 42 short *quant; member in struct:block
49 /* Zbin Over Quant value */
  /external/chromium_org/third_party/libwebp/
BUILD.gn 22 "dec/quant.c",
150 "enc/quant.c",
libwebp.gyp 30 'dec/quant.c',
137 'enc/quant.c',
  /external/libvorbis/lib/
codebook.h 47 long q_min; /* packed 32 bit float; quant value 0 maps to minval */
49 int q_quant; /* bits: 0 < quant <= 16 */
  /external/libvpx/libvpx/vp8/encoder/
block.h 42 short *quant; member in struct:block
49 /* Zbin Over Quant value */
  /external/webp/src/
Android.mk 34 enc/quant.c \
86 dec/quant.c \
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
block.h 42 short *quant; member in struct:block
49 /* Zbin Over Quant value */
  /external/libhevc/common/
ihevc_iquant_recon.c 118 /* Inverse Quant and recon */
230 /* Inverse Quant and recon */
341 /* Inverse Quant and recon */
453 /* Inverse Quant and recon */
564 /* Inverse Quant and recon */
ihevc_chroma_iquant_recon.c 124 /* Inverse Quant and recon */
236 /* Inverse Quant and recon */
349 /* Inverse Quant and recon */
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/neon/
fastquantizeb_neon.asm 54 vqdmulh.s16 q4, q8 ; y = ((Round+abs(z)) * Quant) >> 16
71 vqdmulh.s16 q10, q8 ; y2 = ((Round+abs(z)) * Quant) >> 16
186 vqdmulh.s16 q12, q8 ; y = ((Round+abs(z)) * Quant) >> 16
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
quantize_sse2.c 53 __m128i quant0 = _mm_load_si128((__m128i *)(b->quant));
54 __m128i quant1 = _mm_load_si128((__m128i *)(b->quant + 8));
174 /* y = (x * quant) >> 16 */
  /external/libvpx/libvpx/vp8/encoder/arm/neon/
fastquantizeb_neon.asm 54 vqdmulh.s16 q4, q8 ; y = ((Round+abs(z)) * Quant) >> 16
71 vqdmulh.s16 q10, q8 ; y2 = ((Round+abs(z)) * Quant) >> 16
186 vqdmulh.s16 q12, q8 ; y = ((Round+abs(z)) * Quant) >> 16

Completed in 665 milliseconds

1 2 3 4 5 6 7 8 91011