Searched defs:dq (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
H A Dfloat.asm4 dq 3.141592653589793 label
9 dq -45102571092751092341095.5827509174509178450917845019 label
H A Dfloat-err.asm5 dq 3.141592653589793e-158105 label
11 dq -45102571092751092341095.5827509174509178450917845019e15555 label
H A Dinteger-warn.asm5 dq 0xABCDEF012345678989abb label
H A Dinteger.asm6 dq 0xABCDEF0123456789 label
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
H A Duscore.asm0 dq 0000_1111_2222_3333h
2 dq 0000111122223333h label
1 dq 0000_1111_2222_3333h label
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/mips/dspr2/
H A Ddequantize_dspr2.c17 void vp8_dequant_idct_add_dspr2(short *input, short *dq, argument
24 input[i] = dq[i] * input[i];
H A Didct_blk_dspr2.c17 (short *q, short *dq,
27 vp8_dequant_idct_add_dspr2(q, dq, dst, stride);
30 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dst, stride, dst, stride);
43 (short *q, short *dq,
53 vp8_dequant_idct_add_dspr2(q, dq, dstu, stride);
56 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dstu, stride, dstu, stride);
72 vp8_dequant_idct_add_dspr2(q, dq, dstv, stride);
75 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dstv, stride, dstv, stride);
16 vp8_dequant_idct_add_y_block_dspr2(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
42 vp8_dequant_idct_add_uv_block_dspr2(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
/external/libvpx/libvpx/vp8/common/mips/dspr2/
H A Ddequantize_dspr2.c17 void vp8_dequant_idct_add_dspr2(short *input, short *dq, argument
24 input[i] = dq[i] * input[i];
H A Didct_blk_dspr2.c17 (short *q, short *dq,
27 vp8_dequant_idct_add_dspr2(q, dq, dst, stride);
30 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dst, stride, dst, stride);
43 (short *q, short *dq,
53 vp8_dequant_idct_add_dspr2(q, dq, dstu, stride);
56 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dstu, stride, dstu, stride);
72 vp8_dequant_idct_add_dspr2(q, dq, dstv, stride);
75 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dstv, stride, dstv, stride);
16 vp8_dequant_idct_add_y_block_dspr2(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
42 vp8_dequant_idct_add_uv_block_dspr2(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/armv6/
H A Didct_blk_v6.c15 void vp8_dequant_idct_add_y_block_v6(short *q, short *dq, argument
24 vp8_dequant_idct_add_v6 (q, dq, dst, stride);
27 vp8_dc_only_idct_add_v6 (q[0]*dq[0], dst, stride, dst, stride);
32 vp8_dequant_idct_add_v6 (q+16, dq, dst+4, stride);
35 vp8_dc_only_idct_add_v6 (q[16]*dq[0], dst+4, stride, dst+4, stride);
40 vp8_dequant_idct_add_v6 (q+32, dq, dst+8, stride);
43 vp8_dc_only_idct_add_v6 (q[32]*dq[0], dst+8, stride, dst+8, stride);
48 vp8_dequant_idct_add_v6 (q+48, dq, dst+12, stride);
51 vp8_dc_only_idct_add_v6 (q[48]*dq[0], dst+12, stride,dst+12,stride);
61 void vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/neon/
H A 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, argument
34 idct_dequant_full_2x_neon (q, dq, dst, stride);
36 idct_dequant_0_2x_neon (q, dq[0], dst, stride);
42 idct_dequant_full_2x_neon (q+32, dq, dst+8, stride);
44 idct_dequant_0_2x_neon (q+32, dq[0], dst+8, stride);
52 void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, argument
60 idct_dequant_full_2x_neon (q, dq, dstu, stride);
62 idct_dequant_0_2x_neon (q, dq[
[all...]
H A Didct_dequant_0_2x_neon.c15 int16_t dq,
25 a0 = ((q[0] * dq) + 4) >> 3;
26 a1 = ((q[16] * dq) + 4) >> 3;
13 idct_dequant_0_2x_neon( int16_t *q, int16_t dq, unsigned char *dst, int stride) argument
H A Ddequant_idct_neon.c18 int16_t *dq,
38 // load dq
39 q5 = vld1q_s16(dq);
40 dq += 8;
41 q6 = vld1q_s16(dq);
16 vp8_dequant_idct_add_neon( int16_t *input, int16_t *dq, unsigned char *dst, int stride) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
H A Didct_blk_sse2.c15 (short *q, short *dq ,
18 (short *q, short *dq ,
22 (short *q, short *dq,
32 vp8_idct_dequant_full_2x_sse2 (q, dq, dst, stride);
34 vp8_idct_dequant_0_2x_sse2 (q, dq, dst, stride);
39 vp8_idct_dequant_full_2x_sse2 (q+32, dq, dst+8, stride);
41 vp8_idct_dequant_0_2x_sse2 (q+32, dq, dst+8, stride);
50 (short *q, short *dq,
56 vp8_idct_dequant_full_2x_sse2 (q, dq, dstu, stride);
58 vp8_idct_dequant_0_2x_sse2 (q, dq, dst
21 vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
49 vp8_dequant_idct_add_uv_block_sse2(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
H A Didct_blk_mmx.c16 extern void vp8_dequantize_b_impl_mmx(short *sq, short *dq, short *q);
21 short *dq = (short *) d->dqcoeff; local
23 vp8_dequantize_b_impl_mmx(sq, dq, DQC);
27 (short *q, short *dq,
35 vp8_dequant_idct_add_mmx (q, dq, dst, stride);
38 vp8_dc_only_idct_add_mmx (q[0]*dq[0], dst, stride, dst, stride);
43 vp8_dequant_idct_add_mmx (q+16, dq, dst+4, stride);
46 vp8_dc_only_idct_add_mmx (q[16]*dq[0], dst+4, stride,
52 vp8_dequant_idct_add_mmx (q+32, dq, dst+8, stride);
55 vp8_dc_only_idct_add_mmx (q[32]*dq[
26 vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
75 vp8_dequant_idct_add_uv_block_mmx(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
/external/libvpx/libvpx/vp8/common/arm/armv6/
H A Didct_blk_v6.c15 void vp8_dequant_idct_add_y_block_v6(short *q, short *dq, argument
24 vp8_dequant_idct_add_v6 (q, dq, dst, stride);
27 vp8_dc_only_idct_add_v6 (q[0]*dq[0], dst, stride, dst, stride);
32 vp8_dequant_idct_add_v6 (q+16, dq, dst+4, stride);
35 vp8_dc_only_idct_add_v6 (q[16]*dq[0], dst+4, stride, dst+4, stride);
40 vp8_dequant_idct_add_v6 (q+32, dq, dst+8, stride);
43 vp8_dc_only_idct_add_v6 (q[32]*dq[0], dst+8, stride, dst+8, stride);
48 vp8_dequant_idct_add_v6 (q+48, dq, dst+12, stride);
51 vp8_dc_only_idct_add_v6 (q[48]*dq[0], dst+12, stride,dst+12,stride);
61 void vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, argument
[all...]
/external/libvpx/libvpx/vp8/common/arm/neon/
H A 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, argument
34 idct_dequant_full_2x_neon (q, dq, dst, stride);
36 idct_dequant_0_2x_neon (q, dq[0], dst, stride);
42 idct_dequant_full_2x_neon (q+32, dq, dst+8, stride);
44 idct_dequant_0_2x_neon (q+32, dq[0], dst+8, stride);
52 void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, argument
60 idct_dequant_full_2x_neon (q, dq, dstu, stride);
62 idct_dequant_0_2x_neon (q, dq[
[all...]
/external/libvpx/libvpx/vp8/common/x86/
H A Didct_blk_sse2.c15 (short *q, short *dq ,
18 (short *q, short *dq ,
22 (short *q, short *dq,
32 vp8_idct_dequant_full_2x_sse2 (q, dq, dst, stride);
34 vp8_idct_dequant_0_2x_sse2 (q, dq, dst, stride);
39 vp8_idct_dequant_full_2x_sse2 (q+32, dq, dst+8, stride);
41 vp8_idct_dequant_0_2x_sse2 (q+32, dq, dst+8, stride);
50 (short *q, short *dq,
56 vp8_idct_dequant_full_2x_sse2 (q, dq, dstu, stride);
58 vp8_idct_dequant_0_2x_sse2 (q, dq, dst
21 vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
49 vp8_dequant_idct_add_uv_block_sse2(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
H A Didct_blk_mmx.c16 extern void vp8_dequantize_b_impl_mmx(short *sq, short *dq, short *q);
21 short *dq = (short *) d->dqcoeff; local
23 vp8_dequantize_b_impl_mmx(sq, dq, DQC);
27 (short *q, short *dq,
35 vp8_dequant_idct_add_mmx (q, dq, dst, stride);
38 vp8_dc_only_idct_add_mmx (q[0]*dq[0], dst, stride, dst, stride);
43 vp8_dequant_idct_add_mmx (q+16, dq, dst+4, stride);
46 vp8_dc_only_idct_add_mmx (q[16]*dq[0], dst+4, stride,
52 vp8_dequant_idct_add_mmx (q+32, dq, dst+8, stride);
55 vp8_dc_only_idct_add_mmx (q[32]*dq[
26 vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
75 vp8_dequant_idct_add_uv_block_mmx(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
[all...]
/external/chromium_org/content/child/webcrypto/
H A Djwk.h84 const CryptoData& dq,
106 std::string dq; member in struct:content::webcrypto::JwkRsaInfo
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Ddequantize.c29 void vp8_dequant_idct_add_c(short *input, short *dq, argument
36 input[i] = dq[i] * input[i];
H A Didct_blk.c15 void vp8_dequant_idct_add_c(short *input, short *dq,
22 (short *q, short *dq,
32 vp8_dequant_idct_add_c (q, dq, dst, stride);
35 vp8_dc_only_idct_add_c (q[0]*dq[0], dst, stride, dst, stride);
48 (short *q, short *dq,
58 vp8_dequant_idct_add_c (q, dq, dstu, stride);
61 vp8_dc_only_idct_add_c (q[0]*dq[0], dstu, stride, dstu, stride);
77 vp8_dequant_idct_add_c (q, dq, dstv, stride);
80 vp8_dc_only_idct_add_c (q[0]*dq[0], dstv, stride, dstv, stride);
21 vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
47 vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument
/external/clang/test/CodeGen/
H A Ddebug-info-crash.c10 dispatch_item_t LEGACY_dispatch_call(dispatch_queue_t dq, argument
14 dispatch_async(dq, ^{
/external/libvpx/libvpx/vp8/common/
H A Ddequantize.c29 void vp8_dequant_idct_add_c(short *input, short *dq, argument
36 input[i] = dq[i] * input[i];
H A Didct_blk.c15 void vp8_dequant_idct_add_c(short *input, short *dq,
22 (short *q, short *dq,
32 vp8_dequant_idct_add_c (q, dq, dst, stride);
35 vp8_dc_only_idct_add_c (q[0]*dq[0], dst, stride, dst, stride);
48 (short *q, short *dq,
58 vp8_dequant_idct_add_c (q, dq, dstu, stride);
61 vp8_dc_only_idct_add_c (q[0]*dq[0], dstu, stride, dstu, stride);
77 vp8_dequant_idct_add_c (q, dq, dstv, stride);
80 vp8_dc_only_idct_add_c (q[0]*dq[0], dstv, stride, dstv, stride);
21 vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
47 vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) argument

Completed in 324 milliseconds

12