Searched refs:fmt (Results 1 - 25 of 1138) sorted by path

1234567891011>>

/illumos-gate/usr/src/boot/lib/libstand/
H A Dbootp.c460 uint8_t fmt; member in struct:dhcp_opt
652 switch(op->fmt) {
685 case __8: /* op->fmt is also the length of each field */
686 for (; size > 0 && vp < endv; size -= op->fmt, cp += op->fmt) {
688 if (op->fmt == __32)
690 else if (op->fmt == __16)
715 if (op->fmt == __ILIST && (s = strchr(vp, ';')))
H A Dinet_ntoa.c51 static const char fmt[] = "%u.%u.%u.%u"; local
55 sprintf(ret, fmt, src[0], src[1], src[2], src[3]);
H A Dnandfs.c42 #define NANDFS_DEBUG(fmt, args...) do { \
43 printf("NANDFS_DEBUG:" fmt "\n", ##args); } while (0)
45 #define NANDFS_DEBUG(fmt, args...)
H A Dprintf.c62 static int kvprintf(char const *fmt, kvprintf_fn_t *func, void *arg, int radix, va_list ap);
72 printf(const char *fmt, ...) argument
77 va_start(ap, fmt);
78 retval = kvprintf(fmt, putchar_wrapper, NULL, 10, ap);
84 vprintf(const char *fmt, va_list ap) argument
87 kvprintf(fmt, putchar_wrapper, NULL, 10, ap);
214 kvprintf(char const *fmt, kvprintf_fn_t *func, void *arg, int radix, va_list ap) argument
235 if (fmt == NULL)
236 fmt = "(fmt nul
[all...]
H A Dstand.h72 #define CHK(fmt, args...) printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args)
73 #define PCHK(fmt, args...) {printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args); getchar();}
259 extern int printf(const char *fmt, ...) __printflike(1, 2);
260 extern void vprintf(const char *fmt, __va_list);
/illumos-gate/usr/src/boot/sys/boot/arm/at91/boot2/
H A Dboot2.c72 #define DPRINTF(fmt, ...) printf(fmt, __VA_ARGS__)
74 #define DPRINTF(fmt, ...)
/illumos-gate/usr/src/boot/sys/boot/arm/at91/libat91/
H A Dlib.h33 void printf(const char *fmt,...);
H A Dprintf.c24 printf(const char *fmt,...) argument
33 va_start(ap, fmt);
34 while ((c = *fmt++)) {
36 c = *fmt++;
/illumos-gate/usr/src/boot/sys/boot/arm/ixp425/boot2/
H A Dboot2.c72 #define DPRINTF(fmt, ...) printf(fmt, __VA_ARGS__)
74 #define DPRINTF(fmt, ...)
H A Dixp425_board.c67 #define DPRINTF(fmt, ...) printf(fmt, __VA_ARGS__)
69 #define DPRINTF(fmt, ...)
H A Dlib.h43 void printf(const char *fmt,...);
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dbcache.c47 # define DEBUG(fmt, args...) printf("%s: " fmt "\n" , __func__ , ## args)
49 # define DEBUG(fmt, args...)
H A Ddisk.c41 # define DEBUG(fmt, args...) printf("%s: " fmt "\n" , __func__ , ## args)
43 # define DEBUG(fmt, args...)
H A Dinterp_forth.c40 # define DEBUG(fmt, args...) printf("%s: " fmt "\n" , __func__ , ## args)
42 # define DEBUG(fmt, args...)
H A Dmisc.c179 #define emit(fmt, args...) {sprintf(lbuf, fmt , ## args); pager_output(lbuf);}
H A Dpanic.c45 panic(const char *fmt,...) argument
50 va_start(ap, fmt);
51 vprintf(fmt, ap);
H A Dpart.c45 #define DEBUG(fmt, args...) printf("%s: " fmt "\n" , __func__ , ## args)
47 #define DEBUG(fmt, args...)
H A Dutil.c118 printf(const char *fmt, ...) argument
126 va_start(ap, fmt);
127 while ((c = *fmt++) != '\0') {
134 c = *fmt++;
H A Dutil.h51 int printf(const char *fmt, ...);
/illumos-gate/usr/src/boot/sys/boot/efi/boot1/
H A Dboot1.c707 panic(const char *fmt, ...) argument
712 va_start(ap, fmt);
713 vprintf(fmt, ap);
H A Dboot_module.h39 #define DPRINTF(fmt, args...) printf(fmt, ##args)
42 #define DPRINTF(fmt, ...) {}
/illumos-gate/usr/src/boot/sys/boot/fdt/
H A Dfdt_loader_cmd.c44 #define debugf(fmt, args...) do { printf("%s(): ", __func__); \
45 printf(fmt,##args); } while (0)
47 #define debugf(fmt, args...)
/illumos-gate/usr/src/boot/sys/boot/i386/gptzfsboot/
H A Dzfsboot.c400 int fd, fmt, i, j; local
411 fmt = 0;
413 fmt = 1;
419 if (fmt == 0) {
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dbioscd.c62 # define DEBUG(fmt, args...) printf("%s: " fmt "\n" , __func__ , ## args)
64 # define DEBUG(fmt, args...)
H A Dbiosdisk.c65 # define DEBUG(fmt, args...) printf("%s: " fmt "\n" , __func__ , ## args)
67 # define DEBUG(fmt, args...)

Completed in 445 milliseconds

1234567891011>>