HomeSort by relevance Sort by last modified time
    Searched refs:SNPRINTF (Results 1 - 10 of 10) sorted by null

  /external/linux-tools-perf/util/
top.c 64 #define SNPRINTF(buf, size, fmt, args...) \
66 size_t r = snprintf(buf, size, fmt, ## args); \
79 ret = SNPRINTF(bf, size,
90 ret = SNPRINTF(bf, size,
110 ret += SNPRINTF(bf + ret, size - ret, "%" PRIu64 "%s ",
116 ret += SNPRINTF(bf + ret, size - ret, "%s",
126 ret += SNPRINTF(bf + ret, size - ret, "%s%s",
137 ret += SNPRINTF(bf + ret, size - ret, "], ");
140 ret += SNPRINTF(bf + ret, size - ret, " (target_pid: %d",
143 ret += SNPRINTF(bf + ret, size - ret, " (target_tid: %d"
    [all...]
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
temporary_file.cc 32 SNPRINTF(reinterpret_cast<char *>(identifier_), sizeof identifier_,
local_temp_file.cc 37 SNPRINTF(frag, sizeof frag, "%08x", num);
86 SNPRINTF(reinterpret_cast<char *>(identifier_), sizeof identifier_,
  /external/e2fsprogs/intl/
vasnprintf.c 19 /* Tell glibc's <stdio.h> to provide a prototype for snprintf().
40 #include <stdio.h> /* snprintf(), sprintf() */
88 # define SNPRINTF _snwprintf
91 # define SNPRINTF swprintf
102 # define SNPRINTF _snprintf
105 # define SNPRINTF snprintf
146 sprintf or snprintf. */
501 /* Construct the format string for calling snprintf or
565 /* Construct the arguments for calling snprintf or sprintf. *
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkString.cpp 23 #define SNPRINTF _snprintf
26 #define SNPRINTF snprintf
138 int len = SNPRINTF(buffer, sizeof(buffer), gFormat, value);
659 #undef SNPRINTF
  /external/skia/src/core/
SkString.cpp 23 #define SNPRINTF _snprintf
26 #define SNPRINTF snprintf
138 int len = SNPRINTF(buffer, sizeof(buffer), gFormat, value);
659 #undef SNPRINTF
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFTypes.cpp 15 #define SNPRINTF _snprintf
17 #define SNPRINTF snprintf
184 // SkStrAppendFloat might still use scientific notation, so use snprintf
188 int len = SNPRINTF(buffer, kFloat_MaxSize, "%#.8f", value);
  /external/skia/src/pdf/
SkPDFTypes.cpp 15 #define SNPRINTF _snprintf
17 #define SNPRINTF snprintf
184 // SkStrAppendFloat might still use scientific notation, so use snprintf
188 int len = SNPRINTF(buffer, kFloat_MaxSize, "%#.8f", value);
  /external/bison/lib/
vasnprintf.c 33 SNPRINTF The system's snprintf (or similar) function.
34 This may be either snprintf or swprintf.
36 of the said SNPRINTF function. This may be either
46 /* Tell glibc's <stdio.h> to provide a prototype for snprintf().
70 #include <stdio.h> /* snprintf(), sprintf() */
156 # define SNPRINTF snwprintf
158 # define SNPRINTF _snwprintf
162 # define SNPRINTF swprintf
166 /* Use snprintf if it exists under the name 'snprintf' or '_snprintf'
182 # undef snprintf macro
190 # undef snprintf macro
    [all...]
  /external/genext2fs/
genext2fs.c 287 // moreover it will define a snprintf() like a sprintf(), i.e.
313 # define SNPRINTF portable_snprintf
315 # define SNPRINTF snprintf
    [all...]

Completed in 1806 milliseconds