/external/libhevc/common/arm64/ |
D | ihevc_intra_pred_chroma_ver.s | 127 st2 {v20.8b, v21.8b}, [x2],#16 128 st2 {v20.8b, v21.8b}, [x5],#16 129 st2 {v20.8b, v21.8b}, [x8],#16 130 st2 {v20.8b, v21.8b}, [x10],#16 132 st2 {v22.8b, v23.8b}, [x2], x11 133 st2 {v22.8b, v23.8b}, [x5], x11 134 st2 {v22.8b, v23.8b}, [x8], x11 135 st2 {v22.8b, v23.8b}, [x10], x11 140 st2 {v20.8b, v21.8b}, [x2],#16 141 st2 {v20.8b, v21.8b}, [x5],#16 [all …]
|
D | ihevc_intra_pred_chroma_dc.s | 206 st2 {v16.8b, v17.8b}, [x2],#16 209 st2 {v16.8b, v17.8b}, [x5],#16 210 st2 {v16.8b, v17.8b}, [x8],#16 213 st2 {v16.8b, v17.8b}, [x10],#16 216 st2 {v16.8b, v17.8b}, [x2], x6 217 st2 {v16.8b, v17.8b}, [x5], x6 218 st2 {v16.8b, v17.8b}, [x8], x6 219 st2 {v16.8b, v17.8b}, [x10], x6 222 st2 {v16.8b, v17.8b}, [x2],#16 223 st2 {v16.8b, v17.8b}, [x5],#16 [all …]
|
D | ihevc_intra_pred_chroma_mode2.s | 176 st2 {v16.8b, v17.8b},[x6],x5 177 st2 {v18.8b, v19.8b},[x7],x5 179 st2 {v20.8b, v21.8b},[x9],x5 180 st2 {v22.8b, v23.8b},[x14],x5 181 st2 {v24.8b, v25.8b},[x6],x5 184 st2 {v26.8b, v27.8b},[x7],x5 185 st2 {v28.8b, v29.8b},[x9],x5 186 st2 {v30.8b, v31.8b},[x14],x5 244 st2 {v16.8b, v17.8b},[x6],x5 245 st2 {v18.8b, v19.8b},[x7],x5 [all …]
|
/external/tensorflow/tensorflow/python/framework/ |
D | composite_tensor_test.py | 67 st2 = sparse_tensor.SparseTensor([[1, 2, 3]], ['a'], [10, 10, 10]) 68 structure = [[st1], 'foo', {'y': [st2]}] 75 self.assertIs(x[4], st2.indices) 76 self.assertIs(x[5], st2.values) 77 self.assertIs(x[6], st2.dense_shape) 81 st2 = sparse_tensor.SparseTensor([[1, 2, 3]], ['a'], [10, 10, 10]) 82 structure1 = [[st1], 'foo', {'y': [st2]}] 83 flat = [st2.indices, st2.values, st2.dense_shape, 'bar', 86 expected = [[st2], 'bar', {'y': [st1]}] 91 st2 = sparse_tensor.SparseTensor([[0, 3]], ['x'], [100, 100]) [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_parser.py | 22 st2 = parser.sequence2st(t) 26 self.assertEqual(t, st2.totuple(), 798 st2 = parser.suite('x = 2; y = x + 3') 806 self.assertEqual(st2 == st2, True) 810 self.assertEqual(st2, st2_copy) 812 self.assertEqual(st1 == st2, False) 814 self.assertEqual(st2 == st3, False) 816 self.assertEqual(st2 != st2, False) 819 self.assertEqual(st2 != st2_copy, False) 821 self.assertEqual(st2 != st1, True) [all …]
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_file_util.py | 88 st2 = os.stat(self.source) 90 self.assertTrue(os.path.samestat(st, st2), (st, st2)) 91 self.assertTrue(os.path.samestat(st2, st3), (st2, st3)) 111 st2 = os.stat(self.source) 113 self.assertTrue(os.path.samestat(st, st2), (st, st2)) 114 self.assertFalse(os.path.samestat(st2, st3), (st2, st3))
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_file_util.py | 93 st2 = os.stat(self.source) 95 self.assertTrue(os.path.samestat(st, st2), (st, st2)) 96 self.assertTrue(os.path.samestat(st2, st3), (st2, st3)) 109 st2 = os.stat(self.source) 111 self.assertTrue(os.path.samestat(st, st2), (st, st2)) 112 self.assertFalse(os.path.samestat(st2, st3), (st2, st3))
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | ragged_from_sparse_op_test.py | 58 st2 = sparse_tensor.SparseTensor( 61 RaggedTensor.from_sparse, st2) 77 st2 = sparse_tensor.SparseTensor( 84 RaggedTensor.from_sparse(st2) 99 st2 = sparse_tensor.SparseTensor( 103 self.evaluate(RaggedTensor.from_sparse(st2))
|
/external/toybox/toys/posix/ |
D | pwd.c | 30 struct stat st1, st2; in pwd_main() local 44 if (stat(pwd, &st1) || stat(PWD, &st2) || st1.st_ino != st2.st_ino || in pwd_main() 45 st1.st_dev != st2.st_dev) s = NULL; in pwd_main()
|
/external/linux-kselftest/tools/testing/selftests/proc/ |
D | fd-002-posix-eq.c | 28 struct stat st0, st1, st2; in main() local 47 rv = fstat(fd2, &st2); in main() 53 assert(st0.st_dev == st2.st_dev); in main() 54 assert(st0.st_ino == st2.st_ino); in main()
|
/external/toybox/toys/other/ |
D | mountpoint.c | 34 struct stat st1, st2; in mountpoint_main() local 54 xstat(arg, &st2); in mountpoint_main() 61 toys.exitval = !(st1.st_dev != st2.st_dev || st1.st_ino == st2.st_ino); in mountpoint_main()
|
D | switch_root.c | 47 struct stat st1, st2; in switch_root_main() local 62 if (chdir(newroot) || stat(".", &st1) || stat("/", &st2) || in switch_root_main() 63 st1.st_dev == st2.st_dev) in switch_root_main() 68 TT.rootdev=st2.st_dev; in switch_root_main()
|
/external/libhevc/decoder/arm64/ |
D | ihevcd_itrans_recon_dc_chroma.s | 152 st2 {v2.8b, v3.8b},[x11],x3 153 st2 {v4.8b, v5.8b},[x11],x3 154 st2 {v6.8b, v7.8b},[x11],x3 155 st2 {v8.8b, v9.8b},[x11],x3 157 st2 {v10.8b, v11.8b},[x11],x3 158 st2 {v12.8b, v13.8b},[x11],x3 159 st2 {v14.8b, v15.8b},[x11],x3 160 st2 {v16.8b, v17.8b},[x11]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/ |
D | neon-simd-ldst-multi-elem.s | 139 st2 { v0.16b, v1.16b }, [x0] 140 st2 { v15.8h, v16.8h }, [x15] 141 st2 { v31.4s, v0.4s }, [sp] 142 st2 { v0.2d, v1.2d }, [x0] 143 st2 { v0.8b, v1.8b }, [x0] 144 st2 { v15.4h, v16.4h }, [x15] 145 st2 { v31.2s, v0.2s }, [sp] 154 st2 { v0.16b-v1.16b }, [x0] 155 st2 { v15.8h-v16.8h }, [x15] 156 st2 { v31.4s-v0.4s }, [sp] [all …]
|
D | arm64-simd-ldst.s | 195 st2.8b {v4, v5}, [x19] 196 st2.16b {v4, v5}, [x19] 197 st2.4h {v4, v5}, [x19] 198 st2.8h {v4, v5}, [x19] 199 st2.2s {v4, v5}, [x19] 200 st2.4s {v4, v5}, [x19] 201 st2.2d {v4, v5}, [x19] 213 ; CHECK: st2.8b { v4, v5 }, [x19] ; encoding: [0x64,0x82,0x00,0x0c] 214 ; CHECK: st2.16b { v4, v5 }, [x19] ; encoding: [0x64,0x82,0x00,0x4c] 215 ; CHECK: st2.4h { v4, v5 }, [x19] ; encoding: [0x64,0x86,0x00,0x0c] [all …]
|
/external/llvm/test/MC/AArch64/ |
D | neon-simd-ldst-multi-elem.s | 139 st2 { v0.16b, v1.16b }, [x0] 140 st2 { v15.8h, v16.8h }, [x15] 141 st2 { v31.4s, v0.4s }, [sp] 142 st2 { v0.2d, v1.2d }, [x0] 143 st2 { v0.8b, v1.8b }, [x0] 144 st2 { v15.4h, v16.4h }, [x15] 145 st2 { v31.2s, v0.2s }, [sp] 154 st2 { v0.16b-v1.16b }, [x0] 155 st2 { v15.8h-v16.8h }, [x15] 156 st2 { v31.4s-v0.4s }, [sp] [all …]
|
D | arm64-simd-ldst.s | 195 st2.8b {v4, v5}, [x19] 196 st2.16b {v4, v5}, [x19] 197 st2.4h {v4, v5}, [x19] 198 st2.8h {v4, v5}, [x19] 199 st2.2s {v4, v5}, [x19] 200 st2.4s {v4, v5}, [x19] 201 st2.2d {v4, v5}, [x19] 213 ; CHECK: st2.8b { v4, v5 }, [x19] ; encoding: [0x64,0x82,0x00,0x0c] 214 ; CHECK: st2.16b { v4, v5 }, [x19] ; encoding: [0x64,0x82,0x00,0x4c] 215 ; CHECK: st2.4h { v4, v5 }, [x19] ; encoding: [0x64,0x86,0x00,0x0c] [all …]
|
/external/capstone/suite/MC/AArch64/ |
D | neon-simd-ldst-multi-elem.s.cs | 58 0x00,0x80,0x00,0x4c = st2 {v0.16b, v1.16b}, [x0] 59 0xef,0x85,0x00,0x4c = st2 {v15.8h, v16.8h}, [x15] 60 0xff,0x8b,0x00,0x4c = st2 {v31.4s, v0.4s}, [sp] 61 0x00,0x8c,0x00,0x4c = st2 {v0.2d, v1.2d}, [x0] 62 0x00,0x80,0x00,0x0c = st2 {v0.8b, v1.8b}, [x0] 63 0xef,0x85,0x00,0x0c = st2 {v15.4h, v16.4h}, [x15] 64 0xff,0x8b,0x00,0x0c = st2 {v31.2s, v0.2s}, [sp] 65 0x00,0x80,0x00,0x4c = st2 {v0.16b, v1.16b}, [x0] 66 0xef,0x85,0x00,0x4c = st2 {v15.8h, v16.8h}, [x15] 67 0xff,0x8b,0x00,0x4c = st2 {v31.4s, v0.4s}, [sp] [all …]
|
/external/linux-kselftest/tools/testing/selftests/nsfs/ |
D | pidns.c | 46 struct stat st1, st2; in main() local 65 if (stat(path, &st2)) in main() 69 if (st1.st_ino != st2.st_ino) in main()
|
D | owner.c | 29 struct stat st1, st2; in main() local 68 if (stat(path, &st2)) in main() 71 if (st1.st_ino != st2.st_ino) in main()
|
/external/libaom/libaom/aom_dsp/mips/ |
D | convolve2_horiz_dspr2.c | 232 uint32_t st1, st2, st3; in convolve_bi_horiz_16_dspr2() local 407 [qload3] "=&r"(qload3), [st1] "=&r"(st1), [st2] "=&r"(st2), in convolve_bi_horiz_16_dspr2() 436 uint32_t st1, st2, st3; in convolve_bi_horiz_64_dspr2() local 613 [qload3] "=&r"(qload3), [st1] "=&r"(st1), [st2] "=&r"(st2), in convolve_bi_horiz_64_dspr2()
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
D | convolve2_avg_horiz_dspr2.c | 269 uint32_t st1, st2, st3; in convolve_bi_avg_horiz_16_dspr2() local 486 [st2] "=&r"(st2), [st3] "=&r"(st3), [p1] "=&r"(p1), [p2] "=&r"(p2), in convolve_bi_avg_horiz_16_dspr2() 516 uint32_t st1, st2, st3; in convolve_bi_avg_horiz_64_dspr2() local 735 [st2] "=&r"(st2), [st3] "=&r"(st3), [p1] "=&r"(p1), [p2] "=&r"(p2), in convolve_bi_avg_horiz_64_dspr2()
|
D | convolve2_horiz_dspr2.c | 231 uint32_t st1, st2, st3; in convolve_bi_horiz_16_dspr2() local 406 [qload3] "=&r"(qload3), [st1] "=&r"(st1), [st2] "=&r"(st2), in convolve_bi_horiz_16_dspr2() 435 uint32_t st1, st2, st3; in convolve_bi_horiz_64_dspr2() local 612 [qload3] "=&r"(qload3), [st1] "=&r"(st1), [st2] "=&r"(st2), in convolve_bi_horiz_64_dspr2()
|
/external/llvm/test/CodeGen/XCore/ |
D | byVal.ll | 52 %struct.st2 = type { i32 } 53 declare void @f2(i32, %struct.st2*) nounwind 54 define void @f2Test(%struct.st2* byval %s2, i32 %i, ...) nounwind { 56 call void @f2(i32 %i, %struct.st2* %s2)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/XCore/ |
D | byVal.ll | 52 %struct.st2 = type { i32 } 53 declare void @f2(i32, %struct.st2*) nounwind 54 define void @f2Test(%struct.st2* byval %s2, i32 %i, ...) nounwind { 56 call void @f2(i32 %i, %struct.st2* %s2)
|