代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/455269/1624853
awk thruput.awk
BEGIN {
s = "";
}
{
if ($1 != "(0,0)->(3,0)") {
sum += $6;
s = sprintf("%s %d", s, $6);
}
}
END {
printf "%s %d", s, sum;
}
www.eeworm.com/read/229812/4742133
txt errmsgs.txt
Error Messages Require special formatting for symbol names to become
unmunged. To this end...
The sprintf() error message formatter has been replaced with FmtMsg().
FmtMsg() recognizes the follo
www.eeworm.com/read/221464/4832019
txt results.txt
// This benchmark is provided purely for information.
// It might not even compile as-is,
// or not give any sensible results.
// (e.g., it expects sprintf to be POSIX compliant)
new r
www.eeworm.com/read/213708/4913126
awk thruput.awk
BEGIN {
s = "";
}
{
if ($1 != "(0,0)->(3,0)") {
sum += $6;
s = sprintf("%s %d", s, $6);
}
}
END {
printf "%s %d", s, sum;
}
www.eeworm.com/read/209211/4984683
c ttyname.c
#include
#include
char *
ttyname(int fd)
{
static char buf[100];
sprintf(buf, "/fd/%d", fd);
return buf;
}
www.eeworm.com/read/168845/5435941
txt results.txt
// This benchmark is provided purely for information.
// It might not even compile as-is,
// or not give any sensible results.
// (e.g., it expects sprintf to be POSIX compliant)
new r
www.eeworm.com/read/307320/3724442
awk thruput.awk
BEGIN {
s = "";
}
{
if ($1 != "(0,0)->(3,0)") {
sum += $6;
s = sprintf("%s %d", s, $6);
}
}
END {
printf "%s %d", s, sum;
}
www.eeworm.com/read/301403/3840391
awk thruput.awk
BEGIN {
s = "";
}
{
if ($1 != "(0,0)->(3,0)") {
sum += $6;
s = sprintf("%s %d", s, $6);
}
}
END {
printf "%s %d", s, sum;
}
www.eeworm.com/read/290228/3983576
awk thruput.awk
BEGIN {
s = "";
}
{
if ($1 != "(0,0)->(3,0)") {
sum += $6;
s = sprintf("%s %d", s, $6);
}
}
END {
printf "%s %d", s, sum;
}
www.eeworm.com/read/440226/1799249
awk thruput.awk
BEGIN {
s = "";
}
{
if ($1 != "(0,0)->(3,0)") {
sum += $6;
s = sprintf("%s %d", s, $6);
}
}
END {
printf "%s %d", s, sum;
}