Home
last modified time | relevance | path

Searched refs:out_stream (Results 1 – 24 of 24) sorted by relevance

/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp218 Stream &out_stream) { in CompareState() argument
224 out_stream.Printf("r%d: 0x%x != 0x%x\n", i, m_gpr[i], in CompareState()
232 out_stream.Printf("s%d: 0x%x != 0x%x\n", i, m_vfp_regs.s_regs[i], in CompareState()
240 out_stream.Printf("d%d: 0x%" PRIx64 " != 0x%" PRIx64 "\n", i + 16, in CompareState()
248 out_stream.Printf("memory does not match\n"); in CompareState()
249 out_stream.Printf("got memory:\n"); in CompareState()
251 out_stream.Printf("0x%08" PRIx64 ": 0x%08x\n", p.first, p.second); in CompareState()
252 out_stream.Printf("expected memory:\n"); in CompareState()
254 out_stream.Printf("0x%08" PRIx64 ": 0x%08x\n", p.first, p.second); in CompareState()
H A DEmulationStateARM.h38 lldb_private::Stream &out_stream);
H A DEmulateInstructionARM.h135 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
H A DEmulateInstructionARM.cpp14349 bool EmulateInstructionARM::TestEmulation(Stream &out_stream, ArchSpec &arch, in TestEmulation() argument
14352 out_stream.Printf("TestEmulation: Missing test data.\n"); in TestEmulation()
14365 out_stream.Printf("TestEmulation: Error reading opcode from test file.\n"); in TestEmulation()
14381 out_stream.Printf("TestEmulation: Invalid arch.\n"); in TestEmulation()
14391 out_stream.Printf("TestEmulation: Failed to find 'before' state.\n"); in TestEmulation()
14397 out_stream.Printf("TestEmulation: Failed loading 'before' state.\n"); in TestEmulation()
14404 out_stream.Printf("TestEmulation: Failed to find 'after' state.\n"); in TestEmulation()
14410 out_stream.Printf("TestEmulation: Failed loading 'after' state.\n"); in TestEmulation()
14422 out_stream.Printf("TestEmulation: EvaluateInstruction() failed.\n"); in TestEmulation()
14426 success = before_state.CompareState(after_state, out_stream); in TestEmulation()
[all …]
/llvm-project/openmp/runtime/src/
H A Dkmp_io.cpp115 void __kmp_vprintf(enum kmp_io out_stream, char const *format, va_list ap) { in __kmp_vprintf() argument
120 if (!__kmp_stderr && out_stream == kmp_err) { in __kmp_vprintf()
123 if (!__kmp_stdout && out_stream == kmp_out) { in __kmp_vprintf()
127 auto stream = ((out_stream == kmp_out) ? __kmp_stdout : __kmp_stderr); in __kmp_vprintf()
/llvm-project/lldb/source/Core/
H A DDisassembler.cpp716 OptionValueSP Instruction::ReadArray(FILE *in_file, Stream &out_stream, in ReadArray()
726 out_stream.Printf( in ReadArray()
775 OptionValueSP Instruction::ReadDictionary(FILE *in_file, Stream &out_stream) { in ReadDictionary()
786 out_stream.Printf( in ReadDictionary()
821 out_stream.Printf("Instruction::ReadDictionary: Failure executing " in ReadDictionary()
836 value_sp = ReadDictionary(in_file, out_stream); in ReadDictionary()
844 value_sp = ReadArray(in_file, out_stream, data_type); in ReadDictionary()
877 bool Instruction::TestEmulation(Stream &out_stream, const char *file_name) { in TestEmulation()
879 out_stream.Printf("Instruction::TestEmulation: Missing file_name."); in TestEmulation()
884 out_stream in TestEmulation()
702 ReadArray(FILE * in_file,Stream & out_stream,OptionValue::Type data_type) ReadArray() argument
761 ReadDictionary(FILE * in_file,Stream & out_stream) ReadDictionary() argument
863 TestEmulation(Stream & out_stream,const char * file_name) TestEmulation() argument
[all...]
H A DFormatEntity.cpp1118 /// Writes out the function name in 'full_name' to 'out_stream' in PrettyPrintFunctionNameWithArgs() argument
1121 static void PrettyPrintFunctionNameWithArgs(Stream &out_stream, in PrettyPrintFunctionNameWithArgs()
1127 out_stream.Write(full_name, open_paren - full_name + 1); in PrettyPrintFunctionNameWithArgs()
1129 out_stream.PutCString(full_name); in PrettyPrintFunctionNameWithArgs()
1130 out_stream.PutChar('('); in PrettyPrintFunctionNameWithArgs()
1133 FormatEntity::PrettyPrintFunctionArguments(out_stream, args, exe_scope); in PrettyPrintFunctionNameWithArgs()
1136 out_stream.PutCString(close_paren); in PrettyPrintFunctionNameWithArgs()
1138 out_stream.PutChar(')'); in FormatInlinedBlock() argument
1141 static void FormatInlinedBlock(Stream &out_stream, Block *block) { in FormatInlinedBlock()
1148 out_stream in FormatInlinedBlock()
2465 PrettyPrintFunctionArguments(Stream & out_stream,VariableList const & args,ExecutionContextScope * exe_scope) PrettyPrintFunctionArguments() argument
[all...]
/llvm-project/third-party/benchmark/test/
H A Doutput_test_helper.cc402 std::stringstream out_stream; in RunOutputTests() member
409 reporter.SetOutputStream(&out_stream); in RunOutputTests()
433 std::cout << rep_test.out_stream.str(); in RunOutputTests()
436 internal::CheckCases(rep_test.output_cases, rep_test.out_stream); in RunOutputTests()
446 internal::GetResultsChecker().CheckResults(csv.out_stream); in RunOutputTests()
/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp177 /// Writes out the function name in 'full_name' to 'out_stream'
180 static bool PrettyPrintFunctionNameWithArgs(Stream &out_stream, in PrettyPrintFunctionNameWithArgs() argument
191 out_stream.PutCString(return_type); in PrettyPrintFunctionNameWithArgs()
192 out_stream.PutChar(' '); in PrettyPrintFunctionNameWithArgs()
195 out_stream.PutCString(cpp_method.GetScopeQualifiedName()); in PrettyPrintFunctionNameWithArgs()
196 out_stream.PutChar('('); in PrettyPrintFunctionNameWithArgs()
198 FormatEntity::PrettyPrintFunctionArguments(out_stream, args, exe_scope); in PrettyPrintFunctionNameWithArgs()
200 out_stream.PutChar(')'); in PrettyPrintFunctionNameWithArgs()
204 out_stream.PutChar(' '); in PrettyPrintFunctionNameWithArgs()
205 out_stream in PrettyPrintFunctionNameWithArgs()
[all...]
/llvm-project/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.h60 bool TestEmulation(Stream &out_stream, ArchSpec &arch, in TestEmulation() argument
/llvm-project/lldb/source/API/
H A DSBInstruction.cpp295 StreamFile out_stream(out_sp); in Print() local
298 inst_sp->Dump(&out_stream, 0, true, false, /*show_control_flow_kind=*/false, in Print()
/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.h65 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
H A DEmulateInstructionRISCV.cpp1766 bool EmulateInstructionRISCV::TestEmulation(Stream &out_stream, ArchSpec &arch, in CreateInstance()
1751 TestEmulation(Stream & out_stream,ArchSpec & arch,OptionValueDictionary * test_data) TestEmulation() argument
/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.h55 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
H A DEmulateInstructionLoongArch.cpp190 Stream &out_stream, ArchSpec &arch, OptionValueDictionary *test_data) { in TestEmulation() argument
/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h181 lldb::OptionValueSP ReadArray(FILE *in_file, Stream &out_stream,
184 lldb::OptionValueSP ReadDictionary(FILE *in_file, Stream &out_stream);
H A DFormatEntity.h241 /// name and it's pretty-printed value representation to 'out_stream'
247 void PrettyPrintFunctionArguments(Stream &out_stream, VariableList const &args,
H A DEmulateInstruction.h380 virtual bool TestEmulation(Stream &out_stream, ArchSpec &arch,
/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h63 bool TestEmulation(lldb_private::Stream &out_stream, in TestEmulation() argument
/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp815 StreamSP out_stream = GetDebugger().GetAsyncOutputStream(); in IOHandlerInputComplete()
816 out_stream->Printf("error: %s\n", error.AsCString()); in IOHandlerInputComplete()
2682 Stream &out_stream = result.GetOutputStream(); in DoExecute()
2684 out_stream << "Deleted command:"; in DoExecute()
2686 out_stream << ' '; in DoExecute()
2687 out_stream << command[idx].c_str(); in DoExecute()
2689 out_stream << '\n'; in DoExecute()
809 StreamSP out_stream = GetDebugger().GetAsyncOutputStream(); IOHandlerInputComplete() local
2447 Stream &out_stream = result.GetOutputStream(); DoExecute() local
/llvm-project/libcxx/include/experimental/
H A Diterator40 ostream_type* out_stream; // exposition only
/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.h70 bool TestEmulation(lldb_private::Stream &out_stream, in TestEmulation() argument
/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.h78 bool TestEmulation(lldb_private::Stream &out_stream, in TestEmulation() argument
/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1451 llvm::raw_string_ostream out_stream(fixed_expression); in DoPrepareForExecution()
1453 main_file_buffer.write(out_stream); in DoPrepareForExecution()
1277 llvm::raw_string_ostream out_stream(fixed_expression); RewriteExpression() local