/external/libvpx/libvpx/vp8/encoder/x86/ |
fwalsh_sse2.asm | 98 psubd xmm2, xmm4 ; c21 c20 d21 d20 135 punpcklqdq xmm5, xmm3 ; d23 d22 d21 d20 138 packssdw xmm2, xmm5 ; d23 d22 d21 d20 c23 c22 c21 c20
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/ |
omxVCM4P10_PredictIntra_16x16_s.S | 195 VLD1.16 {d20,d21},[r9]! 200 VMLAL.S16 q11,d9,d21 201 VMLAL.S16 q12,d17,d21 210 VLD1.16 {d20,d21},[r9]!
|
armVCM4P10_DeblockingLuma_unsafe_s.S | 36 VQSUB.U8 d21,d9,d18 46 VMAX.U8 d25,d27,d21
|
armVCM4P10_Interpolate_Chroma_s.S | 82 VQRSHRN.U16 d21,q12,#6 85 VST1.64 {d21},[r2],r3
|
omxVCM4P10_InterpolateLuma_s.S | 90 VRHADD.U8 d28,d28,d21 181 VEXT.8 d20,d20,d21,#4 215 VEXT.8 d20,d20,d21,#6
|
/external/valgrind/main/none/tests/arm/ |
vfp.c | 1075 TESTINSN_core_to_scalar("vmov.16 d21[2], r6", d21, r6, 14); 1097 TESTINSN_scalar_to_core("vmov.u16 r6, d21[2]", r6, d21, i32, f2u(-INFINITY)); [all...] |
vfp.stdout.exp | 66 vmov.16 d21[2], r6 :: Dd 0x5555000e 0x55555555 Dm 0x0000000e 87 vmov.u16 r6, d21[2] :: Rd 0x00000000 Qm (i32)0xff800000 103 vmov.s16 r6, d21[2] :: Rd 0x00000000 Qm (i32)0xff800000 132 vmla.f64 d27, d21, d6 :: Qd 0x3fb763ef 0x4799be48 Qm 0x4041000f 12c27a63 Qn 0x3f6421c0 44284dfd 138 vmla.f64 d27, d21, d16 :: Qd 0xc0aa0043 0x17cbec9d Qm 0x407c83fb b97f122f Qn 0xc01d2da3 2101d847 181 vnmla.f64 d27, d21, d6 :: Qd 0xbfb763ef 0x4799be48 Qm 0x4041000f 12c27a63 Qn 0x3f6421c0 44284dfd 187 vnmla.f64 d27, d21, d16 :: Qd 0x40aa0043 0x17cbec9d Qm 0x407c83fb b97f122f Qn 0xc01d2da3 2101d847 230 vmls.f64 d27, d21, d6 :: Qd 0xbfb363ef 0x37b9be48 Qm 0x4041000f 12c27a63 Qn 0x3f6421c0 44284dfd 236 vmls.f64 d27, d21, d16 :: Qd 0x40aa004b 0x17cc0c5d Qm 0x407c83fb b97f122f Qn 0xc01d2da3 2101d847 279 vnmls.f64 d27, d21, d6 :: Qd 0x3fb363ef 0x37b9be48 Qm 0x4041000f 12c27a63 Qn 0x3f6421c0 44284df [all...] |
/external/libvpx/libvpx/vp8/common/arm/neon/ |
sixtappredict8x8_neon.asm | 275 vmull.u8 q6, d21, d0 279 vmlsl.u8 q5, d21, d1 288 vmlal.u8 q4, d21, d2 297 vmull.u8 q7, d21, d3 ;(src_ptr[1] * vp8_filter[3]) 444 vld1.u8 {d21}, [r0], r1 467 vmull.u8 q6, d21, d0 471 vmlsl.u8 q5, d21, d1 480 vmlal.u8 q4, d21, d2 489 vmull.u8 q7, d21, d3 ;(src_ptr[1] * vp8_filter[3])
|
bilinearpredict16x16_neon.asm | 102 vqrshrn.u16 d21, q14, #7 107 vst1.u8 {d18, d19, d20, d21}, [lr]! 286 vqrshrn.u16 d21, q14, #7 290 vst1.u8 {d20, d21}, [r4], r5
|
vp8_subpixelvariance16x16_neon.asm | 110 vqrshrn.u16 d21, q14, #7 115 vst1.u8 {d18, d19, d20, d21}, [lr]! 297 vqrshrn.u16 d21, q14, #7 301 vst1.u8 {d20, d21}, [r3]!
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 217 def d21(a, b, c=1): pass function in function:GrammarTests.testFuncdef 218 d21(1, 2) 219 d21(1, 2, 3) 220 d21(*(1, 2, 3)) 221 d21(1, *(2, 3)) 222 d21(1, 2, *(3,)) 223 d21(1, 2, **{'c':3})
|
py3_test_grammar.py | 205 def d21(a, b, c=1): pass function in function:GrammarTests.testFuncdef 206 d21(1, 2) 207 d21(1, 2, 3) 208 d21(*(1, 2, 3)) 209 d21(1, *(2, 3)) 210 d21(1, 2, *(3,)) 211 d21(1, 2, **{'c':3})
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 214 def d21(a, b, c=1): pass function in function:GrammarTests.testFuncdef 215 d21(1, 2) 216 d21(1, 2, 3) 217 d21(*(1, 2, 3)) 218 d21(1, *(2, 3)) 219 d21(1, 2, *(3,)) 220 d21(1, 2, **{'c':3})
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 217 def d21(a, b, c=1): pass function in function:GrammarTests.testFuncdef 218 d21(1, 2) 219 d21(1, 2, 3) 220 d21(*(1, 2, 3)) 221 d21(1, *(2, 3)) 222 d21(1, 2, *(3,)) 223 d21(1, 2, **{'c':3})
|
py3_test_grammar.py | 205 def d21(a, b, c=1): pass function in function:GrammarTests.testFuncdef 206 d21(1, 2) 207 d21(1, 2, 3) 208 d21(*(1, 2, 3)) 209 d21(1, *(2, 3)) 210 d21(1, 2, *(3,)) 211 d21(1, 2, **{'c':3})
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 214 def d21(a, b, c=1): pass function in function:GrammarTests.testFuncdef 215 d21(1, 2) 216 d21(1, 2, 3) 217 d21(*(1, 2, 3)) 218 d21(1, *(2, 3)) 219 d21(1, 2, *(3,)) 220 d21(1, 2, **{'c':3})
|
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/ |
armv4-gf2m.S | 128 vld1.32 d21[],[sp,:32] @ two copies of b0 138 vmov d17,d21 143 veor d17,d21,d19
|
/external/openssl/crypto/bn/asm/ |
armv4-gf2m.S | 128 vld1.32 d21[],[sp,:32] @ two copies of b0 138 vmov d17,d21 143 veor d17,d21,d19
|
/external/llvm/test/MC/ARM/ |
neon-v8.s | 39 vcvtp.s32.f32 d11, d21 40 @ CHECK: vcvtp.s32.f32 d11, d21 @ encoding: [0x25,0xb2,0xbb,0xf3]
|
thumb-neon-v8.s | 39 vcvtp.s32.f32 d11, d21 40 @ CHECK: vcvtp.s32.f32 d11, d21 @ encoding: [0xbb,0xff,0x25,0xb2]
|
neon-sub-encoding.s | 14 vsub.i8 d13, d21 36 @ CHECK: vsub.i8 d13, d13, d21 @ encoding: [0x25,0xd8,0x0d,0xf3] 139 vhsub.u8 d14, d21 152 @ CHECK: vhsub.u8 d14, d14, d21 @ encoding: [0x25,0xe2,0x0e,0xf3]
|
/external/libvpx/libvpx/vp9/common/arm/neon/ |
vp9_short_iht8x8_add_neon.asm | 106 vswp d21, d28 210 vmull.s16 q3, d21, d0 214 vmull.s16 q12, d21, d1 373 vmlal.s16 q5, d21, d1 377 vmlsl.s16 q6, d21, d0 546 vqrshrn.s32 d21, q1, #14 ; >> 14
|
vp9_short_idct16x16_add_neon.asm | 26 vswp d21, d28 184 vmull.s16 q1, d21, d31 188 vmull.s16 q13, d21, d30 204 vqrshrn.s32 d21, q13, #14 ; >> 14 263 vst1.64 {d21}, [r1], r2 399 vmull.s16 q12, d21, d30 403 vmull.s16 q5, d21, d31 517 vmull.s16 q9, d21, d30 521 vmlsl.s16 q12, d21, d31 558 vmull.s16 q1, d21, d1 [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/ |
parseGitDiffHeader.pl | 220 index 1e50d1d..1459d21 100644 238 index 1e50d1d..1459d21 100644
|
/external/libvpx/libvpx/vp8/encoder/arm/neon/ |
fastquantizeb_neon.asm | 134 vmax.u16 d20, d20, d21 139 vmax.u32 d20, d20, d21
|