Searched refs:fmt (Results 226 - 250 of 1141) sorted by relevance

1234567891011>>

/freebsd-9.3-release/tools/regression/posixshm/
H A Dtest.h51 void fail_err(const char *fmt, ...);
/freebsd-9.3-release/usr.bin/w/
H A DMakefile5 SRCS= fmt.c pr_time.c proc_compare.c w.c
/freebsd-9.3-release/contrib/ntp/sntp/libopts/
H A Dtime.c92 static char const fmt[] = "DATEMSK=%s/datemsk"; local
93 envptr = AGALOC(sizeof(fmt) + strlen(opts->pzPkgDataDir), fmt);
94 sprintf(envptr, fmt, opts->pzPkgDataDir);
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dtable.py65 fmt = "%*s "
67 fmt = "%-*s "
69 line += fmt % (mfl, va[i])
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DFormat.h50 format_object_base(const char *fmt) : Fmt(fmt) {} argument
83 format_object1(const char *fmt, const T &val) argument
84 : format_object_base(fmt), Val(val) {
101 format_object2(const char *fmt, const T1 &val1, const T2 &val2) argument
102 : format_object_base(fmt), Val1(val1), Val2(val2) {
120 format_object3(const char *fmt, const T1 &val1, const T2 &val2,const T3 &val3) argument
121 : format_object_base(fmt), Val1(val1), Val2(val2), Val3(val3) {
140 format_object4(const char *fmt, const T1 &val1, const T2 &val2, argument
142 : format_object_base(fmt), Val
162 format_object5(const char *fmt, const T1 &val1, const T2 &val2, const T3 &val3, const T4 &val4, const T5 &val5) argument
[all...]
/freebsd-9.3-release/contrib/openbsm/bin/auditd/
H A Dauditd_darwin.c136 auditd_log_err(const char *fmt, ...) argument
140 va_start(ap, fmt);
141 asl_vlog(au_aslclient, au_aslmsg, ASL_LEVEL_ERR, fmt, ap);
146 auditd_log_notice(const char *fmt, ...) argument
150 va_start(ap, fmt);
151 asl_vlog(au_aslclient, au_aslmsg, ASL_LEVEL_NOTICE, fmt, ap);
156 auditd_log_info(const char *fmt, ...) argument
160 va_start(ap, fmt);
161 asl_vlog(au_aslclient, au_aslmsg, ASL_LEVEL_INFO, fmt, ap);
166 auditd_log_debug(const char *fmt, argument
[all...]
/freebsd-9.3-release/contrib/openpam/t/
H A Dt_main.c51 t_verbose(const char *fmt, ...) argument
56 va_start(ap, fmt);
57 vfprintf(stderr, fmt, ap);
/freebsd-9.3-release/contrib/sendmail/libsm/
H A Dvasprintf.c42 ** fmt -- format directives for printing
56 sm_vasprintf(str, fmt, ap)
58 const char *fmt;
82 ret = sm_io_vfprintf(&fake, SM_TIME_FOREVER, fmt, ap);
H A Dvsnprintf.c30 ** fmt -- format directives
31 ** ap -- data unit vectors for use by 'fmt'
41 sm_vsnprintf(str, n, fmt, ap)
44 const char *fmt;
75 ret = sm_io_vfprintf(&fake, SM_TIME_FOREVER, fmt, ap);
H A Dvfscanf.c115 register unsigned char *SM_NONVOLATILE fmt = (unsigned char *) fmt0; local
166 c = *fmt++;
191 again: c = *fmt++;
211 if (*fmt == 'l')
213 fmt++;
289 fmt = sm_sccl(ccltab, fmt);
770 ** fmt -- character list (within "[]")
776 sm_sccl(tab, fmt)
778 register unsigned char *fmt;
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dstrpool.c67 rk_strpoolprintf(struct rk_strpool *p, const char *fmt, ...) argument
80 va_start(ap, fmt);
81 len = vasprintf(&str, fmt, ap);
/freebsd-9.3-release/crypto/openssh/
H A Dxmalloc.c89 xasprintf(char **ret, const char *fmt, ...) argument
94 va_start(ap, fmt);
95 i = vasprintf(ret, fmt, ap);
/freebsd-9.3-release/lib/libc/stdio/
H A Dprintf-pos.c246 char *fmt; /* format string */ local
247 int ch; /* character from fmt */
253 fmt = (char *)fmt0;
261 while ((ch = *fmt) != '\0' && ch != '%')
262 fmt++;
265 fmt++; /* skip over '%' */
269 rflag: ch = *fmt++;
275 if ((error = addaster(&types, &fmt)))
283 if ((ch = *fmt++) == '*') {
284 if ((error = addaster(&types, &fmt)))
434 wchar_t *fmt; /* format string */ local
[all...]
/freebsd-9.3-release/sbin/fsck_msdosfs/
H A Dmain.c124 ask(int def, const char *fmt, ...) argument
139 va_start(ap, fmt);
140 vsnprintf(prompt, sizeof(prompt), fmt, ap);
/freebsd-9.3-release/sys/dev/agp/
H A Dagppriv.h40 #define AGP_DPF(fmt, ...) do { \
41 printf("agp: " fmt, ##__VA_ARGS__); \
44 #define AGP_DPF(fmt, ...) do {} while (0)
/freebsd-9.3-release/usr.bin/m4/
H A Dmisc.c266 m4errx(int evaluation, const char *fmt, ...) argument
270 if (fmt != NULL) {
273 va_start(ap, fmt);
274 vfprintf(stderr, fmt, ap);
296 xalloc(size_t n, const char *fmt, ...) argument
301 if (fmt == NULL)
306 va_start(va, fmt);
307 verr(1, fmt, va);
315 xrealloc(void *old, size_t n, const char *fmt, ...) argument
321 if (fmt
[all...]
/freebsd-9.3-release/lib/libstand/
H A Dprintf.c60 static int kvprintf(char const *fmt, void (*func)(int), void *arg, int radix, va_list ap);
63 printf(const char *fmt, ...) argument
68 va_start(ap, fmt);
69 retval = kvprintf(fmt, putchar, NULL, 10, ap);
75 vprintf(const char *fmt, va_list ap) argument
78 kvprintf(fmt, putchar, NULL, 10, ap);
152 kvprintf(char const *fmt, void (*func)(int), void *arg, int radix, va_list ap) argument
173 if (fmt == NULL)
174 fmt = "(fmt nul
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/baddof/
H A Dbaddof.c37 fatal(char *fmt, ...) argument
41 va_start(ap, fmt);
44 vfprintf(stderr, fmt, ap);
46 if (fmt[strlen(fmt) - 1] != '\n')
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_util.c248 zfs_error_aux(libzfs_handle_t *hdl, const char *fmt, ...) argument
252 va_start(ap, fmt);
255 fmt, ap);
262 zfs_verror(libzfs_handle_t *hdl, int error, const char *fmt, va_list ap) argument
265 fmt, ap);
295 zfs_error_fmt(libzfs_handle_t *hdl, int error, const char *fmt, ...) argument
299 va_start(ap, fmt);
301 zfs_verror(hdl, error, fmt, ap);
309 zfs_common_error(libzfs_handle_t *hdl, int error, const char *fmt, argument
315 zfs_verror(hdl, EZFS_PERM, fmt, a
346 zfs_standard_error_fmt(libzfs_handle_t *hdl, int error, const char *fmt, ...) argument
418 zpool_standard_error_fmt(libzfs_handle_t *hdl, int error, const char *fmt, ...) argument
521 zfs_asprintf(libzfs_handle_t *hdl, const char *fmt, ...) argument
[all...]
/freebsd-9.3-release/contrib/nvi/ip_cl/
H A Dip_cl.c248 char *fmt, *p; local
253 fmt = "s";
256 fmt = "s1";
260 fmt = "12";
263 fmt = "1";
266 fmt = "";
271 for (; *fmt != '\0'; ++fmt)
272 switch (*fmt) {
548 ip_send(fmt, ipb
712 trace(const char *fmt, ...) argument
[all...]
/freebsd-9.3-release/crypto/heimdal/appl/test/
H A Dgss_common.c103 gss_verr(int exitval, int status, const char *fmt, va_list ap) argument
105 vwarnx (fmt, ap);
111 gss_err(int exitval, int status, const char *fmt, ...) argument
115 va_start(args, fmt);
116 gss_verr (exitval, status, fmt, args);
/freebsd-9.3-release/sys/boot/powerpc/ps3/
H A Dps3cdrom.c38 #define dev_printf(dev, fmt, args...) \
39 printf("%s%d: " fmt "\n", dev->d_dev->dv_name, dev->d_unit, ##args)
42 #define DEBUG(fmt, args...) printf("%s:%d: " fmt "\n", __func__, __LINE__, ##args)
44 #define DEBUG(fmt, args...)
/freebsd-9.3-release/contrib/ncurses/ncurses/trace/
H A Dlib_trace.c144 _nc_va_tracef(const char *fmt, va_list ap) argument
154 if (strlen(fmt) >= sizeof(Called) - 1) {
155 if (!strncmp(fmt, Called, sizeof(Called) - 1)) {
158 } else if (!strncmp(fmt, Return, sizeof(Return) - 1)) {
193 vfprintf(TraceFP, fmt, ap);
205 _tracef(const char *fmt,...) argument
209 va_start(ap, fmt);
210 _nc_va_tracef(fmt, ap);
321 _nc_locked_tracef(const char *fmt,...) argument
325 va_start(ap, fmt);
[all...]
/freebsd-9.3-release/contrib/libpcap/tests/
H A Dfiltertest.c108 error(const char *fmt, ...) argument
113 va_start(ap, fmt);
114 (void)vfprintf(stderr, fmt, ap);
116 if (*fmt) {
117 fmt += strlen(fmt);
118 if (fmt[-1] != '\n')
/freebsd-9.3-release/contrib/gcc/
H A Dreal.c2180 const struct real_format *fmt;
2182 fmt = REAL_MODE_FORMAT (mode);
2183 gcc_assert (fmt);
2253 lshift_significand (r, r, SIGNIFICAND_BITS - fmt->pnan);
2271 const struct real_format *fmt;
2274 fmt = REAL_MODE_FORMAT (mode);
2275 gcc_assert (fmt);
2278 if (fmt->b == 10)
2284 SET_REAL_EXP (r, fmt->emax * fmt
2176 const struct real_format *fmt; local
2267 const struct real_format *fmt; local
2319 round_for_format(const struct real_format *fmt, REAL_VALUE_TYPE *r) argument
2471 const struct real_format *fmt; local
2503 const struct real_format *fmt; local
2527 real_to_target_fmt(long *buf, const REAL_VALUE_TYPE *r_orig, const struct real_format *fmt) argument
2548 const struct real_format *fmt; local
2561 real_from_target_fmt(REAL_VALUE_TYPE *r, const long *buf, const struct real_format *fmt) argument
2572 const struct real_format *fmt; local
2587 const struct real_format *fmt; local
2658 encode_ieee_single(const struct real_format *fmt, long *buf, const REAL_VALUE_TYPE *r) argument
2725 decode_ieee_single(const struct real_format *fmt, REAL_VALUE_TYPE *r, const long *buf) argument
2821 encode_ieee_double(const struct real_format *fmt, long *buf, const REAL_VALUE_TYPE *r) argument
2915 decode_ieee_double(const struct real_format *fmt, REAL_VALUE_TYPE *r, const long *buf) argument
3047 encode_ieee_extended(const struct real_format *fmt, long *buf, const REAL_VALUE_TYPE *r) argument
3158 encode_ieee_extended_motorola(const struct real_format *fmt, long *buf, const REAL_VALUE_TYPE *r) argument
3178 encode_ieee_extended_intel_96(const struct real_format *fmt, long *buf, const REAL_VALUE_TYPE *r) argument
3200 encode_ieee_extended_intel_128(const struct real_format *fmt, long *buf, const REAL_VALUE_TYPE *r) argument
3212 decode_ieee_extended(const struct real_format *fmt, REAL_VALUE_TYPE *r, const long *buf) argument
3299 decode_ieee_extended_motorola(const struct real_format *fmt, REAL_VALUE_TYPE *r, const long *buf) argument
3317 decode_ieee_extended_intel_96(const struct real_format *fmt, REAL_VALUE_TYPE *r, const long *buf) argument
3341 decode_ieee_extended_intel_128(const struct real_format *fmt, REAL_VALUE_TYPE *r, const long *buf) argument
3440 encode_ibm_extended(const struct real_format *fmt, long *buf, const REAL_VALUE_TYPE *r) argument
3540 encode_ieee_quad(const struct real_format *fmt, long *buf, const REAL_VALUE_TYPE *r) argument
3671 decode_ieee_quad(const struct real_format *fmt, REAL_VALUE_TYPE *r, const long *buf) argument
[all...]

Completed in 245 milliseconds

1234567891011>>