/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | types.cpp | 65 std::ostringstream oss; in GetDecorationStr() local 66 oss << "[["; in GetDecorationStr() 68 oss << "("; in GetDecorationStr() 70 oss << (i > 0 ? ", " : ""); in GetDecorationStr() 71 oss << decoration.at(i); in GetDecorationStr() 73 oss << ")"; in GetDecorationStr() 75 oss << "]]"; in GetDecorationStr() 76 return oss.str(); in GetDecorationStr() 247 std::ostringstream oss; in str() local 248 oss << (signed_ ? "s" : "u") << "int" << width_; in str() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | types.cpp | 65 std::ostringstream oss; in GetDecorationStr() local 66 oss << "[["; in GetDecorationStr() 68 oss << "("; in GetDecorationStr() 70 oss << (i > 0 ? ", " : ""); in GetDecorationStr() 71 oss << decoration.at(i); in GetDecorationStr() 73 oss << ")"; in GetDecorationStr() 75 oss << "]]"; in GetDecorationStr() 76 return oss.str(); in GetDecorationStr() 247 std::ostringstream oss; in str() local 248 oss << (signed_ ? "s" : "u") << "int" << width_; in str() [all …]
|
/external/deqp/modules/gles31/functional/ |
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) in printFloat() argument 386 oss.setf(oss.fixed | oss.internal); in printFloat() 387 oss.precision(4); in printFloat() [all …]
|
/external/grpc-grpc/test/core/slice/ |
D | slice_weak_hash_table_test.cc | 76 std::ostringstream oss; in TEST() local 77 oss << "key-" << i; in TEST() 78 grpc_slice key = BuildRefCountedKey(oss.str().c_str()); in TEST() 79 oss.clear(); in TEST() 80 oss << "value-" << i; in TEST() 81 table->Add(key, UniquePtr<char>(gpr_strdup(oss.str().c_str()))); in TEST() 86 std::ostringstream oss; in TEST() local 87 oss << "key-" << i; in TEST() 88 grpc_slice key = BuildRefCountedKey(oss.str().c_str()); in TEST()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | debugger_state_interface.cc | 30 std::ostringstream oss; in SummarizeDebugTensorWatches() local 36 oss << "(TOL)"; // Shorthand for "tolerate". in SummarizeDebugTensorWatches() 38 oss << tensor_name << "|"; in SummarizeDebugTensorWatches() 41 oss << debug_op << ","; in SummarizeDebugTensorWatches() 44 oss << "@"; in SummarizeDebugTensorWatches() 46 oss << debug_url << ","; in SummarizeDebugTensorWatches() 49 oss << ";"; in SummarizeDebugTensorWatches() 52 return oss.str(); in SummarizeDebugTensorWatches()
|
/external/vixl/src/ |
D | globals-vixl.h | 98 std::ostringstream oss; \ 99 oss << "Aborting in " << __FILE__ << ", line " << __LINE__ << std::endl; \ 100 throw std::runtime_error(oss.str()); \ 104 std::ostringstream oss; \ 105 oss << (msg) << "in " << __FILE__ << ", line " << __LINE__ << std::endl; \ 106 throw std::runtime_error(oss.str()); \ 111 std::ostringstream oss; \ 112 oss << "Assertion failed (" #condition ")\nin "; \ 113 oss << __FILE__ << ", line " << __LINE__ << std::endl; \ 114 throw std::runtime_error(oss.str()); \
|
/external/mesa3d/src/gallium/state_trackers/clover/llvm/ |
D | util.hpp | 46 std::ostringstream oss; in tokenize() local 61 oss.put(c); in tokenize() 70 oss.put(c); in tokenize() 71 } else if (oss.tellp() > 0) { in tokenize() 72 ss.emplace_back(oss.str()); in tokenize() 73 oss.str(""); in tokenize() 77 if (oss.tellp() > 0) in tokenize() 78 ss.emplace_back(oss.str()); in tokenize()
|
/external/deqp/framework/common/ |
D | tcuFloatFormat.cpp | 245 std::ostringstream oss; in floatToHex() local 247 oss << (x < 0 ? "-" : "") in floatToHex() 252 return oss.str(); in floatToHex() 325 ostringstream oss; in check() local 326 oss << expr << " returned " << result << ", expected " << reference; in check() 327 TCU_FAIL(oss.str().c_str()); in check() 333 ostringstream oss; in testULP() local 335 oss << "ulp(" << arg << ")"; in testULP() 336 check(oss.str(), m_fmt->ulp(arg), ref); in testULP() 342 ostringstream oss; in testRound() local [all …]
|
/external/swiftshader/third_party/LLVM/unittests/VMCore/ |
D | MetadataTest.cpp | 59 raw_string_ostream oss(Str); in TEST_F() local 60 s->print(oss); in TEST_F() 61 EXPECT_STREQ("metadata !\"testing 1 2 3\"", oss.str().c_str()); in TEST_F() 69 raw_string_ostream oss(Str); in TEST_F() local 70 s->print(oss); in TEST_F() 71 EXPECT_STREQ("metadata !\"\\00\\0A\\22\\5C\\FF\"", oss.str().c_str()); in TEST_F() 140 raw_string_ostream oss(Str); in TEST() local 141 NMD->print(oss); in TEST() 143 oss.str().c_str()); in TEST()
|
/external/python/cpython3/Modules/_xxtestfuzz/ |
D | README.rst | 4 These fuzz tests are designed to be included in Google's `oss-fuzz`_ project. 6 oss-fuzz works against a library exposing a function of the form 11 oss-fuzz will regularly pull from CPython, discover all the tests in 13 automatically be run in oss-fuzz, while also being smoke-tested as part of 35 ``LLVMFuzzerTestOneInput`` will run in oss-fuzz, with each test in 44 `oss-fuzz`_ docs. 46 .. _oss-fuzz: https://github.com/google/oss-fuzz
|
/external/syzkaller/pkg/report/testdata/linux/guilty/ |
D | 27 | 1 FILE: sound/core/oss/mulaw.c 38 cvt_s16_to_native sound/core/oss/mulaw.c:164 [inline] 39 mulaw_decode+0x52f/0x770 sound/core/oss/mulaw.c:195 40 mulaw_transfer+0x222/0x270 sound/core/oss/mulaw.c:273 41 snd_pcm_plug_write_transfer+0x22d/0x420 sound/core/oss/pcm_plugin.c:611 42 snd_pcm_oss_write2+0x260/0x420 sound/core/oss/pcm_oss.c:1311 43 snd_pcm_oss_write1 sound/core/oss/pcm_oss.c:1372 [inline] 44 snd_pcm_oss_write+0x5fe/0x830 sound/core/oss/pcm_oss.c:2646
|
/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/ |
D | overflow.pass.cpp | 25 std::ostrstream oss; in main() local 31 oss << s << std::ends; in main() 32 std::cout << oss.str(); in main() 33 oss.freeze(false); in main()
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | layout_test.cc | 52 std::ostringstream oss; in TEST_F() local 53 oss << Tile({7, 8}); in TEST_F() 54 EXPECT_EQ(oss.str(), "(7,8)"); in TEST_F() 58 std::ostringstream oss; in TEST_F() local 59 oss << Layout({0, 1, 2}); in TEST_F() 60 EXPECT_EQ(oss.str(), "{0,1,2}"); in TEST_F()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/ |
D | 13-15.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
D | 13-22.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
D | 13-11.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
D | 13-5.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
D | 13-23.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
D | 13-14.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
D | 13-21.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
D | 13-10.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
D | 13-13.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
D | 13-9.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
D | 13-4.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|
D | 13-20.c | 28 stack_t oss; in handler() local 32 if (sigaltstack(NULL, &oss) == -1) { in handler() 38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) { in handler()
|