HomeSort by relevance Sort by last modified time
    Searched refs:dq (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/libvpx/libvpx/vp8/common/x86/
idct_blk_mmx.c 16 extern void vp8_dequantize_b_impl_mmx(short *sq, short *dq, short *q);
20 short *dq = (short *)d->dqcoeff; local
22 vp8_dequantize_b_impl_mmx(sq, dq, DQC);
idct_blk_sse2.c 14 void vp8_idct_dequant_0_2x_sse2(short *q, short *dq, unsigned char *dst,
16 void vp8_idct_dequant_full_2x_sse2(short *q, short *dq, unsigned char *dst,
19 void vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst,
26 vp8_idct_dequant_full_2x_sse2(q, dq, dst, stride);
28 vp8_idct_dequant_0_2x_sse2(q, dq, dst, stride);
33 vp8_idct_dequant_full_2x_sse2(q + 32, dq, dst + 8, stride);
35 vp8_idct_dequant_0_2x_sse2(q + 32, dq, dst + 8, stride);
44 void vp8_dequant_idct_add_uv_block_sse2(short *q, short *dq,
50 vp8_idct_dequant_full_2x_sse2(q, dq, dstu, stride);
52 vp8_idct_dequant_0_2x_sse2(q, dq, dstu, stride)
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/neon/
idct_blk_neon.c 17 void idct_dequant_full_2x_neon(short *q, short *dq, unsigned char *dst,
19 void idct_dequant_0_2x_neon(short *q, short dq, unsigned char *dst, int stride);
21 void vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *dst,
28 idct_dequant_full_2x_neon(q, dq, dst, stride);
30 idct_dequant_0_2x_neon(q, dq[0], dst, stride);
35 idct_dequant_full_2x_neon(q + 32, dq, dst + 8, stride);
37 idct_dequant_0_2x_neon(q + 32, dq[0], dst + 8, stride);
45 void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq,
51 idct_dequant_full_2x_neon(q, dq, dstu, stride);
53 idct_dequant_0_2x_neon(q, dq[0], dstu, stride)
    [all...]
idct_dequant_0_2x_neon.c 13 void idct_dequant_0_2x_neon(int16_t *q, int16_t dq, unsigned char *dst,
22 a0 = ((q[0] * dq) + 4) >> 3;
23 a1 = ((q[16] * dq) + 4) >> 3;
  /external/strace/
quota.c 198 struct if_dqblk dq; local
205 if (umove_or_printaddr(tcp, data, &dq))
207 PRINT_FIELD_U("{", dq, dqb_bhardlimit);
208 PRINT_FIELD_U(", ", dq, dqb_bsoftlimit);
209 PRINT_FIELD_U(", ", dq, dqb_curspace);
210 PRINT_FIELD_U(", ", dq, dqb_ihardlimit);
211 PRINT_FIELD_U(", ", dq, dqb_isoftlimit);
212 PRINT_FIELD_U(", ", dq, dqb_curinodes);
214 PRINT_FIELD_U(", ", dq, dqb_btime);
215 PRINT_FIELD_U(", ", dq, dqb_itime)
227 struct if_nextdqblk dq; local
270 struct xfs_dqblk dq; local
334 struct if_dqinfo dq; local
352 struct xfs_dqstats dq; local
387 struct fs_quota_statv dq; local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/service/
AttachmentServiceTests.java 49 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
50 assertEquals(0, dq.getSize());
51 assertTrue(dq.isEmpty());
55 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
58 final boolean result = dq.addRequest(dr);
60 assertEquals(1, dq.getSize());
61 assertFalse(dq.isEmpty());
65 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
68 dq.addRequest(null);
73 assertEquals(0, dq.getSize())
78 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
94 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
112 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
130 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
149 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
163 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
174 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
189 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
225 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
231 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
304 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
356 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); local
    [all...]
  /external/libvpx/libvpx/vp8/common/
idct_blk.c 15 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *dest,
21 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst,
28 vp8_dequant_idct_add_c(q, dq, dst, stride);
30 vp8_dc_only_idct_add_c(q[0] * dq[0], dst, stride, dst, stride);
42 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dstu,
50 vp8_dequant_idct_add_c(q, dq, dstu, stride);
52 vp8_dc_only_idct_add_c(q[0] * dq[0], dstu, stride, dstu, stride);
66 vp8_dequant_idct_add_c(q, dq, dstv, stride);
68 vp8_dc_only_idct_add_c(q[0] * dq[0], dstv, stride, dstv, stride);
dequantize.c 18 short *DQ = d->dqcoeff;
22 DQ[i] = Q[i] * DQC[i];
26 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *dest,
31 input[i] = dq[i] * input[i];
  /external/libvpx/libvpx/vp8/common/mips/dspr2/
dequantize_dspr2.c 16 void vp8_dequant_idct_add_dspr2(short *input, short *dq, unsigned char *dest,
21 input[i] = dq[i] * input[i];
idct_blk_dspr2.c 16 void vp8_dequant_idct_add_y_block_dspr2(short *q, short *dq, unsigned char *dst,
23 vp8_dequant_idct_add_dspr2(q, dq, dst, stride);
25 vp8_dc_only_idct_add_dspr2(q[0] * dq[0], dst, stride, dst, stride);
37 void vp8_dequant_idct_add_uv_block_dspr2(short *q, short *dq,
46 vp8_dequant_idct_add_dspr2(q, dq, dstu, stride);
48 vp8_dc_only_idct_add_dspr2(q[0] * dq[0], dstu, stride, dstu, stride);
62 vp8_dequant_idct_add_dspr2(q, dq, dstv, stride);
64 vp8_dc_only_idct_add_dspr2(q[0] * dq[0], dstv, stride, dstv, stride);
  /external/e2fsprogs/debugfs/
quota.c 92 static int list_quota_callback(struct dquot *dq,
96 dq->dq_id, (long long)dq->dq_dqb.dqb_curspace,
97 (long long)dq->dq_dqb.dqb_bsoftlimit,
98 (long long)dq->dq_dqb.dqb_bhardlimit,
99 (long long)dq->dq_dqb.dqb_curinodes,
100 (long long)dq->dq_dqb.dqb_isoftlimit,
101 (long long)dq->dq_dqb.dqb_ihardlimit);
138 struct dquot *dq; local
163 dq = qh->qh_ops->read_dquot(qh, id)
    [all...]
  /external/clang/test/CodeGen/
debug-info-crash.c 10 dispatch_item_t LEGACY_dispatch_call(dispatch_queue_t dq,
14 dispatch_async(dq, ^{
  /external/e2fsprogs/lib/support/
mkquota.c 49 static void print_dquot(const char *desc, struct dquot *dq)
54 dq->dq_id, dq->dq_dqb.dqb_curspace,
55 dq->dq_dqb.dqb_bsoftlimit, dq->dq_dqb.dqb_bhardlimit,
56 dq->dq_dqb.dqb_curinodes,
57 dq->dq_dqb.dqb_isoftlimit, dq->dq_dqb.dqb_ihardlimit);
61 struct dquot *dq EXT2FS_ATTR((unused)))
148 struct dquot *dq; local
350 struct dquot *dq; local
376 struct dquot *dq; local
403 struct dquot *dq; local
428 struct dquot *dq; local
507 struct dquot *dq; local
626 struct dquot *dq; local
    [all...]
  /external/google-breakpad/src/tools/mac/upload_system_symbols/
upload_system_symbols.go 137 dq := StartDumpQueue(*systemRoot, dumpPath, uq)
138 dq.Wait()
229 dq := &DumpQueue{
234 dq.WorkerPool = StartWorkerPool(12, dq.worker)
236 findLibsInRoot(root, dq)
238 return dq
243 func (dq *DumpQueue) DumpSymbols(filepath string, arch string) {
244 dq.queue <- dumpRequest{
250 func (dq *DumpQueue) Wait()
    [all...]
  /external/strace/tests/
quotactl-xfs.c 91 struct fs_disk_quota *dq = ptr; local
95 printf("%p", dq);
99 PRINT_FIELD_D("{", dq, d_version);
101 printflags(xfs_dqblk_flags, (uint8_t) dq->d_flags, "XFS_???_QUOTA");
103 PRINT_FIELD_X(", ", dq, d_fieldmask);
104 PRINT_FIELD_U(", ", dq, d_id);
105 PRINT_FIELD_U(", ", dq, d_blk_hardlimit);
106 PRINT_FIELD_U(", ", dq, d_blk_softlimit);
107 PRINT_FIELD_U(", ", dq, d_ino_hardlimit);
108 PRINT_FIELD_U(", ", dq, d_ino_softlimit)
    [all...]
  /external/strace/tests-m32/
quotactl-xfs.c 91 struct fs_disk_quota *dq = ptr; local
95 printf("%p", dq);
99 PRINT_FIELD_D("{", dq, d_version);
101 printflags(xfs_dqblk_flags, (uint8_t) dq->d_flags, "XFS_???_QUOTA");
103 PRINT_FIELD_X(", ", dq, d_fieldmask);
104 PRINT_FIELD_U(", ", dq, d_id);
105 PRINT_FIELD_U(", ", dq, d_blk_hardlimit);
106 PRINT_FIELD_U(", ", dq, d_blk_softlimit);
107 PRINT_FIELD_U(", ", dq, d_ino_hardlimit);
108 PRINT_FIELD_U(", ", dq, d_ino_softlimit)
    [all...]
  /external/strace/tests-mx32/
quotactl-xfs.c 91 struct fs_disk_quota *dq = ptr; local
95 printf("%p", dq);
99 PRINT_FIELD_D("{", dq, d_version);
101 printflags(xfs_dqblk_flags, (uint8_t) dq->d_flags, "XFS_???_QUOTA");
103 PRINT_FIELD_X(", ", dq, d_fieldmask);
104 PRINT_FIELD_U(", ", dq, d_id);
105 PRINT_FIELD_U(", ", dq, d_blk_hardlimit);
106 PRINT_FIELD_U(", ", dq, d_blk_softlimit);
107 PRINT_FIELD_U(", ", dq, d_ino_hardlimit);
108 PRINT_FIELD_U(", ", dq, d_ino_softlimit)
    [all...]
  /external/compiler-rt/lib/asan/
asan_mac.cc 191 INTERCEPTOR(void, dispatch_x_f, dispatch_queue_t dq, void *ctxt, \
200 return REAL(dispatch_x_f)(dq, (void*)asan_ctxt, \
209 dispatch_queue_t dq, void *ctxt,
217 return REAL(dispatch_after_f)(when, dq, (void*)asan_ctxt,
222 dispatch_queue_t dq, void *ctxt,
231 REAL(dispatch_group_async_f)(group, dq, (void*)asan_ctxt,
237 void dispatch_async(dispatch_queue_t dq, void(^work)(void));
238 void dispatch_group_async(dispatch_group_t dg, dispatch_queue_t dq,
257 dispatch_queue_t dq, void(^work)(void)) {
260 REAL(dispatch_async)(dq, asan_block)
    [all...]
  /external/ltp/testcases/kernel/syscalls/quotactl/
quotactl01.c 83 struct dqblk dq; variable in typeref:struct:dqblk
109 if (quota_started == 1 && QUOTACTL(Q_QUOTAOFF, &dq)) {
231 ret = QUOTACTL(cmd[i], &dq);
  /external/libvpx/config/mips32-dspr2/
vp8_rtcd.h 66 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
67 void vp8_dequant_idct_add_dspr2(short *input, short *dq, unsigned char *output, int stride);
70 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
71 void vp8_dequant_idct_add_uv_block_dspr2(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
74 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
75 void vp8_dequant_idct_add_y_block_dspr2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
  /external/ltp/tools/pounder21/src/memxfer5b/
memxfer5b.c 76 double *dp, *dq; local
224 dq = (double *)p2;
226 *dp++ = *dq++;
227 *dp++ = *dq++;
228 *dp++ = *dq++;
229 *dp++ = *dq++;
  /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;
  /external/libvpx/config/arm-neon/
vp8_rtcd.h 72 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
73 void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, int stride);
76 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_uv_block_neon(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
80 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
81 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 72 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
73 void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, int stride);
76 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_uv_block_neon(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
80 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
81 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 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);

Completed in 775 milliseconds

1 2 3 4 5