Searched refs:fs1 (Results 1 - 14 of 14) sorted by relevance
/external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.assign/ |
H A D | member_swap.pass.cpp | 23 std::ifstream fs1("test.dat"); 25 fs1.swap(fs2); 27 fs1 >> x; 33 std::wifstream fs1("test.dat"); 35 fs1.swap(fs2); 37 fs1 >> x;
|
H A D | nonmember_swap.pass.cpp | 24 std::ifstream fs1("test.dat"); 26 swap(fs1, fs2); 28 fs1 >> x; 34 std::wifstream fs1("test.dat"); 36 swap(fs1, fs2); 38 fs1 >> x;
|
/external/valgrind/none/tests/x86/ |
H A D | pushpopseg.c | 9 unsigned short fs1; local 12 fs1 = 0x0003; 22 : "r" (fs1) 28 printf("fs after push and pop = %04x\n", fs1); 38 : "r" (fs1) 44 printf("fs after push and pop = %04x\n", fs1);
|
/external/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/ |
H A D | member_swap.pass.cpp | 26 std::fstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out 30 fs1 << 1 << ' ' << 2; 32 fs1.seekg(0); 33 fs1.swap(fs2); 34 fs1.seekg(0); 36 fs1 >> i; 38 fs1 >> i; 49 std::wfstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out 53 fs1 << 1 << ' ' << 2; 55 fs1 [all...] |
H A D | nonmember_swap.pass.cpp | 27 std::fstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out 31 fs1 << 1 << ' ' << 2; 33 fs1.seekg(0); 34 swap(fs1, fs2); 35 fs1.seekg(0); 37 fs1 >> i; 39 fs1 >> i; 50 std::wfstream fs1(temp1.c_str(), std::ios_base::in | std::ios_base::out 54 fs1 << 1 << ' ' << 2; 56 fs1 [all...] |
/external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/ |
H A D | member_swap.pass.cpp | 26 std::ofstream fs1(temp1.c_str()); 28 fs1 << 3.25; 30 fs1.swap(fs2); 31 fs1 << ' ' << 3.25; 53 std::wofstream fs1(temp1.c_str()); 55 fs1 << 3.25; 57 fs1.swap(fs2); 58 fs1 << ' ' << 3.25;
|
H A D | nonmember_swap.pass.cpp | 27 std::ofstream fs1(temp1.c_str()); 29 fs1 << 3.25; 31 swap(fs1, fs2); 32 fs1 << ' ' << 3.25; 54 std::wofstream fs1(temp1.c_str()); 56 fs1 << 3.25; 58 swap(fs1, fs2); 59 fs1 << ' ' << 3.25;
|
/external/clang/test/SemaCXX/ |
H A D | converting-constructor.cpp | 43 FromShort fs1(s);
|
/external/opencv3/modules/ml/test/ |
H A D | test_save_load.cpp | 85 FILE *fs1 = fopen(fname1.c_str(), "rb"), *fs2 = fopen(fname2.c_str(), "rb"); local 87 if( !fs1 || !fs2 ) 91 fseek(fs1, 0, SEEK_END); fseek(fs2, 0, SEEK_END); 92 sz1 = ftell(fs1); 94 fseek(fs1, 0, SEEK_SET); fseek(fs2, 0, SEEK_SET); 106 size_t r1 = fread(buf1, 1, BUFSZ, fs1); 121 if(fs1) 122 fclose(fs1);
|
/external/ppp/pppd/ |
H A 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/opencv3/modules/calib3d/test/ |
H A D | test_chesscorners.cpp | 234 FileStorage fs1(_filename, FileStorage::READ); 235 fs1["corners"] >> expected; 236 fs1["isFound"] >> doesContatinChessboard; 237 fs1.release();
|
/external/dng_sdk/source/ |
H A D | dng_exif.cpp | 4242 real64 fs1 = fLensInfo [2].As_real64 (); local 4245 if (fs1 >= 1.0 && fs2 >= 1.0 && fs2 >= fs1) 4248 real64 av1 = FNumberToApertureValue (fs1);
|
/external/google-breakpad/src/common/android/ |
H A D | breakpad_getcontext.S | 297 s.d fs1, (22 * MCONTEXT_REG_SIZE + MCONTEXT_FPREGS_OFFSET)(a0)
|
/external/compiler-rt/lib/asan/tests/ |
H A D | asan_test.cc | 977 static char fs1[10]; local 1006 Ident(fs1);
|
Completed in 263 milliseconds