| /src/crypto/external/apache2/openssl/dist/apps/lib/ |
| fmt.c | 12 int FMT_istext(int format) 14 return (format & B_FORMAT_TEXT) == B_FORMAT_TEXT;
|
| /src/crypto/external/bsd/openssl/dist/apps/lib/ |
| fmt.c | 12 int FMT_istext(int format) 14 return (format & B_FORMAT_TEXT) == B_FORMAT_TEXT;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.guile/ |
| source2.scm | 18 (display (format #f "y~As" "e"))
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.guile/ |
| source2.scm | 18 (display (format #f "y~As" "e"))
|
| /src/external/bsd/zstd/dist/tests/cli-tests/compression/ |
| format.sh | 3 . "$COMMON/format.sh" 7 # Test --format 8 zstd --format=zstd file -f 10 for format in "gzip" "lz4" "xz" "lzma"; do 11 if zstd_supports_format $format; then 12 zstd --format=$format file 13 zstd -t file.$(format_extension $format) 14 zstd -c --format=$format file | zstd -t --format=$forma [all...] |
| /src/external/gpl3/gcc/dist/libobjc/objc-private/ |
| common.h | 39 #define DEBUG_PRINTF(format, args...) printf (format, ## args) 41 #define DEBUG_PRINTF(format, args...)
|
| /src/external/gpl3/gcc.old/dist/libobjc/objc-private/ |
| common.h | 39 #define DEBUG_PRINTF(format, args...) printf (format, ## args) 41 #define DEBUG_PRINTF(format, args...)
|
| /src/external/gpl2/lvm2/dist/include/ |
| pogen.h | 18 * Macros to change log messages into a format that xgettext can handle. 24 #define print_log(level, dm_errno, file, line, format, args...) print_log(format, args) 25 #define dm_log(level, file, line, format, args...) dm_log(format, args) 26 #define dm_log_with_errno(level, dm_errno, file, line, format, args...) \ 27 dm_log(level, file, line, format, args)
|
| /src/external/gpl2/lvm2/dist/po/ |
| pogen.h | 18 * Macros to change log messages into a format that xgettext can handle. 24 #define print_log(level, dm_errno, file, line, format, args...) print_log(format, args) 25 #define dm_log(level, file, line, format, args...) dm_log(format, args) 26 #define dm_log_with_errno(level, dm_errno, file, line, format, args...) \ 27 dm_log(level, file, line, format, args)
|
| /src/crypto/external/bsd/openssh/dist/ |
| utf8.h | 21 __attribute__((format(printf, 4, 0))); 23 __attribute__((format(printf, 1, 2))); 25 __attribute__((format(printf, 2, 3))); 27 __attribute__((format(printf, 2, 0))); 29 __attribute__((format(printf, 4, 5))); 31 __attribute__((format(printf, 4, 5)));
|
| /src/external/bsd/ipf/dist/lib/ |
| printifname.c | 15 printifname(format, name, ifp) 16 char *format, *name; 19 PRINTF("%s%s", format, name);
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| xasprintf.c | 24 xasprintf (const char *format, ...) 29 va_start (args, format); 30 result = xvasprintf (format, args);
|
| /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| xasprintf.c | 24 xasprintf (const char *format, ...) 29 va_start (args, format); 30 result = xvasprintf (format, args);
|
| /src/external/cddl/osnet/dist/tools/ctf/common/ |
| utils.c | 44 vwarn(const char *format, va_list alist) 50 (void) vfprintf(stderr, format, alist); 52 if (strchr(format, '\n') == NULL) 58 warn(const char *format, ...) 62 va_start(alist, format); 63 vwarn(format, alist); 68 vdie(const char *format, va_list alist) 70 vwarn(format, alist); 76 die(const char *format, ...) 80 va_start(alist, format); [all...] |
| /src/external/bsd/kyua-cli/dist/utils/format/ |
| macros.hpp | 29 /// \file utils/format/macros.hpp 30 /// Convenience macros to simplify usage of the format library. 40 #include "utils/format/formatter.ipp" 43 /// Constructs a utils::format::formatter object with the given format string. 46 /// utils::format::formatter objects shorter, and thus to allow inlining these 54 /// \param fmt The format string. 55 #define F(fmt) utils::format::formatter(fmt)
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
| DWARFTypeUnit.cpp | 14 #include "llvm/Support/Format.h" 27 << ", type_signature = " << format("0x%016" PRIx64, getTypeHash()) 28 << ", length = " << format("0x%0*" PRIx64, OffsetDumpWidth, getLength()) 33 OS << format("0x%08" PRIx64, getOffset()) << ": Type Unit:" 34 << " length = " << format("0x%0*" PRIx64, OffsetDumpWidth, getLength()) 35 << ", format = " << dwarf::FormatString(getFormat()) 36 << ", version = " << format("0x%04x", getVersion()); 39 OS << ", abbr_offset = " << format("0x%04" PRIx64, getAbbrOffset()); 42 OS << ", addr_size = " << format("0x%02x", getAddressByteSize()) 44 << ", type_signature = " << format("0x%016" PRIx64, getTypeHash() [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/dyndb/driver/ |
| log.h | 42 #define log_error(format, ...) log_write(ISC_LOG_ERROR, format, ##__VA_ARGS__) 44 #define log_info(format, ...) log_write(ISC_LOG_INFO, format, ##__VA_ARGS__) 47 log_write(int level, const char *format, ...) ISC_FORMAT_PRINTF(2, 3);
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| errors.d | 54 private extern (C++) void noop(const ref Loc loc, const(char)* format, ...) {} 56 pragma(printf) private extern (C++) void noop(const ref Loc loc, const(char)* format, ...) {} 84 * format = printf-style format specification 88 extern (C++) void error(const ref Loc loc, const(char)* format, ...) 91 va_start(ap, format); 92 verror(loc, format, ap); 96 pragma(printf) extern (C++) void error(const ref Loc loc, const(char)* format, ...) 99 va_start(ap, format); 100 verror(loc, format, ap) [all...] |
| errors.h | 20 #define D_ATTRIBUTE_FORMAT(m, n) __attribute__((format(printf, m, n))) __attribute__((nonnull (m))) 25 // Print a warning, deprecation, or error, accepts printf-like format specifiers. 26 D_ATTRIBUTE_FORMAT(2, 3) void warning(const Loc& loc, const char *format, ...); 27 D_ATTRIBUTE_FORMAT(2, 3) void warningSupplemental(const Loc& loc, const char *format, ...); 28 D_ATTRIBUTE_FORMAT(2, 3) void deprecation(const Loc& loc, const char *format, ...); 29 D_ATTRIBUTE_FORMAT(2, 3) void deprecationSupplemental(const Loc& loc, const char *format, ...); 30 D_ATTRIBUTE_FORMAT(2, 3) void error(const Loc& loc, const char *format, ...); 31 D_ATTRIBUTE_FORMAT(4, 5) void error(const char *filename, unsigned linnum, unsigned charnum, const char *format, ...); 32 D_ATTRIBUTE_FORMAT(2, 3) void errorSupplemental(const Loc& loc, const char *format, ...); 33 D_ATTRIBUTE_FORMAT(2, 0) void verror(const Loc& loc, const char *format, va_list ap, const char *p1 = NULL, const char *p2 = NULL, const char *header = "Error: ") [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| format-boost.c | 1 /* Boost format strings. 26 #include "format.h" 30 #include "format-invalid.h" 35 /* Boost format strings are described in 36 boost_1_33_1/libs/format/doc/format.html 38 boost_1_33_1/boost/format/parsing.hpp. 68 The Boost format string interpreter doesn't actually care about 117 format_parse (const char *format, bool translated, char **invalid_reason) 129 for (; *format != '\0'; [all...] |
| format-java.c | 1 /* Java format strings. 28 #include "format.h" 33 #include "format-invalid.h" 38 /* Java format strings are described in java/text/MessageFormat.html. 131 static bool date_format_parse (const char *format); 132 static bool number_format_parse (const char *format); 133 static bool choice_format_parse (const char *format, struct spec *spec, 140 Assumes local variables format, quoting. */ 142 if (*format == '\'' && *++format != '\'') [all...] |
| format-php.c | 1 /* PHP format strings. 26 #include "format.h" 30 #include "format-invalid.h" 35 /* PHP format strings are described in phpdoc-4.0.6, file 97 format_parse (const char *format, bool translated, char **invalid_reason) 112 for (; *format != '\0';) 113 if (*format++ == '%') 118 if (*format != '%') 125 if (isdigit (*format)) 127 const char *f = format; [all...] |
| /src/external/mit/libcbor/dist/ |
| clang-format.sh | 3 # TravisCI workaround to use new clang-format while avoiding painful aliasing 5 if which clang-format-8; then 6 clang-format-8 --verbose -style=file -i **/*.c **/*.h **/*.cpp 8 clang-format --verbose -style=file -i **/*.c **/*.h **/*.cpp
|
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
| eprintf.c | 29 __eprintf(const char* format, const char* assertion_expression, 32 fprintf(stderr, format, assertion_expression, line, file);
|
| /src/external/gpl2/gettext/dist/gettext-runtime/intl/ |
| printf.c | 1 /* Formatted output to strings, using POSIX/XSI format strings with positions. 73 /* Don't break __attribute__((format(printf,M,N))). 95 libintl_vfprintf (FILE *stream, const char *format, va_list args) 97 if (strchr (format, '$') == NULL) 98 return vfprintf (stream, format, args); 102 char *result = libintl_vasnprintf (NULL, &length, format, args); 122 libintl_fprintf (FILE *stream, const char *format, ...) 127 va_start (args, format); 128 retval = libintl_vfprintf (stream, format, args); 135 libintl_vprintf (const char *format, va_list args [all...] |