/external/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/ |
D | member_swap.pass.cpp | 46 std::fstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out in main() local 50 fs1 << 1 << ' ' << 2; in main() 52 fs1.seekg(0); in main() 53 fs1.swap(fs2); in main() 54 fs1.seekg(0); in main() 56 fs1 >> i; in main() 58 fs1 >> i; in main() 69 std::wfstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out in main() local 73 fs1 << 1 << ' ' << 2; in main() 75 fs1.seekg(0); in main() [all …]
|
D | nonmember_swap.pass.cpp | 48 std::fstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out in main() local 52 fs1 << 1 << ' ' << 2; in main() 54 fs1.seekg(0); in main() 55 swap(fs1, fs2); in main() 56 fs1.seekg(0); in main() 58 fs1 >> i; in main() 60 fs1 >> i; in main() 71 std::wfstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out in main() local 75 fs1 << 1 << ' ' << 2; in main() 77 fs1.seekg(0); in main() [all …]
|
/external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.assign/ |
D | member_swap.pass.cpp | 23 std::ifstream fs1("test.dat"); in main() local 25 fs1.swap(fs2); in main() 27 fs1 >> x; in main() 33 std::wifstream fs1("test.dat"); in main() local 35 fs1.swap(fs2); in main() 37 fs1 >> x; in main()
|
D | nonmember_swap.pass.cpp | 24 std::ifstream fs1("test.dat"); in main() local 26 swap(fs1, fs2); in main() 28 fs1 >> x; in main() 34 std::wifstream fs1("test.dat"); in main() local 36 swap(fs1, fs2); in main() 38 fs1 >> x; in main()
|
/external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/ |
D | nonmember_swap.pass.cpp | 47 std::ofstream fs1(temp1.c_str()); in main() local 49 fs1 << 3.25; in main() 51 swap(fs1, fs2); in main() 52 fs1 << ' ' << 3.25; in main() 74 std::wofstream fs1(temp1.c_str()); in main() local 76 fs1 << 3.25; in main() 78 swap(fs1, fs2); in main() 79 fs1 << ' ' << 3.25; in main()
|
D | member_swap.pass.cpp | 46 std::ofstream fs1(temp1.c_str()); in main() local 48 fs1 << 3.25; in main() 50 fs1.swap(fs2); in main() 51 fs1 << ' ' << 3.25; in main() 73 std::wofstream fs1(temp1.c_str()); in main() local 75 fs1 << 3.25; in main() 77 fs1.swap(fs2); in main() 78 fs1 << ' ' << 3.25; in main()
|
/external/ppp/pppd/ |
D | md4.c | 56 #define fs1 3 /* round 1 shift amounts */ macro 141 ff(A , B , C , D , 0 , fs1); /* Round 1 */ 145 ff(A , B , C , D , 4 , fs1); 149 ff(A , B , C , D , 8 , fs1); 153 ff(A , B , C , D , 12 , fs1);
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/RISCV/ |
D | rv32dc-invalid.s | 7 c.fldsp fs1, 512(sp) # CHECK: :[[@LINE]]:15: error: immediate must be a multiple of 8 bytes in the… 12 c.fsd fs1, 256(sp) # CHECK: :[[@LINE]]:13: error: immediate must be a multiple of 8 bytes in the r…
|
D | rv32fc-invalid.s | 7 c.flwsp fs1, 256(sp) # CHECK: :[[@LINE]]:15: error: immediate must be a multiple of 4 bytes in the… 12 c.fsw fs1, 128(sp) # CHECK: :[[@LINE]]:13: error: immediate must be a multiple of 4 bytes in the r…
|
D | rv32d-valid.s | 45 # CHECK-INST: fsd fs1, 999(s7) 77 # CHECK-INST: fsgnj.d fs1, fa0, fa1 79 fsgnj.d fs1, fa0, fa1
|
D | rv32f-valid.s | 40 # CHECK-INST: fsw fs1, 999(s7) 72 # CHECK-INST: fsgnj.s fs1, fa0, fa1 74 fsgnj.s fs1, fa0, fa1
|
D | rvd-aliases-valid.s | 42 # CHECK-INST: fle.d t2, fs1, fs0 43 # CHECK-ALIAS: fle.d t2, fs1, fs0
|
D | rvf-aliases-valid.s | 42 # CHECK-INST: fle.s t2, fs1, fs0 43 # CHECK-ALIAS: fle.s t2, fs1, fs0
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | gcs_file_system_test.cc | 3076 GcsFileSystem fs1; in TEST() local 3077 EXPECT_EQ(*kAllowedLocationsDefault, fs1.allowed_locations()); in TEST() 3081 fs1.FlushCaches(); in TEST() 3087 GcsFileSystem fs1; in TEST() local 3088 EXPECT_EQ(*kAllowedLocationsAuto, fs1.allowed_locations()); in TEST() 3097 GcsFileSystem fs1; in TEST() local 3098 EXPECT_EQ("", fs1.additional_header_name()); in TEST() 3099 EXPECT_EQ("", fs1.additional_header_value()); in TEST() 3157 GcsFileSystem fs1; in TEST() local 3158 EXPECT_EQ(16 * 1024 * 1024, fs1.block_size()); in TEST() [all …]
|
/external/clang/test/SemaCXX/ |
D | converting-constructor.cpp | 43 FromShort fs1(s); in explicit_constructor() local
|
/external/u-boot/post/lib_powerpc/ |
D | cpu_asm.h | 146 #define ASM_12F(opcode, fd, fs1, fs2) ((opcode) + \ argument 148 ((fs1) << 16) + \
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/RISCV/ |
D | interrupt-attr.ll | 133 ; CHECK-RV32-F-NEXT: fsw fs1, 40(sp) 155 ; CHECK-RV32-F-NEXT: flw fs1, 40(sp) 236 ; CHECK-RV32-FD-NEXT: fsd fs1, 80(sp) 258 ; CHECK-RV32-FD-NEXT: fld fs1, 80(sp) 378 ; CHECK-RV64-F-NEXT: fsw fs1, 40(sp) 400 ; CHECK-RV64-F-NEXT: flw fs1, 40(sp) 481 ; CHECK-RV64-FD-NEXT: fsd fs1, 80(sp) 503 ; CHECK-RV64-FD-NEXT: fld fs1, 80(sp) 635 ; CHECK-RV32-F-NEXT: fsw fs1, 52(sp) 658 ; CHECK-RV32-F-NEXT: flw fs1, 52(sp) [all …]
|
/external/deqp/external/openglcts/modules/common/ |
D | glcUniformBlockTests.cpp | 593 std::string fs1("precision highp float;\n" in iterate() local 612 if (!Link(vs1, fs1) || !Link(vs2, fs2)) in iterate() 699 std::string fs1("precision highp float;\n" in iterate() local 707 if (!Test(vs1, fs1, GL_FALSE)) in iterate()
|
/external/dng_sdk/source/ |
D | dng_exif.cpp | 4242 real64 fs1 = fLensInfo [2].As_real64 (); in PostParse() local 4245 if (fs1 >= 1.0 && fs2 >= 1.0 && fs2 >= fs1) in PostParse() 4248 real64 av1 = FNumberToApertureValue (fs1); in PostParse()
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_test.cc | 977 static char fs1[10]; in TEST() local 1006 Ident(fs1); in TEST()
|
/external/google-breakpad/src/common/android/ |
D | breakpad_getcontext.S | 297 s.d fs1, (22 * MCONTEXT_REG_SIZE + MCONTEXT_FPREGS_OFFSET)(a0)
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/RISCV/ |
D | RISCVRegisterInfo.td | 172 def F9_32 : RISCVReg32<9, "f9", ["fs1"]>, DwarfRegNum<[41]>;
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | bd96d39bc51a0ce831a2d2d2df164cd2.0000b68a.honggfuzz.cov | 79 …fs1�� �Þ�{m �g���l�I�j?�gQ��Ъ�^mJ5/�{��gV��LI]����K��<0�P`�3UZ}���#�p�X���!��M���ߌ,…
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
D | bd96d39bc51a0ce831a2d2d2df164cd2.0000b68a.honggfuzz.cov | 79 …fs1�� �Þ�{m �g���l�I�j?�gQ��Ъ�^mJ5/�{��gV��LI]����K��<0�P`�3UZ}���#�p�X���!��M���ߌ,…
|
D | 61104de2d7b6a64a92826023e7627f71.00010219.honggfuzz.cov | 79 …fs1�� �Þ�{m �g���l�I�j?�gQ��Ъ�^mJ5/�{��gV��LI]����K��<0�P`�3UZ}���#�p�X���!��M���ߌ,…
|