HomeSort by: relevance | last modified time | path
    Searched defs:PRINTF (Results 1 - 14 of 14) sorted by relevancy

  /src/sys/arch/hpc/include/
debug.h 42 * printf control
68 * printf with function name prepended
71 #define PRINTF(fmt, args...) do { \
72 printf("%s: " fmt, __func__ , ##args); \
79 PRINTF(fmt, ##args); \
84 printf(fmt, ##args); \
89 PRINTF(fmt, ##args); \
94 printf(fmt, ##args); \
106 * normal debug printf
113 printf arg;
    [all...]
  /src/sys/arch/next68k/stand/boot/
scsi.c 57 #define PRINTF(x)
58 /* printf x; */
60 #define DPRINTF(x) printf x;
118 printf("scsierror: %s.\n", error);
126 printf("getbyte: no data!\n");
149 printf("scsiicmd: timed out.\n");
315 printf("unexpected msg: 0x%x.\n",msg);
320 printf("not function complete.\n");
358 PRINTF(("DMA start: %lx, %d byte.\n", (long)addr, len));
436 printf("WARNING: unexpected %d characters remain in DMA\n",resid)
    [all...]
en.c 51 #define PRINTF(x) printf x;
53 #define DPRINTF(x) printf x;
177 printf("0000: ");
179 printf("%c%c ", XCHR(pkt[i]>>4), XCHR(pkt[i]));
181 printf(" %c", '"');
183 printf("%c", pkt[i-15+j]>=32 && pkt[i-15+j]<127?pkt[i-15+j]:'.');
184 printf("%c\n%c%c%c%c: ", '"', XCHR((i+1)>>12),
188 printf("\n");
217 printf("en: tx not ready\n")
    [all...]
  /src/sys/arch/next68k/dev/
mb8795.c 73 #define PRINTF(x) printf x;
76 #define DPRINTF(x) if (mb8795_debug) printf x;
216 printf("00000000 ");
218 printf("%c%c ", XCHR(pkt[i]>>4), XCHR(pkt[i]));
220 printf(" ");
223 printf(" %c", '|');
225 printf("%c",
229 printf("%c\n%c%c%c%c%c%c%c%c ", '|',
235 printf("\n")
    [all...]
if_xe.c 73 #define DPRINTF(x) if (xe_debug) printf x;
77 #define PRINTF(x) printf x;
241 printf("\n%s: MAC address %02x:%02x:%02x:%02x:%02x:%02x\n",
esp.c 120 #define DPRINTF(x) if (esp_debug) printf x;
126 #define PRINTF(x) printf x;
196 printf("00000000 ");
198 printf("%c%c ", XCHR(pkt[i] >> 4), XCHR(pkt[i]));
200 printf(" ");
203 printf(" %c", '|');
205 printf("%c", pkt[i - 15 + j] >= 32 &&
209 printf("%c\n%c%c%c%c%c%c%c%c ", '|',
216 printf("\n")
    [all...]
nextdma.c 63 #define panic __asm volatile("trap #15"); printf
69 #define DPRINTF(x) if (NEXTDMA_DEBUG) printf x;
78 #define PRINTF(x) printf x
260 printf(": channel %d (%s)\n", attached,
274 printf("DMA init ipl (%ld) intr(%s)\n",
572 printf("DMA interrupt ipl (%ld) intr(%s)\n",
595 printf("DMA: state %s\n",sbuf);
656 printf("DMA: please send this output to"
659 printf("DMA: state %s\n",sbuf)
    [all...]
  /src/sys/dev/
kloader.c 49 #define PRINTF(fmt, args...) printf("kloader: " fmt, ##args)
55 printf("%s: " fmt, __func__ , ##args)
58 printf(fmt, ##args)
61 printf("%s: " fmt, __func__ , ##args)
64 printf(fmt, ##args)
118 PRINTF("No bootinfo.\n");
123 PRINTF("No boot operations.\n");
129 PRINTF("kernel file name: %s\n", filename);
153 PRINTF("Rebooting...\n")
    [all...]
  /src/sys/arch/riscv/include/
asm.h 103 * Macros to panic and printf from assembly language.
110 #define PRINTF(msg) \
112 call _C_LABEL(printf); \
  /src/sys/arch/mips/include/
asm.h 326 * Macros to panic and printf from assembly language.
334 #define PRINTF(msg) \
336 jal _C_LABEL(printf); \
  /src/sys/dev/scsipi/
ses.c 121 #define PRINTF printf
541 printf("%s: ", device_xname(ssc->sc_dev));
1324 PRINTF("Get Elt 0x%x Elm 0x%x (idx %d)\n", elt, elm, idx-4);
1352 PRINTF("set EncStat %x\n", sp->comstatus);
1398 PRINTF("Set Elt 0x%x Elm 0x%x (idx %d) with %x %x %x %x\n",
  /src/sys/arch/aarch64/aarch64/
disasm.c 43 #define PRINTF di->di_printf
790 PRINTF(".insn\t0x%08x\t# %s\n", insn, comment);
793 PRINTF(".insn\t0x%08x\n", insn);
805 PRINTF("%s\t", z_op);
807 PRINTF("%s\t%s, ", op, SREGNAME(sf, Rd));
810 PRINTF("%s, %s", SREGNAME(sf, Rn), ZREGNAME(r, Rm));
816 PRINTF(", %s",
822 PRINTF(", %s #%u",
829 PRINTF(", %s",
834 PRINTF(" #%u", (u_int)imm3)
    [all...]
  /src/sys/arch/alpha/include/
asm.h 494 * PRINTF
497 #define PRINTF(msg,label) \
499 CALL(printf)
  /src/sys/dev/audio/
audio.c 289 printf("%s: softint_establish failed\n", __func__);
329 printf("%s", mlog_buf[rpage]);
331 printf("mlog_drop %d\n", mlog_drop);
333 printf("mlog_full %d\n", mlog_full);
394 printf("%s\n", buf);
443 printf(fmt); \
1569 printf("%s(%s): ", device_xname(sc->sc_dev), device_xname(sc->hw_dev));
4037 #define PRINTF(fmt...) printf(fmt)
4039 #define PRINTF(fmt...) do { } while (0
    [all...]

Completed in 26 milliseconds