Home
last modified time | relevance | path

Searched refs:starArgs (Results 1 – 2 of 2) sorted by relevance

/mipi-sys-t-3.4.0/printer/include/
Dmipi_syst_printer.h130 const std::string& format, T value, const std::vector<int>& starArgs) in hostPrintf() argument
148 switch (starArgs.size()) { in hostPrintf()
153 result = nativeSprintf(buf, sizeof(buf), format.c_str(), starArgs[0], value); in hostPrintf()
156 result = nativeSprintf(buf, sizeof(buf), format.c_str(), starArgs[0], starArgs[1], value); in hostPrintf()
/mipi-sys-t-3.4.0/printer/src/
Dmipi_syst_printf.cpp326 std::vector<int> starArgs; // '*' args like in "%*.*f" in format() local
345 success = hostPrintf(sstr, it->text(), val, starArgs); in format()
348 success = hostPrintf(sstr, it->text(), val, starArgs); in format()
356 success = hostPrintf(sstr, it->text(), val, starArgs); in format()
388 success = hostPrintf(sstr, it->text(), bufPtr, starArgs); in format()
401 starArgs.push_back(bytes2ValLE<uint32_t>(bufPtr)); in format()
425 starArgs.clear(); in format()