Searched refs:oss (Results 51 - 75 of 142) sorted by relevance

123456

/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
H A D12-47.c28 stack_t oss; local
32 if (sigaltstack(NULL, &oss) == -1) {
38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) {
H A D12-48.c28 stack_t oss; local
32 if (sigaltstack(NULL, &oss) == -1) {
38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) {
H A D12-49.c28 stack_t oss; local
32 if (sigaltstack(NULL, &oss) == -1) {
38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) {
H A D12-50.c28 stack_t oss; local
32 if (sigaltstack(NULL, &oss) == -1) {
38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) {
H A D12-51.c28 stack_t oss; local
32 if (sigaltstack(NULL, &oss) == -1) {
38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) {
H A D12-52.c28 stack_t oss; local
32 if (sigaltstack(NULL, &oss) == -1) {
38 if (oss.ss_sp != current.ss_sp || oss.ss_size != current.ss_size) {
/external/libpng/contrib/oss-fuzz/
H A Dbuild.sh41 $SRC/libpng/contrib/oss-fuzz/libpng_read_fuzzer.cc \
49 cp $SRC/libpng/contrib/oss-fuzz/*.dict \
50 $SRC/libpng/contrib/oss-fuzz/*.options $OUT/
/external/mesa3d/src/gallium/state_trackers/clover/llvm/
H A Dutil.hpp46 std::ostringstream oss; local
61 oss.put(c);
70 oss.put(c);
71 } else if (oss.tellp() > 0) {
72 ss.emplace_back(oss.str());
73 oss.str("");
77 if (oss.tellp() > 0)
78 ss.emplace_back(oss.str());
/external/vixl/src/
H A Dglobals-vixl.h101 std::ostringstream oss; \
102 oss << "Aborting in " << __FILE__ << ", line " << __LINE__ << std::endl; \
103 throw std::runtime_error(oss.str()); \
107 std::ostringstream oss; \
108 oss << (msg) << "in " << __FILE__ << ", line " << __LINE__ << std::endl; \
109 throw std::runtime_error(oss.str()); \
114 std::ostringstream oss; \
115 oss << "Assertion failed (" #condition ")\nin "; \
116 oss << __FILE__ << ", line " << __LINE__ << std::endl; \
117 throw std::runtime_error(oss
[all...]
/external/swiftshader/third_party/LLVM/unittests/VMCore/
H A DMetadataTest.cpp59 raw_string_ostream oss(Str);
60 s->print(oss);
61 EXPECT_STREQ("metadata !\"testing 1 2 3\"", oss.str().c_str());
69 raw_string_ostream oss(Str);
70 s->print(oss);
71 EXPECT_STREQ("metadata !\"\\00\\0A\\22\\5C\\FF\"", oss.str().c_str());
140 raw_string_ostream oss(Str);
141 NMD->print(oss);
143 oss.str().c_str());
/external/dagger2/util/
H A Dmvn-deploy.sh19 mvn "$@" -P '!examples' -P sonatype-oss-release \
/external/deqp/framework/common/
H A DtcuFloatFormat.cpp245 std::ostringstream oss; local
247 oss << (x < 0 ? "-" : "")
252 return oss.str();
325 ostringstream oss;
326 oss << expr << " returned " << result << ", expected " << reference;
327 TCU_FAIL(oss.str().c_str());
333 ostringstream oss;
335 oss << "ulp(" << arg << ")";
336 check(oss.str(), m_fmt->ulp(arg), ref);
342 ostringstream oss;
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fSeparateShaderTests.cpp200 void printInputColor (ostringstream& oss, const VariableDeclaration& input) argument
229 oss << "hsv(vec3(" << exp << ", 1.0, 1.0))";
232 oss << "hsv(vec3(" << exp << ", 1.0))";
235 oss << "vec4(" << exp << ", 1.0)";
238 oss << exp;
250 oss << "hsv(vec3(determinant(" << exp << ")))";
261 oss << "hsv(" << exp << ")";
384 void printFloat (ostringstream& oss, double d)
386 oss.setf(oss
[all...]
H A Des31fShaderUniformIntegerFunctionTests.cpp77 std::ostringstream oss; local
79 oss << "uniform " << glu::declare(varType, "value", 0) << ";\n";
80 m_spec.globalDeclarations = oss.str();
98 std::ostringstream oss; local
99 oss <<
102 m_spec.source = oss.str();
/external/flatbuffers/src/
H A Dutil.cpp39 std::ostringstream oss; local
40 oss << ifs.rdbuf();
41 *buf = oss.str();
/external/zlib/src/contrib/iostream2/
H A Dzstream.h243 ostrstream* oss = new ostrstream; local
244 oss->fill(m_os->fill());
245 oss->flags(m_os->flags());
246 oss->precision(m_os->precision());
247 oss->width(m_os->width());
249 delete[] m_os->str(); delete m_os; m_os = oss;
/external/webrtc/webrtc/base/
H A Doptional_unittest.cc80 std::ostringstream oss; local
81 oss << id_ << ':' << origin_ << ". " << msg;
82 log_->push_back(oss.str());
85 std::ostringstream oss; local
86 oss << id_ << ':' << origin_ << ". " << msg << " (from " << other.id_ << ':'
88 log_->push_back(oss.str());
91 std::ostringstream oss; local
92 oss << msg << ' ' << a.id_ << ':' << a.origin_ << ", " << b.id_ << ':'
94 log_->push_back(oss.str());
H A Dstringencode.h185 std::ostringstream oss; local
186 oss << std::boolalpha << t;
187 *s = oss.str();
188 return !oss.fail();
/external/jsoncpp/src/test_lib_json/
H A Djsontest.h85 std::ostringstream oss; local
86 oss.precision(16);
87 oss.setf(std::ios_base::floatfield);
88 oss << value;
89 return addToLastFailure(oss.str());
/external/tensorflow/tensorflow/core/debug/
H A Ddebug_io_utils.cc330 std::ostringstream oss; local
333 oss << "{";
334 oss << "\"global_step\":" << global_step << ",";
335 oss << "\"session_run_index\":" << session_run_index << ",";
336 oss << "\"executor_step_index\":" << executor_step_index << ",";
337 oss << "\"input_names\":[";
339 oss << "\"" << input_names[i] << "\"";
341 oss << ",";
344 oss << "],";
345 oss << "\"output_name
[all...]
/external/libchrome/base/time/
H A Dtime_unittest.cc871 std::ostringstream oss; local
872 oss << any;
873 return oss.str();
1133 std::ostringstream oss; local
1134 std::ios_base::fmtflags flags_before = oss.flags();
1135 oss << TimeDelta();
1136 EXPECT_EQ(flags_before, oss.flags());
1140 std::ostringstream oss; local
1141 oss << TimeDelta();
1142 EXPECT_TRUE(oss
1156 std::ostringstream oss; local
1163 std::ostringstream oss; local
1185 std::ostringstream oss; local
1192 std::ostringstream oss; local
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.h34 struct sigaltstack* oss);
/external/owasp/sanitizer/tools/
H A Dstage_to_maven_central.sh88 -Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/ \
/external/valgrind/coregrind/
H A Dpub_core_signals.h59 vki_stack_t* oss );
/external/parameter-framework/upstream/parameter/
H A DArrayParameter.cpp226 std::ostringstream oss; local
228 oss << "Provided index out of range (max is " << getArrayLength() - 1 << ")";
230 parameterAccessContext.setError(oss.str());

Completed in 1638 milliseconds

123456