| /llvm-project-15.0.7/polly/lib/External/isl/imath/tests/gmp-compat-test/ |
| H A D | genpytest.py | 7 def print_header(outf): argument 8 outf.write(""" 20 def print_cmp(outf): argument 21 outf.write(""" 108 outf.write(""" 120 outf.write(""" 126 outf.write(" }\n") 131 outf = sys.stdout variable 132 print_header(outf) 133 print_cmp(outf) [all …]
|
| H A D | genctest.py | 187 def print_test_code(self, outf): argument 201 outf.write(code) 202 outf.write("\n") 243 def print_gmp_header(outf): argument 249 outf.write(code) 252 def print_imath_header(outf): argument 260 outf.write(code) 263 def print_gmp_tests(outf): argument 264 print_gmp_header(outf) 270 def print_imath_tests(outf): argument [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/ |
| H A D | assign_t.pass.cpp | 27 std::ostringstream outf; in main() local 28 std::ostream_iterator<int> i(outf); in main() 30 assert(outf.str() == "2"); in main() 33 std::ostringstream outf; in main() local 34 std::ostream_iterator<int> i(outf, ", "); in main() 36 assert(outf.str() == "2, "); in main() 40 std::wostringstream outf; in main() local 41 std::ostream_iterator<int, wchar_t> i(outf); in main() 43 assert(outf.str() == L"2"); in main() 46 std::wostringstream outf; in main() local [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/ |
| H A D | ostream_delim.pass.cpp | 32 std::ostringstream outf; in main() local 33 std::ostream_iterator<int> i(outf, ", "); in main() 34 assert(outf.good()); in main() 38 std::wostringstream outf; in main() local 39 std::ostream_iterator<double, wchar_t> i(outf, L", "); in main() 40 assert(outf.good()); in main() 44 StringStream outf; in main() local 45 std::ostream_iterator<int, char, MyTraits> i(outf, ", "); in main() 46 assert(outf.good()); in main()
|
| H A D | ostream.pass.cpp | 31 std::ostringstream outf; in main() local 32 std::ostream_iterator<int> i(outf); in main() 33 assert(outf.good()); in main() 36 StringStream outf; in main() local 37 std::ostream_iterator<int, char, MyTraits> i(outf); in main() 38 assert(outf.good()); in main()
|
| H A D | copy.pass.cpp | 23 std::ostringstream outf; in main() local 24 std::ostream_iterator<int> i(outf); in main() 26 assert(outf.good()); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/ |
| H A D | assign_c.pass.cpp | 25 std::ostringstream outf; in main() local 26 std::ostreambuf_iterator<char> i(outf); in main() 28 assert(outf.str() == "a"); in main() 30 assert(outf.str() == "ab"); in main() 34 std::wostringstream outf; in main() local 35 std::ostreambuf_iterator<wchar_t> i(outf); in main() 37 assert(outf.str() == L"a"); in main() 39 assert(outf.str() == L"ab"); in main()
|
| H A D | deref.pass.cpp | 24 std::ostringstream outf; in main() local 25 std::ostreambuf_iterator<char> i(outf); in main() 31 std::wostringstream outf; in main() local 32 std::ostreambuf_iterator<wchar_t> i(outf); in main()
|
| H A D | increment.pass.cpp | 25 std::ostringstream outf; in main() local 26 std::ostreambuf_iterator<char> i(outf); in main() 34 std::wostringstream outf; in main() local 35 std::ostreambuf_iterator<wchar_t> i(outf); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.cons/ |
| H A D | ostream.pass.cpp | 24 std::ostringstream outf; in main() local 25 std::ostreambuf_iterator<char> i(outf); in main() 30 std::wostringstream outf; in main() local 31 std::ostreambuf_iterator<wchar_t> i(outf); in main()
|
| H A D | streambuf.pass.cpp | 24 std::ostringstream outf; in main() local 25 std::ostreambuf_iterator<char> i(outf.rdbuf()); in main() 30 std::wostringstream outf; in main() local 31 std::ostreambuf_iterator<wchar_t> i(outf.rdbuf()); in main()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/FreeBSDKernel/tools/ |
| H A D | copy-sparse.py | 17 outf = args.outfile 22 outf.write(inf.read(1024)) 31 outf.seek(offset) 32 outf.write(inf.read(size))
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/ |
| H A D | copy_file_large.pass.cpp | 57 std::FILE* outf = std::fopen(source.string().c_str(), "a"); in TEST_CASE() local 58 TEST_REQUIRE(outf != nullptr); in TEST_CASE() 59 std::fputs(additional_data.c_str(), outf); in TEST_CASE() 60 std::fclose(outf); in TEST_CASE()
|
| /llvm-project-15.0.7/lldb/test/Shell/Register/Core/Inputs/ |
| H A D | strip-coredump.py | 16 def strip_non_notes(elf, inf, outf): argument 23 outf.write(inf.read(next_segment_offset)) 30 outf.seek(seg.header.p_offset) 33 outf.write(inf.read(seg.header.p_filesz))
|
| /llvm-project-15.0.7/lldb/test/API/python_api/file_handle/ |
| H A D | TestFileHandle.py | 311 outsbf = lldb.SBFile(outf.fileno(), "w", False) 330 with open(self.out_filename, 'w') as outf, \ 347 with open(self.out_filename, 'wb') as outf, \ 363 outf = io.StringIO() 364 status = self.dbg.SetOutputFile(lldb.SBFile(outf)) 371 output = outf.getvalue() 378 outf = io.BytesIO() 379 status = self.dbg.SetOutputFile(lldb.SBFile(outf)) 386 output = outf.getvalue() 826 with open(self.out_filename, 'w') as outf: [all …]
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/FreeBSDKernel/ |
| H A D | TestFreeBSDKernelVMCore.py | 26 with open(dest, "wb") as outf: 27 shutil.copyfileobj(inf, outf)
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | hsa-metadata-kernel-code-props.ll | 71 i32 addrspace(1)* %oute, i32 addrspace(1)* %outf, [8 x i32], 92 store i32 %inf, i32 addrspace(1)* %outf
|
| H A D | hsa-metadata-kernel-code-props-v3.ll | 63 i32 addrspace(1)* %oute, i32 addrspace(1)* %outf, [8 x i32], 84 store i32 %inf, i32 addrspace(1)* %outf
|