HomeSort by relevance Sort by last modified time
    Searched refs:dq (Results 26 - 50 of 67) sorted by null

12 3

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/neon/
dequant_idct_neon.c 18 int16_t *dq,
38 // load dq
39 q5 = vld1q_s16(dq);
40 dq += 8;
41 q6 = vld1q_s16(dq);
idct_dequant_full_2x_neon.asm 18 ;void idct_dequant_full_2x_neon(short *q, short *dq,
21 ; r1 *dq,
25 vld1.16 {q0, q1}, [r1] ; dq (same l/r)
43 ; dequant: q[i] = q[i] * dq[i]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_detokenize.c 73 dqv = dq[1]; \
83 int16_t *dqcoeff, TX_SIZE tx_size, const int16_t *dq,
103 int16_t dqv = dq[0];
118 dqv = dq[1];
  /ndk/tests/build/b14825026-aarch64-FP_LO_REGS/jni/
idct_dequant_full_2x_neon.c 19 int16_t *dq,
32 // load dq
33 q0 = vld1q_s16(dq);
34 dq += 8;
35 q1 = vld1q_s16(dq);
  /external/webp/src/enc/
frame.c 29 #define DQ_LIMIT 0.4 // convergence is considered reached if dq < DQ_LIMIT
35 float dq; member in struct:__anon21229
48 s->dq = 10.f;
63 float dq; local
65 dq = (s->value > s->target) ? -s->dq : s->dq;
69 dq = (float)(slope * (s->last_q - s->q));
71 dq = 0.; // we're done?!
74 s->dq = Clamp(dq, -30.f, 30.f)
    [all...]
  /external/libvpx/mips-dspr2/
vp8_rtcd.h 75 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
76 void vp8_dequant_idct_add_dspr2(short *input, short *dq, unsigned char *output, int stride);
79 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
80 void vp8_dequant_idct_add_uv_block_dspr2(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
83 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
84 void vp8_dequant_idct_add_y_block_dspr2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/mips-dspr2/
vp8_rtcd.h 31 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
32 void vp8_dequant_idct_add_dspr2(short *input, short *dq, unsigned char *output, int stride);
35 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
36 void vp8_dequant_idct_add_y_block_dspr2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
39 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
40 void vp8_dequant_idct_add_uv_block_dspr2(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
  /external/libvpx/libvpx/vp8/common/arm/armv6/
dequant_idct_v6.asm 13 ;void vp8_dequant_idct_v6(short *input, short *dq,
16 ; r1 = dq
24 ldr r5, [r1], #4 ;dq
36 ldr r5, [r1], #4 ;dq
  /external/libvpx/libvpx/vp8/common/x86/
dequantize_mmx.asm 15 ;void vp8_dequantize_b_impl_mmx(short *sq, short *dq, short *q)
26 mov rdi, arg(1) ;dq
55 ;short *dq, 1
68 mov rdx, arg(1) ;dq
  /external/libvpx/libvpx/vp9/common/x86/
vp9_idct_ssse3_x86_64.asm 95 INTERLEAVE_2X dq, %1, %3, %9
96 INTERLEAVE_2X dq, %2, %4, %9
97 INTERLEAVE_2X dq, %5, %7, %9
98 INTERLEAVE_2X dq, %6, %8, %9
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/
dequant_idct_v6.asm 13 ;void vp8_dequant_idct_v6(short *input, short *dq,
16 ; r1 = dq
24 ldr r5, [r1], #4 ;dq
36 ldr r5, [r1], #4 ;dq
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
dequantize_mmx.asm 15 ;void vp8_dequantize_b_impl_mmx(short *sq, short *dq, short *q)
26 mov rdi, arg(1) ;dq
55 ;short *dq, 1
68 mov rdx, arg(1) ;dq
  /external/libhevc/common/
ihevc_deblk_edge_filter.c 110 WORD32 dp0, dp3, dq0, dq3, d0, d3, dp, dq, d; local
148 dq = dq0 + dq3;
180 deq = (dq < (beta + (beta >> 1)) >> 3) ? 1 : 0;
347 WORD32 dp0, dp3, dq0, dq3, d0, d3, dp, dq, d; local
390 dq = dq0 + dq3;
426 deq = (dq < ((beta + (beta >> 1)) >> 3)) ? 1 : 0;
  /external/libvpx/armv7a/
vp8_rtcd.h 79 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
80 void vp8_dequant_idct_add_v6(short *input, short *dq, unsigned char *output, int stride);
83 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
84 void vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
87 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
88 void vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a/
vp8_rtcd.h 32 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
33 void vp8_dequant_idct_add_v6(short *input, short *dq, unsigned char *output, int stride);
36 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
37 void vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
40 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
41 void vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
  /external/libvpx/armv7a-neon/
vp8_rtcd.h 88 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
89 void vp8_dequant_idct_add_v6(short *input, short *dq, unsigned char *output, int stride);
90 void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, int stride);
93 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
94 void vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
95 void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
98 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
99 void vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
100 void vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a-neon/
vp8_rtcd.h 33 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
34 void vp8_dequant_idct_add_v6(short *input, short *dq, unsigned char *output, int stride);
35 void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, int stride);
38 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
39 void vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
40 void vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
43 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
44 void vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
45 void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
  /external/libvpx/libvpx/vp8/common/arm/neon/
idct_dequant_full_2x_neon.asm 18 ;void idct_dequant_full_2x_neon(short *q, short *dq,
21 ; r1 *dq,
27 vld1.16 {q0, q1}, [r1] ; dq (same l/r)
45 ; dequant: q[i] = q[i] * dq[i]
  /external/libvpx/x86/
vp8_rtcd.h 102 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
103 void vp8_dequant_idct_add_mmx(short *input, short *dq, unsigned char *output, int stride);
106 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
107 void vp8_dequant_idct_add_uv_block_mmx(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
108 void vp8_dequant_idct_add_uv_block_sse2(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
111 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
112 void vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
113 void vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
    [all...]
  /external/libvpx/generic/
vp8_rtcd.h 71 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
74 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
77 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /external/libvpx/mips/
vp8_rtcd.h 71 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
74 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
77 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/generic/
vp8_rtcd.h 31 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
34 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
37 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/mips/
vp8_rtcd.h 31 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
34 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
37 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/x86/
vp8_rtcd.h 103 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
104 void vp8_dequant_idct_add_mmx(short *input, short *dq, unsigned char *output, int stride);
105 RTCD_EXTERN void (*vp8_dequant_idct_add)(short *input, short *dq, unsigned char *output, int stride);
107 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
108 void vp8_dequant_idct_add_uv_block_mmx(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
109 void vp8_dequant_idct_add_uv_block_sse2(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
110 RTCD_EXTERN void (*vp8_dequant_idct_add_uv_block)(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
112 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
113 void vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
114 void vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
quantize.c 186 int dq; local
192 dq = dequant_ptr[rc];
193 rounding = dq >> 1;
198 if (x >= dq)
206 dqcoeff_ptr[rc] = x * dq;

Completed in 710 milliseconds

12 3