Searched refs:oss (Results 1 – 14 of 14) sorted by relevance
66 std::ostringstream oss; in dumpMemoryAddresses() local67 oss << leak_info.total_memory << " bytes in " << count << " allocations\n"; in dumpMemoryAddresses()68 oss << " ABI: '" ABI_STRING "'" << "\n\n"; in dumpMemoryAddresses()83 oss << (e->size * e->allocations) in dumpMemoryAddresses()85 oss << backtrace_string(e->backtrace, leak_info.backtrace_size) << "\n"; in dumpMemoryAddresses()87 oss << "\n"; in dumpMemoryAddresses()89 return oss.str(); in dumpMemoryAddresses()
42 std::ostringstream oss; in getElapsedTime() local43 oss << std::setfill('0') << std::setw(2) << hour << ":" << std::setw(2) << minutes << ":" in getElapsedTime()45 return oss.str(); in getElapsedTime()
153 std::stringstream oss;154 oss.precision(gFloatPrecision);155 oss << value;156 str = oss.str();157 return !oss.fail() && !oss.bad();
473 std::stringstream oss; in writeDumpFooter() local474 oss << std::put_time(&finish_tm, "%Y-%m-%d %H:%M:%S"); in writeDumpFooter()477 elapsedDuration.count(), String8(serviceName).string(), oss.str().c_str()); in writeDumpFooter()
49 * https://github.com/google/oss-fuzz
56 * https://github.com/google/oss-fuzz
2 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .
578 std::ostringstream oss; in toString() local579 oss << "Step#" << step.index << ": if " << toString(step.conditionOperandIndex) in toString()581 return oss.str(); in toString()585 std::ostringstream oss; in toString() local586 oss << "Step#" << step.index << ": while cond=" << step.condStepIndex in toString()588 return oss.str(); in toString()592 std::ostringstream oss; in toString() local593 oss << "Step#" << step.index << ": goto " << step.gotoStepIndex; in toString()594 return oss.str(); in toString()
61 * https://github.com/google/oss-fuzz
62 * https://github.com/google/oss-fuzz
57 * https://github.com/google/oss-fuzz
346 std::ostringstream oss;347 oss << "(" << toString(pair.first) << ", " << toString(pair.second) << ")";348 return oss.str();
360 std::ostringstream oss; in RuntimeAbort() local361 oss << __FILE__ << ":" << line << ": " << msg; in RuntimeAbort()362 env->FatalError(oss.str().c_str()); in RuntimeAbort()
326 * https://github.com/google/oss-fuzz