Home
last modified time | relevance | path

Searched refs:dq (Results 1 – 25 of 111) sorted by relevance

12345

/external/strace/
Dquota.c260 struct if_dqblk dq; in decode_cmd_data() local
262 if (umove_or_printaddr(tcp, data, &dq)) in decode_cmd_data()
264 tprintf("{bhardlimit=%" PRIu64 ", ", dq.dqb_bhardlimit); in decode_cmd_data()
265 tprintf("bsoftlimit=%" PRIu64 ", ", dq.dqb_bsoftlimit); in decode_cmd_data()
266 tprintf("curspace=%" PRIu64 ", ", dq.dqb_curspace); in decode_cmd_data()
267 tprintf("ihardlimit=%" PRIu64 ", ", dq.dqb_ihardlimit); in decode_cmd_data()
268 tprintf("isoftlimit=%" PRIu64 ", ", dq.dqb_isoftlimit); in decode_cmd_data()
269 tprintf("curinodes=%" PRIu64 ", ", dq.dqb_curinodes); in decode_cmd_data()
271 tprintf("btime=%" PRIu64 ", ", dq.dqb_btime); in decode_cmd_data()
272 tprintf("itime=%" PRIu64 ", ", dq.dqb_itime); in decode_cmd_data()
[all …]
/external/libvpx/libvpx/vp8/common/x86/
Didct_blk_mmx.c16 extern void vp8_dequantize_b_impl_mmx(short *sq, short *dq, short *q);
21 short *dq = (short *) d->dqcoeff; in vp8_dequantize_b_mmx() local
23 vp8_dequantize_b_impl_mmx(sq, dq, DQC); in vp8_dequantize_b_mmx()
27 (short *q, short *dq, in vp8_dequant_idct_add_y_block_mmx() argument
35 vp8_dequant_idct_add_mmx (q, dq, dst, stride); in vp8_dequant_idct_add_y_block_mmx()
38 vp8_dc_only_idct_add_mmx (q[0]*dq[0], dst, stride, dst, stride); in vp8_dequant_idct_add_y_block_mmx()
43 vp8_dequant_idct_add_mmx (q+16, dq, dst+4, stride); in vp8_dequant_idct_add_y_block_mmx()
46 vp8_dc_only_idct_add_mmx (q[16]*dq[0], dst+4, stride, in vp8_dequant_idct_add_y_block_mmx()
52 vp8_dequant_idct_add_mmx (q+32, dq, dst+8, stride); in vp8_dequant_idct_add_y_block_mmx()
55 vp8_dc_only_idct_add_mmx (q[32]*dq[0], dst+8, stride, in vp8_dequant_idct_add_y_block_mmx()
[all …]
Didct_blk_sse2.c15 (short *q, short *dq ,
18 (short *q, short *dq ,
22 (short *q, short *dq, in vp8_dequant_idct_add_y_block_sse2() argument
32 vp8_idct_dequant_full_2x_sse2 (q, dq, dst, stride); in vp8_dequant_idct_add_y_block_sse2()
34 vp8_idct_dequant_0_2x_sse2 (q, dq, dst, stride); in vp8_dequant_idct_add_y_block_sse2()
39 vp8_idct_dequant_full_2x_sse2 (q+32, dq, dst+8, stride); in vp8_dequant_idct_add_y_block_sse2()
41 vp8_idct_dequant_0_2x_sse2 (q+32, dq, dst+8, stride); in vp8_dequant_idct_add_y_block_sse2()
50 (short *q, short *dq, in vp8_dequant_idct_add_uv_block_sse2() argument
56 vp8_idct_dequant_full_2x_sse2 (q, dq, dstu, stride); in vp8_dequant_idct_add_uv_block_sse2()
58 vp8_idct_dequant_0_2x_sse2 (q, dq, dstu, stride); in vp8_dequant_idct_add_uv_block_sse2()
[all …]
/external/libvpx/libvpx/vp8/common/arm/neon/
Didct_blk_neon.c17 void idct_dequant_full_2x_neon(short *q, short *dq,
19 void idct_dequant_0_2x_neon(short *q, short dq,
23 void vp8_dequant_idct_add_y_block_neon(short *q, short *dq, in vp8_dequant_idct_add_y_block_neon() argument
34 idct_dequant_full_2x_neon (q, dq, dst, stride); in vp8_dequant_idct_add_y_block_neon()
36 idct_dequant_0_2x_neon (q, dq[0], dst, stride); in vp8_dequant_idct_add_y_block_neon()
42 idct_dequant_full_2x_neon (q+32, dq, dst+8, stride); in vp8_dequant_idct_add_y_block_neon()
44 idct_dequant_0_2x_neon (q+32, dq[0], dst+8, stride); in vp8_dequant_idct_add_y_block_neon()
52 void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, in vp8_dequant_idct_add_uv_block_neon() argument
60 idct_dequant_full_2x_neon (q, dq, dstu, stride); in vp8_dequant_idct_add_uv_block_neon()
62 idct_dequant_0_2x_neon (q, dq[0], dstu, stride); in vp8_dequant_idct_add_uv_block_neon()
[all …]
Didct_dequant_0_2x_neon.c15 int16_t dq, in idct_dequant_0_2x_neon() argument
26 a0 = ((q[0] * dq) + 4) >> 3; in idct_dequant_0_2x_neon()
27 a1 = ((q[16] * dq) + 4) >> 3; in idct_dequant_0_2x_neon()
Ddequant_idct_neon.c18 int16_t *dq, in vp8_dequant_idct_add_neon() argument
39 q5 = vld1q_s16(dq); in vp8_dequant_idct_add_neon()
40 dq += 8; in vp8_dequant_idct_add_neon()
41 q6 = vld1q_s16(dq); in vp8_dequant_idct_add_neon()
/external/libvpx/libvpx/vp8/common/arm/armv6/
Didct_blk_v6.c15 void vp8_dequant_idct_add_y_block_v6(short *q, short *dq, in vp8_dequant_idct_add_y_block_v6() argument
24 vp8_dequant_idct_add_v6 (q, dq, dst, stride); in vp8_dequant_idct_add_y_block_v6()
27 vp8_dc_only_idct_add_v6 (q[0]*dq[0], dst, stride, dst, stride); in vp8_dequant_idct_add_y_block_v6()
32 vp8_dequant_idct_add_v6 (q+16, dq, dst+4, stride); in vp8_dequant_idct_add_y_block_v6()
35 vp8_dc_only_idct_add_v6 (q[16]*dq[0], dst+4, stride, dst+4, stride); in vp8_dequant_idct_add_y_block_v6()
40 vp8_dequant_idct_add_v6 (q+32, dq, dst+8, stride); in vp8_dequant_idct_add_y_block_v6()
43 vp8_dc_only_idct_add_v6 (q[32]*dq[0], dst+8, stride, dst+8, stride); in vp8_dequant_idct_add_y_block_v6()
48 vp8_dequant_idct_add_v6 (q+48, dq, dst+12, stride); in vp8_dequant_idct_add_y_block_v6()
51 vp8_dc_only_idct_add_v6 (q[48]*dq[0], dst+12, stride,dst+12,stride); in vp8_dequant_idct_add_y_block_v6()
61 void vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, in vp8_dequant_idct_add_uv_block_v6() argument
[all …]
/external/e2fsprogs/lib/quota/
Dmkquota.c109 struct dquot *dq; in write_dquots() local
112 dq = dnode_get(n); in write_dquots()
113 if (dq) { in write_dquots()
114 dq->dq_h = qh; in write_dquots()
115 update_grace_times(dq); in write_dquots()
116 qh->qh_ops->commit_dquot(dq); in write_dquots()
269 struct dquot *dq; in get_dq() local
274 dq = dnode_get(n); in get_dq()
276 if (ext2fs_get_mem(sizeof(struct dquot), &dq)) { in get_dq()
280 memset(dq, 0, sizeof(struct dquot)); in get_dq()
[all …]
/external/google-breakpad/src/tools/mac/upload_system_symbols/
Dupload_system_symbols.go137 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() {
251 dq.WorkerPool.Wait()
[all …]
/external/libvpx/libvpx/vp8/common/
Didct_blk.c15 void vp8_dequant_idct_add_c(short *input, short *dq,
22 (short *q, short *dq, in vp8_dequant_idct_add_y_block_c() argument
32 vp8_dequant_idct_add_c (q, dq, dst, stride); in vp8_dequant_idct_add_y_block_c()
35 vp8_dc_only_idct_add_c (q[0]*dq[0], dst, stride, dst, stride); in vp8_dequant_idct_add_y_block_c()
48 (short *q, short *dq, in vp8_dequant_idct_add_uv_block_c() argument
58 vp8_dequant_idct_add_c (q, dq, dstu, stride); in vp8_dequant_idct_add_uv_block_c()
61 vp8_dc_only_idct_add_c (q[0]*dq[0], dstu, stride, dstu, stride); in vp8_dequant_idct_add_uv_block_c()
77 vp8_dequant_idct_add_c (q, dq, dstv, stride); in vp8_dequant_idct_add_uv_block_c()
80 vp8_dc_only_idct_add_c (q[0]*dq[0], dstv, stride, dstv, stride); in vp8_dequant_idct_add_uv_block_c()
Ddequantize.c29 void vp8_dequant_idct_add_c(short *input, short *dq, in vp8_dequant_idct_add_c() argument
36 input[i] = dq[i] * input[i]; in vp8_dequant_idct_add_c()
/external/libvpx/libvpx/vp8/common/mips/dspr2/
Didct_blk_dspr2.c17 (short *q, short *dq, in vp8_dequant_idct_add_y_block_dspr2() argument
27 vp8_dequant_idct_add_dspr2(q, dq, dst, stride); in vp8_dequant_idct_add_y_block_dspr2()
30 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dst, stride, dst, stride); in vp8_dequant_idct_add_y_block_dspr2()
43 (short *q, short *dq, in vp8_dequant_idct_add_uv_block_dspr2() argument
53 vp8_dequant_idct_add_dspr2(q, dq, dstu, stride); in vp8_dequant_idct_add_uv_block_dspr2()
56 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dstu, stride, dstu, stride); in vp8_dequant_idct_add_uv_block_dspr2()
72 vp8_dequant_idct_add_dspr2(q, dq, dstv, stride); in vp8_dequant_idct_add_uv_block_dspr2()
75 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dstv, stride, dstv, stride); in vp8_dequant_idct_add_uv_block_dspr2()
Ddequantize_dspr2.c17 void vp8_dequant_idct_add_dspr2(short *input, short *dq, in vp8_dequant_idct_add_dspr2() argument
24 input[i] = dq[i] * input[i]; in vp8_dequant_idct_add_dspr2()
/external/compiler-rt/lib/asan/
Dasan_mac.cc158 INTERCEPTOR(void, dispatch_x_f, dispatch_queue_t dq, void *ctxt, \
167 return REAL(dispatch_x_f)(dq, (void*)asan_ctxt, \
176 dispatch_queue_t dq, void *ctxt, in INTERCEPT_DISPATCH_X_F_3()
184 return REAL(dispatch_after_f)(when, dq, (void*)asan_ctxt, in INTERCEPT_DISPATCH_X_F_3()
189 dispatch_queue_t dq, void *ctxt, in INTERCEPTOR() argument
198 REAL(dispatch_group_async_f)(group, dq, (void*)asan_ctxt, in INTERCEPTOR()
204 void dispatch_async(dispatch_queue_t dq, void(^work)(void));
205 void dispatch_group_async(dispatch_group_t dg, dispatch_queue_t dq,
224 dispatch_queue_t dq, void(^work)(void)) {
227 REAL(dispatch_async)(dq, asan_block);
[all …]
/external/llvm/test/CodeGen/X86/
Dsse2-intrinsics-x86-upgrade.ll5 %res = call <2 x i64> @llvm.x86.sse2.psll.dq.bs(<2 x i64> %a0, i32 7) ; <<2 x i64>> [#uses=1]
8 declare <2 x i64> @llvm.x86.sse2.psll.dq.bs(<2 x i64>, i32) nounwind readnone
13 %res = call <2 x i64> @llvm.x86.sse2.psrl.dq.bs(<2 x i64> %a0, i32 7) ; <<2 x i64>> [#uses=1]
16 declare <2 x i64> @llvm.x86.sse2.psrl.dq.bs(<2 x i64>, i32) nounwind readnone
20 %res = call <2 x i64> @llvm.x86.sse2.psll.dq(<2 x i64> %a0, i32 8) ; <<2 x i64>> [#uses=1]
23 declare <2 x i64> @llvm.x86.sse2.psll.dq(<2 x i64>, i32) nounwind readnone
28 %res = call <2 x i64> @llvm.x86.sse2.psrl.dq(<2 x i64> %a0, i32 8) ; <<2 x i64>> [#uses=1]
31 declare <2 x i64> @llvm.x86.sse2.psrl.dq(<2 x i64>, i32) nounwind readnone
/external/libvpx/config/arm-neon/
Dvp8_rtcd.h82 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
83 void vp8_dequant_idct_add_v6(short *input, short *dq, unsigned char *output, int stride);
84 void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, int stride);
87 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_…
88 void vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst…
89 void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, unsigned char *dst_u, unsigned char *d…
92 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs…
93 void vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, int stride, char *eob…
94 void vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *dst, int stride, char *e…
/external/libvpx/libvpx/vp8/common/mips/msa/
Didct_msa.c335 void vp8_dequant_idct_add_msa(int16_t *input, int16_t *dq, in vp8_dequant_idct_add_msa() argument
338 dequant_idct4x4_addblk_msa(input, dq, dest, stride); in vp8_dequant_idct_add_msa()
355 void vp8_dequant_idct_add_y_block_msa(int16_t *q, int16_t *dq, in vp8_dequant_idct_add_y_block_msa() argument
368 dequant_idct4x4_addblk_2x_msa(q, dq, dst, stride); in vp8_dequant_idct_add_y_block_msa()
372 dequant_idct_addconst_2x_msa(q, dq, dst, stride); in vp8_dequant_idct_add_y_block_msa()
382 dequant_idct4x4_addblk_2x_msa(q, dq, dst + 8, stride); in vp8_dequant_idct_add_y_block_msa()
386 dequant_idct_addconst_2x_msa(q, dq, dst + 8, stride); in vp8_dequant_idct_add_y_block_msa()
396 void vp8_dequant_idct_add_uv_block_msa(int16_t *q, int16_t *dq, in vp8_dequant_idct_add_uv_block_msa() argument
406 dequant_idct4x4_addblk_2x_msa(q, dq, dstu, stride); in vp8_dequant_idct_add_uv_block_msa()
410 dequant_idct_addconst_2x_msa(q, dq, dstu, stride); in vp8_dequant_idct_add_uv_block_msa()
[all …]
/external/libvpx/config/mips32-dspr2/
Dvp8_rtcd.h69 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
70 void vp8_dequant_idct_add_dspr2(short *input, short *dq, unsigned char *output, int stride);
73 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_…
74 void vp8_dequant_idct_add_uv_block_dspr2(short *q, short *dq, unsigned char *dst_u, unsigned char *…
77 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs…
78 void vp8_dequant_idct_add_y_block_dspr2(short *q, short *dq, unsigned char *dst, int stride, char *…
/external/libvpx/config/arm64/
Dvp8_rtcd.h74 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
75 void vp8_dequant_idct_add_neon(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_…
79 void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, unsigned char *dst_u, unsigned char *d…
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_neon(short *q, short *dq, unsigned char *dst, int stride, char *e…
/external/libvpx/config/arm/
Dvp8_rtcd.h73 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
74 void vp8_dequant_idct_add_v6(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_…
78 void vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst…
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_v6(short *q, short *dq, unsigned char *dst, int stride, char *eob…
/external/webp/src/enc/
Dframe.c36 float dq; member
49 s->dq = 10.f; in InitPassStats()
64 float dq; in ComputeNextQ() local
66 dq = (s->value > s->target) ? -s->dq : s->dq; in ComputeNextQ()
70 dq = (float)(slope * (s->last_q - s->q)); in ComputeNextQ()
72 dq = 0.; // we're done?! in ComputeNextQ()
75 s->dq = Clamp(dq, -30.f, 30.f); in ComputeNextQ()
78 s->q = Clamp(s->q + s->dq, 0.f, 100.f); in ComputeNextQ()
602 const int is_last_pass = (fabs(stats.dq) <= DQ_LIMIT) || in StatLoop()
623 if (fabs(stats.dq) <= DQ_LIMIT) break; in StatLoop()
[all …]
/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_dct_ssse3_x86_64.asm35 INTERLEAVE_2X dq, %1, %3, %9
36 INTERLEAVE_2X dq, %2, %4, %9
37 INTERLEAVE_2X dq, %5, %7, %9
38 INTERLEAVE_2X dq, %6, %8, %9
/external/clang/test/CodeGen/
Ddebug-info-crash.c10 dispatch_item_t LEGACY_dispatch_call(dispatch_queue_t dq, in LEGACY_dispatch_call() argument
14 dispatch_async(dq, ^{ in LEGACY_dispatch_call()
/external/libvpx/config/x86_64/
Dvp8_rtcd.h97 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
98 void vp8_dequant_idct_add_mmx(short *input, short *dq, unsigned char *output, int stride);
101 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_…
102 void vp8_dequant_idct_add_uv_block_mmx(short *q, short *dq, unsigned char *dst_u, unsigned char *ds…
103 void vp8_dequant_idct_add_uv_block_sse2(short *q, short *dq, unsigned char *dst_u, unsigned char *d…
106 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs…
107 void vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eo…
108 void vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *e…
/external/libvpx/config/x86/
Dvp8_rtcd.h97 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
98 void vp8_dequant_idct_add_mmx(short *input, short *dq, unsigned char *output, int stride);
101 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_…
102 void vp8_dequant_idct_add_uv_block_mmx(short *q, short *dq, unsigned char *dst_u, unsigned char *ds…
103 void vp8_dequant_idct_add_uv_block_sse2(short *q, short *dq, unsigned char *dst_u, unsigned char *d…
106 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs…
107 void vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eo…
108 void vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *e…

12345