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

12 3 4 5

  /frameworks/native/cmds/installd/
CacheTracker.cpp 76 struct dqblk dq; local
78 reinterpret_cast<char*>(&dq)) != 0) {
84 cacheUsed += dq.dqb_curspace;
88 reinterpret_cast<char*>(&dq)) != 0) {
94 cacheUsed += dq.dqb_curspace;
InstalldNativeService.cpp 366 struct dqblk dq; local
368 reinterpret_cast<char*>(&dq)) != 0) {
374 if ((dq.dqb_bhardlimit == 0) || (dq.dqb_ihardlimit == 0)) {
382 dq.dqb_valid = QIF_LIMITS;
383 dq.dqb_bhardlimit =
385 dq.dqb_ihardlimit = (stat.f_files / 2);
387 reinterpret_cast<char*>(&dq)) != 0) {
1232 struct dqblk dq; local
1585 struct dqblk dq; local
1746 struct dqblk dq; local
2611 struct dqblk dq; local
    [all...]
  /external/libvpx/config/arm-neon/
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_neon(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_neon(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_neon(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /external/libvpx/config/arm64/
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_neon(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_neon(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_neon(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /external/libvpx/config/mips32-msa/
vp8_rtcd.h 74 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
75 void vp8_dequant_idct_add_msa(short *input, short *dq, unsigned char *output, int stride);
78 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
79 void vp8_dequant_idct_add_uv_block_msa(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
82 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
83 void vp8_dequant_idct_add_y_block_msa(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /external/libvpx/config/mips64-msa/
vp8_rtcd.h 74 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
75 void vp8_dequant_idct_add_msa(short *input, short *dq, unsigned char *output, int stride);
78 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
79 void vp8_dequant_idct_add_uv_block_msa(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
82 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
83 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:__anon43744
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 90 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
91 void vp8_dequant_idct_add_mmx(short *input, short *dq, unsigned char *output, int stride);
94 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
95 void vp8_dequant_idct_add_uv_block_sse2(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_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /external/libvpx/config/x86_64/
vp8_rtcd.h 90 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
91 void vp8_dequant_idct_add_mmx(short *input, short *dq, unsigned char *output, int stride);
94 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
95 void vp8_dequant_idct_add_uv_block_sse2(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_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /device/linaro/bootloader/arm-trusted-firmware/plat/hisilicon/hikey/
hikey_ddr.c 388 unsigned int data, wdet, zero_bdl = 0, dq[4]; local
417 dq[0] = mmio_read_32((0xf712c000 + 0x234)) & 0x1f00;
418 dq[1] = mmio_read_32((0xf712c000 + 0x2b4)) & 0x1f00;
419 dq[2] = mmio_read_32((0xf712c000 + 0x334)) & 0x1f00;
420 dq[3] = mmio_read_32((0xf712c000 + 0x3b4)) & 0x1f00;
423 mmio_write_32((0xf712c000 + 0x234), dq[0]);
424 mmio_write_32((0xf712c000 + 0x2b4), dq[1]);
425 mmio_write_32((0xf712c000 + 0x334), dq[2]);
426 mmio_write_32((0xf712c000 + 0x3b4), dq[3]);
468 dq[0] = dq[0] - 0x100
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
dequantize_mmx.asm 16 ;void vp8_dequantize_b_impl_mmx(short *sq, short *dq, short *q)
27 mov rdi, arg(1) ;dq
56 ;short *dq, 1
69 mov rdx, arg(1) ;dq
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
RsaKeyTest.java 1402 BigInteger dq = key.getPrimeExponentQ(); local
    [all...]
  /external/libvpx/config/arm/
vp8_rtcd.h 63 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
66 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
69 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 63 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
66 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
69 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 63 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
66 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
69 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 63 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
66 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
69 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.27/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

Completed in 1615 milliseconds

12 3 4 5