MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / snprintf

Function snprintf

support/ToolchainSupport.h:155–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153 */
154template <typename... Ts>
155inline int snprintf(char *s, size_t n, const char *fmt, Ts &&...args)
156{
157 return ::snprintf(s, n, fmt, std::forward<Ts>(args)...);
158}
159#else /* (__ANDROID__ || BARE_METAL) */
160/** Rounds the floating-point argument arg to an integer value in floating-point format, using the current rounding mode.
161 *

Callers 3

string_with_formatFunction · 0.85
create_error_msgMethod · 0.85
strMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected