Searched refs:format (Results 1 - 25 of 963) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/ofed/libsdp/
H A Dchangelog_from_git.sh3 git log --pretty=format:"%ai %an <%ae>%n * %h %s%n"
/freebsd-10-stable/sys/contrib/octeon-sdk/
H A Dcvmx-warn.h63 extern void cvmx_warn(const char *format, ...);
65 extern void cvmx_warn(const char *format, ...) __attribute__ ((format(printf, 1, 2)));
69 #define cvmx_warn_if(expression, format, ...) if (expression) cvmx_warn(format, ##__VA_ARGS__)
H A Dcvmx-warn.c57 void cvmx_warn(const char *format, ...) argument
67 gd->err_msg = (void *)format;
69 gd->ogd.err_msg = (void *)format;
75 va_start(args, format);
78 vprintk(format, args);
85 vprintf(format, args);
/freebsd-10-stable/contrib/com_err/
H A Dlex.h37 __attribute__ ((format (printf, 1, 2)));
/freebsd-10-stable/crypto/heimdal/lib/com_err/
H A Dlex.h37 __attribute__ ((format (printf, 1, 2)));
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/
H A DDWARFCompileUnit.cpp17 OS << format("0x%08x", getOffset()) << ": Compile Unit:"
18 << " length = " << format("0x%08x", getLength())
19 << " version = " << format("0x%04x", getVersion())
20 << " abbr_offset = " << format("0x%04x", getAbbreviations()->getOffset())
21 << " addr_size = " << format("0x%02x", getAddressByteSize())
22 << " (next unit at " << format("0x%08x", getNextUnitOffset())
H A DDWARFTypeUnit.cpp26 OS << format("0x%08x", getOffset()) << ": Type Unit:"
27 << " length = " << format("0x%08x", getLength())
28 << " version = " << format("0x%04x", getVersion())
29 << " abbr_offset = " << format("0x%04x", getAbbreviations()->getOffset())
30 << " addr_size = " << format("0x%02x", getAddressByteSize())
31 << " type_signature = " << format("0x%16" PRIx64, TypeHash)
32 << " type_offset = " << format("0x%04x", TypeOffset)
33 << " (next unit at " << format("0x%08x", getNextUnitOffset())
/freebsd-10-stable/contrib/ncurses/ncurses/base/
H A Dlib_slkinit.c45 slk_init(int format) argument
49 T((T_CALLED("slk_init(%d)"), format));
50 if (format >= 0 && format <= 3 && !_nc_globals.slk_format) {
51 _nc_globals.slk_format = 1 + format;
/freebsd-10-stable/contrib/ipfilter/lib/
H A Dprintifname.c15 printifname(format, name, ifp)
16 char *format, *name;
19 PRINTF("%s%s", format, name);
/freebsd-10-stable/crypto/openssh/
H A Dutf8.h19 __attribute__((format(printf, 1, 2)));
21 __attribute__((format(printf, 2, 3)));
24 __attribute__((format(printf, 4, 5)));
/freebsd-10-stable/sys/dev/pms/freebsd/driver/common/
H A Dosdebug.h66 #define AG_ERROR_MSG(mask, val, format) \
71 printf format; \
74 printf format; \
78 #define TIDEBUG_MSG(mask, val, format) \
83 printf format ; \
88 printf format ; \
93 printf format ; \
98 #define TIDEBUG_MSG0(format) \
100 printf format ; \
103 #define TIDEBUG_MSG(mask, val, format)
[all...]
/freebsd-10-stable/contrib/tcp_wrappers/
H A Ddiag.c32 static void tcpd_diag(severity, tag, format, ap)
35 char *format;
42 tag, tcpd_context.file, tcpd_context.line, format);
44 sprintf(fmt, "%s: %s", tag, format);
50 void VARARGS(tcpd_warn, char *, format)
54 VASTART(ap, char *, format);
55 tcpd_diag(LOG_ERR, "warning", format, ap);
61 void VARARGS(tcpd_jump, char *, format)
65 VASTART(ap, char *, format);
66 tcpd_diag(LOG_ERR, "error", format, a
[all...]
H A Dmyvsyslog.c21 myvsyslog(severity, format, ap)
23 char *format;
29 vsprintf(obuf, percent_m(fbuf, format), ap);
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/mdb/tools/common/
H A Ddie.c39 die(char *format, ...) argument
49 va_start(ap, format);
50 /* LINTED - variable format specifier */
51 (void) vfprintf(stderr, format, ap);
54 if (format[strlen(format) - 1] != '\n')
65 elfdie(char *format, ...) argument
74 va_start(ap, format);
75 /* LINTED - variable format specifier */
76 (void) vfprintf(stderr, format, a
[all...]
/freebsd-10-stable/sys/amd64/vmm/
H A Dvmm_ktr.h39 #define VCPU_CTR0(vm, vcpuid, format) \
40 CTR2(KTR_VMM, "vm %s[%d]: " format, vm_name((vm)), (vcpuid))
42 #define VCPU_CTR1(vm, vcpuid, format, p1) \
43 CTR3(KTR_VMM, "vm %s[%d]: " format, vm_name((vm)), (vcpuid), (p1))
45 #define VCPU_CTR2(vm, vcpuid, format, p1, p2) \
46 CTR4(KTR_VMM, "vm %s[%d]: " format, vm_name((vm)), (vcpuid), (p1), (p2))
48 #define VCPU_CTR3(vm, vcpuid, format, p1, p2, p3) \
49 CTR5(KTR_VMM, "vm %s[%d]: " format, vm_name((vm)), (vcpuid), (p1), (p2), (p3))
51 #define VCPU_CTR4(vm, vcpuid, format, p1, p2, p3, p4) \
52 CTR6(KTR_VMM, "vm %s[%d]: " format, vm_nam
[all...]
/freebsd-10-stable/contrib/binutils/libiberty/
H A Dvfprintf.c12 vfprintf (FILE *stream, const char *format, va_list ap) argument
14 return _doprnt (format, ap, stream);
H A Dvprintf.c3 @deftypefn Supplemental int vprintf (const char *@var{format}, va_list @var{ap})
4 @deftypefnx Supplemental int vfprintf (FILE *@var{stream}, const char *@var{format}, va_list @var{ap})
5 @deftypefnx Supplemental int vsprintf (char *@var{str}, const char *@var{format}, va_list @var{ap})
23 vprintf (const char *format, va_list ap) argument
25 return vfprintf (stdout, format, ap);
/freebsd-10-stable/contrib/compiler-rt/lib/
H A Deprintf.c26 void __eprintf(const char* format, const char* assertion_expression, argument
29 fprintf(stderr, format, assertion_expression, line, file);
/freebsd-10-stable/contrib/gcclibs/libiberty/
H A Dvfprintf.c12 vfprintf (FILE *stream, const char *format, va_list ap) argument
14 return _doprnt (format, ap, stream);
H A Dvprintf.c3 @deftypefn Supplemental int vprintf (const char *@var{format}, va_list @var{ap})
4 @deftypefnx Supplemental int vfprintf (FILE *@var{stream}, const char *@var{format}, va_list @var{ap})
5 @deftypefnx Supplemental int vsprintf (char *@var{str}, const char *@var{format}, va_list @var{ap})
23 vprintf (const char *format, va_list ap) argument
25 return vfprintf (stdout, format, ap);
H A Dsnprintf.c28 @deftypefn Supplemental int snprintf (char *@var{buf}, size_t @var{n}, const char *@var{format}, ...)
50 snprintf (char *s, size_t n, const char *format, ...) argument
53 VA_OPEN (ap, format);
56 VA_FIXEDARG (ap, const char *, format);
57 result = vsnprintf (s, n, format, ap);
/freebsd-10-stable/crypto/heimdal/lib/asn1/
H A Dlex.h39 __attribute__ ((format (printf, 1, 2)));
/freebsd-10-stable/contrib/ntp/libparse/
H A Dclk_computime.c61 * The Computime receiver sends a datagram in the following format every minute
80 static struct format computime_fmt =
108 * convert simple type format
114 struct format *format,
120 if (!Strok(buffer, format->fixed_string)) {
123 if (Stoi(&buffer[format->field_offsets[O_DAY].offset], &clock_time->day,
124 format->field_offsets[O_DAY].length) ||
125 Stoi(&buffer[format->field_offsets[O_MONTH].offset], &clock_time->month,
126 format
111 cvt_computime( unsigned char *buffer, int size, struct format *format, clocktime_t *clock_time, void *local ) argument
[all...]
/freebsd-10-stable/contrib/gcc/
H A Derrors.c45 warning (int opt ATTRIBUTE_UNUSED, const char *format, ...) argument
49 va_start (ap, format);
51 vfprintf (stderr, format, ap);
60 error (const char *format, ...) argument
64 va_start (ap, format);
66 vfprintf (stderr, format, ap);
77 fatal (const char *format, ...) argument
81 va_start (ap, format);
83 vfprintf (stderr, format, ap);
92 internal_error (const char *format, argument
[all...]
/freebsd-10-stable/cddl/contrib/opensolaris/lib/libuutil/common/
H A Duu_pname.c47 uu_die_internal(int status, const char *format, va_list alist) __NORETURN;
89 uu_warn_internal(int err, const char *format, va_list alist) argument
94 (void) vfprintf(stderr, format, alist);
96 if (strrchr(format, '\n') == NULL)
101 uu_vwarn(const char *format, va_list alist) argument
103 uu_warn_internal(errno, format, alist);
108 uu_warn(const char *format, ...) argument
111 va_start(alist, format);
112 uu_warn_internal(errno, format, alist);
117 uu_die_internal(int status, const char *format, va_lis argument
135 uu_vdie(const char *format, va_list alist) argument
142 uu_die(const char *format, ...) argument
151 uu_vxdie(int status, const char *format, va_list alist) argument
158 uu_xdie(int status, const char *format, ...) argument
[all...]

Completed in 284 milliseconds

1234567891011>>