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

12 3 4 5

  /external/libvpx/config/mips64-msa/
vp8_rtcd.h 73 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
74 void vp8_dequant_idct_add_msa(short *input, short *dq, unsigned char *output, int stride);
77 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
78 void vp8_dequant_idct_add_uv_block_msa(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
81 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
82 void vp8_dequant_idct_add_y_block_msa(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /external/libvpx/libvpx/vp8/common/arm/neon/
dequant_idct_neon.c 22 void vp8_dequant_idct_add_neon(int16_t *input, int16_t *dq, unsigned char *dst,
41 // load dq
42 q5 = vld1q_s16(dq);
43 dq += 8;
44 q6 = vld1q_s16(dq);
idct_dequant_full_2x_neon.c 17 void idct_dequant_full_2x_neon(int16_t *q, int16_t *dq, unsigned char *dst,
29 // load dq
30 q0 = vld1q_s16(dq);
31 dq += 8;
32 q1 = vld1q_s16(dq);
  /external/libvpx/libvpx/vp8/common/mips/msa/
idct_msa.c 314 void vp8_dequant_idct_add_msa(int16_t *input, int16_t *dq, uint8_t *dest,
316 dequant_idct4x4_addblk_msa(input, dq, dest, stride);
332 void vp8_dequant_idct_add_y_block_msa(int16_t *q, int16_t *dq, uint8_t *dst,
340 dequant_idct4x4_addblk_2x_msa(q, dq, dst, stride);
342 dequant_idct_addconst_2x_msa(q, dq, dst, stride);
350 dequant_idct4x4_addblk_2x_msa(q, dq, dst + 8, stride);
352 dequant_idct_addconst_2x_msa(q, dq, dst + 8, stride);
362 void vp8_dequant_idct_add_uv_block_msa(int16_t *q, int16_t *dq, uint8_t *dstu,
369 dequant_idct4x4_addblk_2x_msa(q, dq, dstu, stride);
371 dequant_idct_addconst_2x_msa(q, dq, dstu, stride)
    [all...]
  /external/webp/src/enc/
frame_enc.c 30 #define DQ_LIMIT 0.4 // convergence is considered reached if dq < DQ_LIMIT
36 float dq; member in struct:__anon38546
49 s->dq = 10.f;
64 float dq; local
66 dq = (s->value > s->target) ? -s->dq : s->dq;
70 dq = (float)(slope * (s->last_q - s->q));
72 dq = 0.; // we're done?!
75 s->dq = Clamp(dq, -30.f, 30.f)
    [all...]
  /device/google/contexthub/firmware/os/algos/
fusion.c 480 struct Vec3 dq; local
481 mat33Apply(&dq, &K[0], &e);
490 q.x = fusion->x0.x + 0.5f * (F[0].x * dq.x + F[1].x * dq.y + F[2].x * dq.z);
491 q.y = fusion->x0.y + 0.5f * (F[0].y * dq.x + F[1].y * dq.y + F[2].y * dq.z);
492 q.z = fusion->x0.z + 0.5f * (F[0].z * dq.x + F[1].z * dq.y + F[2].z * dq.z)
    [all...]
  /external/libvpx/config/x86/
vp8_rtcd.h 89 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
90 void vp8_dequant_idct_add_mmx(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_sse2(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
97 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
98 void vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /external/libvpx/config/x86_64/
vp8_rtcd.h 89 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
90 void vp8_dequant_idct_add_mmx(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_sse2(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
97 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
98 void vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /device/linaro/bootloader/arm-trusted-firmware/plat/hikey/
pll.c 410 unsigned int data, wdet, zero_bdl, dq[4]; local
439 dq[0] = mmio_read_32((0xf712c000 + 0x234)) & 0x1f00;
440 dq[1] = mmio_read_32((0xf712c000 + 0x2b4)) & 0x1f00;
441 dq[2] = mmio_read_32((0xf712c000 + 0x334)) & 0x1f00;
442 dq[3] = mmio_read_32((0xf712c000 + 0x3b4)) & 0x1f00;
445 mmio_write_32((0xf712c000 + 0x234), dq[0]);
446 mmio_write_32((0xf712c000 + 0x2b4), dq[1]);
447 mmio_write_32((0xf712c000 + 0x334), dq[2]);
448 mmio_write_32((0xf712c000 + 0x3b4), dq[3]);
490 dq[0] = dq[0] - 0x100
    [all...]
  /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
mfqe_sse2.asm 277 dq 0, 128
279 dq 128, 0
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
RsaKeyTest.java 1402 BigInteger dq = key.getPrimeExponentQ(); local
    [all...]
  /external/libvpx/config/arm/
vp8_rtcd.h 62 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
65 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
68 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /external/libvpx/config/generic/
vp8_rtcd.h 62 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
65 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
68 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /external/libvpx/config/mips32/
vp8_rtcd.h 62 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
65 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
68 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /external/libvpx/config/mips64/
vp8_rtcd.h 62 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
65 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
68 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /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/libvpx/vp9/decoder/
vp9_detokenize.c 75 tran_low_t *dqcoeff, TX_SIZE tx_size, const int16_t *dq,
92 int16_t dqv = dq[0];
129 dqv = dq[1];
212 dqv = dq[1];
  /external/webp/src/dec/
vp8_dec.c 34 int ctx, const quant_t dq, int n, int16_t* out);
438 int ctx, const quant_t dq, int n, int16_t* out) {
458 out[kZigzag[n]] = VP8GetSigned(br, v) * dq[n > 0];
468 int ctx, const quant_t dq, int n, int16_t* out) {
488 out[kZigzag[n]] = VP8GetSigned(br, v) * dq[n > 0];
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
err-1.s 21 ftrc.dq dr15,dr29 ! { dg-error "invalid operand" }
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/X64/
AsmFuncs.asm 55 AppRsp dq 1111111111111111h ; ?
56 DebugRsp dq 2222222222222222h ; ?
57 ExtraPush dq 3333333333333333h ; ?
58 ExceptData dq 4444444444444444h ; ?
59 Rflags dq 5555555555555555h ; ?
60 OrigVector dq 6666666666666666h ; ?
101 ExceptionNumber dq ? ;; first entry will be the vector number pushed by the stub
  /external/libhevc/common/x86/
ihevc_deblk_ssse3_intr.c 112 WORD32 d, dp, dq, d_sam0, d_sam3; local
175 // dq dp d3 d0
190 dq = _mm_cvtsi128_si32(mask_16x8b);
227 deq = (dq < (beta + (beta >> 1)) >> 3) ? 1 : 0;
549 WORD32 d0, d3, dp, dq, d; local
635 // dq dp d3 d0
650 dq = _mm_cvtsi128_si32(mask_16x8b);
687 deq = (dq < (beta + (beta >> 1)) >> 3) ? 1 : 0;
    [all...]
  /frameworks/native/services/sensorservice/
Fusion.cpp 530 const vec3_t dq(K[0]*e);
532 q += getF(q)*(0.5f*dq);
  /external/boringssl/src/crypto/perlasm/
x86masm.pl 28 elsif ($opcode !~ /mov[dq]$/)
131 DQ 2 dup (?)
  /external/libvpx/libvpx/vp9/common/x86/
vp9_mfqe_sse2.asm 278 dq 0, 128
280 dq 128, 0

Completed in 1113 milliseconds

12 3 4 5