/third_party/spirv-tools/source/opt/ |
H A D | types.cpp | 69 std::ostringstream oss; in GetDecorationStr() local 70 oss << "[["; in GetDecorationStr() 72 oss << "("; in GetDecorationStr() 74 oss << (i > 0 ? ", " : ""); in GetDecorationStr() 75 oss << decoration.at(i); in GetDecorationStr() 77 oss << ")"; in GetDecorationStr() 79 oss << "]]"; in GetDecorationStr() 80 return oss.str(); in GetDecorationStr() 289 std::ostringstream oss; in str() local 290 oss << (signed in str() 304 std::ostringstream oss; str() local 327 std::ostringstream oss; str() local 353 std::ostringstream oss; str() local 389 std::ostringstream oss; str() local 410 std::ostringstream oss; str() local 438 std::ostringstream oss; str() local 475 std::ostringstream oss; str() local 527 std::ostringstream oss; str() local 555 std::ostringstream oss; str() local 615 std::ostringstream oss; str() local 642 std::ostringstream oss; str() local 660 std::ostringstream oss; str() local 693 std::ostringstream oss; str() local 732 std::ostringstream oss; str() local [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | types.cpp | 68 std::ostringstream oss; in GetDecorationStr() local 69 oss << "[["; in GetDecorationStr() 71 oss << "("; in GetDecorationStr() 73 oss << (i > 0 ? ", " : ""); in GetDecorationStr() 74 oss << decoration.at(i); in GetDecorationStr() 76 oss << ")"; in GetDecorationStr() 78 oss << "]]"; in GetDecorationStr() 79 return oss.str(); in GetDecorationStr() 256 std::ostringstream oss; in str() local 257 oss << (signed in str() 273 std::ostringstream oss; str() local 297 std::ostringstream oss; str() local 322 std::ostringstream oss; str() local 358 std::ostringstream oss; str() local 385 std::ostringstream oss; str() local 414 std::ostringstream oss; str() local 448 std::ostringstream oss; str() local 501 std::ostringstream oss; str() local 534 std::ostringstream oss; str() local 598 std::ostringstream oss; str() local 626 std::ostringstream oss; str() local 645 std::ostringstream oss; str() local 678 std::ostringstream oss; str() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | types.cpp | 68 std::ostringstream oss; in GetDecorationStr() local 69 oss << "[["; in GetDecorationStr() 71 oss << "("; in GetDecorationStr() 73 oss << (i > 0 ? ", " : ""); in GetDecorationStr() 74 oss << decoration.at(i); in GetDecorationStr() 76 oss << ")"; in GetDecorationStr() 78 oss << "]]"; in GetDecorationStr() 79 return oss.str(); in GetDecorationStr() 256 std::ostringstream oss; in str() local 257 oss << (signed in str() 273 std::ostringstream oss; str() local 297 std::ostringstream oss; str() local 322 std::ostringstream oss; str() local 358 std::ostringstream oss; str() local 385 std::ostringstream oss; str() local 414 std::ostringstream oss; str() local 448 std::ostringstream oss; str() local 501 std::ostringstream oss; str() local 534 std::ostringstream oss; str() local 598 std::ostringstream oss; str() local 626 std::ostringstream oss; str() local 645 std::ostringstream oss; str() local 678 std::ostringstream oss; str() local [all...] |
/third_party/elfio/tests/ |
H A D | elfio_fuzzer.cpp | 13 std::ostringstream oss; in LLVMFuzzerTestOneInput() local 21 dump::header( oss, elf ); in LLVMFuzzerTestOneInput() 22 dump::section_headers( oss, elf ); in LLVMFuzzerTestOneInput() 23 dump::segment_headers( oss, elf ); in LLVMFuzzerTestOneInput() 24 dump::symbol_tables( oss, elf ); in LLVMFuzzerTestOneInput() 25 dump::notes( oss, elf ); in LLVMFuzzerTestOneInput() 26 dump::modinfo( oss, elf ); in LLVMFuzzerTestOneInput() 27 dump::dynamic_tags( oss, elf ); in LLVMFuzzerTestOneInput() 28 dump::section_datas( oss, elf ); in LLVMFuzzerTestOneInput() 29 dump::segment_datas( oss, el in LLVMFuzzerTestOneInput() [all...] |
/third_party/node/test/cctest/ |
H A D | test_report.cc | 31 std::ostringstream oss; in TEST_F() local 36 oss); in TEST_F() local 39 std::string actual = oss.str(); in TEST_F() 47 std::ostringstream oss; in TEST_F() local 52 oss); in TEST_F() local 55 std::string actual = oss.str(); in TEST_F() 71 std::ostringstream oss; in TEST_F() 72 node::GetNodeReport(isolate, "FooMessage", "BarTrigger", args[0], oss); in TEST_F() 75 std::string actual = oss.str(); in TEST_F() 102 std::ostringstream oss; in TEST_F() [all...] |
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fSeparateShaderTests.cpp | 200 void printInputColor (ostringstream& oss, const VariableDeclaration& input) in printInputColor() argument 229 oss << "hsv(vec3(" << exp << ", 1.0, 1.0))"; in printInputColor() 232 oss << "hsv(vec3(" << exp << ", 1.0))"; in printInputColor() 235 oss << "vec4(" << exp << ", 1.0)"; in printInputColor() 238 oss << exp; in printInputColor() 250 oss << "hsv(vec3(determinant(" << exp << ")))"; in printInputColor() 261 oss << "hsv(" << exp << ")"; in printInputColor() 384 void printFloat (ostringstream& oss, double d) 386 oss.setf(oss [all...] |
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuFloatFormat.cpp | 245 std::ostringstream oss; in floatToHex() local 247 oss << (x < 0 ? "-" : "") in floatToHex() 252 return oss.str(); in floatToHex() 361 ostringstream oss; 362 oss << expr << " returned " << result << ", expected " << reference; 363 TCU_FAIL(oss.str().c_str()); 369 ostringstream oss; 371 oss << "ulp(" << arg << ")"; 372 check(oss.str(), m_fmt->ulp(arg), ref); 378 ostringstream oss; [all...] |
/third_party/vixl/src/ |
H A D | globals-vixl.h | 103 std::ostringstream oss; \ 104 oss << "Aborting in " << __FILE__ << ", line " << __LINE__ << std::endl; \ 105 throw std::runtime_error(oss.str()); \ 109 std::ostringstream oss; \ 110 oss << (msg) << "in " << __FILE__ << ", line " << __LINE__ << std::endl; \ 111 throw std::runtime_error(oss.str()); \ 116 std::ostringstream oss; \ 117 oss << "Assertion failed (" #condition ")\nin "; \ 118 oss << __FILE__ << ", line " << __LINE__ << std::endl; \ 119 throw std::runtime_error(oss [all...] |
/third_party/node/src/ |
H A D | util.cc | 296 std::ostringstream oss; in MakeFilename() local 299 oss << prefix; in MakeFilename() 301 oss << "." << std::setfill('0') << std::setw(4) << tm_struct.wYear; in MakeFilename() 302 oss << std::setfill('0') << std::setw(2) << tm_struct.wMonth; in MakeFilename() 303 oss << std::setfill('0') << std::setw(2) << tm_struct.wDay; in MakeFilename() 304 oss << "." << std::setfill('0') << std::setw(2) << tm_struct.wHour; in MakeFilename() 305 oss << std::setfill('0') << std::setw(2) << tm_struct.wMinute; in MakeFilename() 306 oss << std::setfill('0') << std::setw(2) << tm_struct.wSecond; in MakeFilename() 308 oss << "." in MakeFilename() 312 oss << st in MakeFilename() [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/ |
H A D | 12-27.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-28.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-29.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-30.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-31.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-36.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-37.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-38.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-32.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-33.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-34.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-35.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-50.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-48.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-51.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
H A D | 12-52.c | 27 stack_t oss; in handler() local 31 if (sigaltstack(NULL, &oss) == -1) { in handler() 37 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|