Home
last modified time | relevance | path

Searched refs:tmpc (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/usr.sbin/mopd/common/
H A Ddl.c37 u_char tmpc, c, program[17], code, *ucp; in mopDumpDL() local
55 tmpc = mopGetChar(pkt, &idx); /* Load Number */ in mopDumpDL()
56 fprintf(fd, "Load Number : %02x\n", tmpc); in mopDumpDL()
91 tmpc = mopGetChar(pkt, &idx); /* Load Number */ in mopDumpDL()
92 fprintf(fd, "Load Number : %02x\n", tmpc); in mopDumpDL()
128 tmpc = mopGetChar(pkt, &idx); /* Device Type */ in mopDumpDL()
129 fprintf(fd, "Device Type : %02x ", tmpc); in mopDumpDL()
130 mopPrintDevice(fd, tmpc); in mopDumpDL()
133 tmpc = mopGetChar(pkt, &idx); /* Format Version */ in mopDumpDL()
134 fprintf(fd, "Format : %02x\n", tmpc); in mopDumpDL()
[all …]
H A Drc.c37 u_char tmpc, code, control; in mopDumpRC() local
56 tmpc = mopGetChar(pkt, &idx); in mopDumpRC()
57 fprintf(fd, "Reserved : %02x\n", tmpc); in mopDumpRC()
73 tmpc = mopGetChar(pkt, &idx); /* Processor */ in mopDumpRC()
74 fprintf(fd, "Processor : %02x ", tmpc); in mopDumpRC()
75 mopPrintBPTY(fd, tmpc); fprintf(fd, "\n"); in mopDumpRC()
90 tmpc = mopGetChar(pkt, &idx);/* Device ID */ in mopDumpRC()
91 fprintf(fd, "Device ID : %02x '", tmpc); in mopDumpRC()
92 for (i = 0; i < ((int) tmpc); i++) in mopDumpRC()
98 tmpc = mopGetChar(pkt, &idx); /* Software ID */ in mopDumpRC()
[all …]
H A Dprint.c424 u_char ilen, tmpc, device; in mopPrintInfo() local
445 tmpc = mopGetChar(pkt, idx); in mopPrintInfo()
446 *idx = *idx + tmpc; in mopPrintInfo()
507 tmpc = mopGetChar(pkt, idx); in mopPrintInfo()
508 fprintf(fd, "Software ID : %02x ", tmpc); in mopPrintInfo()
509 if (tmpc == 0) in mopPrintInfo()
511 if (tmpc == 254) { in mopPrintInfo()
513 tmpc = 0; in mopPrintInfo()
515 if (tmpc == 255) { in mopPrintInfo()
517 tmpc in mopPrintInfo()
[all...]
/openbsd-src/usr.sbin/mopd/mopd/
H A Dprocess.c49 u_char ilen, tmpc, device; in mopProcessInfo() local
68 tmpc = mopGetChar(pkt, idx); in mopProcessInfo()
69 *idx = *idx + tmpc; in mopProcessInfo()
91 tmpc = mopGetChar(pkt, idx); in mopProcessInfo()
92 *idx = *idx + tmpc; in mopProcessInfo()
341 u_char tmpc; in mopProcessDL() local
377 tmpc = mopGetChar(pkt, idx); /* Format Version */ in mopProcessDL()
378 if ((tmpc != MOP_K_RPR_FORMAT) && in mopProcessDL()
379 (tmpc != MOP_K_RPR_FORMAT_V3)) { in mopProcessDL()
381 tmpc); in mopProcessDL()
[all …]
/openbsd-src/usr.sbin/mopd/mopprobe/
H A Dmopprobe.c126 u_char *dst, *src, mopcode, tmpc, device, ilen; in mopProcess() local
208 tmpc = mopGetChar(pkt,&idx); in mopProcess()
209 idx = idx + tmpc; in mopProcess()
246 tmpc = mopGetChar(pkt,&idx); in mopProcess()
247 if ((tmpc > 0) && (tmpc < 17)) in mopProcess()
248 idx = idx + tmpc; in mopProcess()
/openbsd-src/gnu/usr.bin/perl/t/porting/
H A Dextrefs.t64 if (open(my $tmpc, ">$tmp.c")) {
65 print $tmpc $c;
66 unless (close($tmpc)) {