HomeSort by: relevance | last modified time | path
    Searched refs:hexstr (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/arch/luna68k/stand/boot/
machdep.c 119 printf("pid = %d, pc = %s, ", u.u_procp->p_pid, hexstr(rp[PC], 8));
121 printf("pc = %s, ", hexstr(rp[PC], 8));
122 printf("ps = %s, ", hexstr(rp[PS], 4));
123 printf("sfc = %s, ", hexstr(getsfc(), 4));
124 printf("dfc = %s\n", hexstr(getdfc(), 4));
127 u.u_pcb.pcb_p0lr, hexstr((int)u.u_pcb.pcb_p0br, 8));
129 u.u_pcb.pcb_p1lr, hexstr((int)u.u_pcb.pcb_p1br, 8));
136 printf(" %s", hexstr(rp[i], 8));
139 printf(" %s", hexstr(rp[i+8], 8));
154 hexstr((int)(((int *)&rp) - 1), 8))
201 hexstr(int val, int len) function
    [all...]
samachdep.h 146 char *hexstr(int, int);
  /src/sys/arch/m68k/m68k/
regdump.c 57 static char *hexstr(int, int);
75 curlwp ? curlwp->l_lid : -1, hexstr(tf->tf_pc, 8));
76 printf("ps = %s, ", hexstr(tf->tf_sr, 4));
84 printf(" %s", hexstr(tf->tf_regs[i], 8));
87 printf(" %s", hexstr(tf->tf_regs[i+8], 8));
97 hexstr((int)(((int *)(void *)&tf)-1), 8));
101 hexstr(tf->tf_regs[SP], 8));
121 printf("\n%s: ", hexstr((int)ptr, 6));
132 printf("%s", hexstr(val, 8));
138 hexstr(int val, int len function
    [all...]
  /src/sys/arch/powerpc/tools/chrpicon/chrpicontoppm/
chrpicontoppm.c 168 char hexstr[3] = { 0, 0, 0 }; local
200 hexstr[0] = *p++;
201 hexstr[1] = *p++;
203 img->pixels[r][c] = (chrpi_pixel)(strtoul(hexstr, NULL, 16));
  /src/sys/arch/hppa/stand/xxboot/
main.c 42 static char *hexstr(char *, unsigned);
156 hexstr(char *buf, unsigned val) function
190 print(hexstr(buf, interactive));
192 print(hexstr(buf, sptop));
194 print(hexstr(buf, psw));
198 print(hexstr(buf, (psw & 0x08000000) ? (unsigned) 0x64 : 0x32));
322 print(hexstr(buf, loadadr));
  /src/sbin/ifconfig/
util.c 86 bool hexstr; local
91 hexstr = hexok && val[0] == '0' && tolower((u_char)val[1]) == 'x';
92 if (hexstr)
101 if (hexstr) {
109 if (hexstr)
115 if (hexstr) {
  /src/games/ching/printching/
printching.c 105 char hexstr[6+1]; /* buffer for reading lines in */ local
109 hexptr = fgets(hexstr, 6+1, stdin);
  /src/sys/arch/cesfic/cesfic/
machdep.c 115 char *hexstr(int, int);
  /src/external/bsd/ntp/dist/util/
ntp-keygen.c 873 u_char hexstr[2 * MD5SIZE + 1]; local
907 hexstr[2 * j] = hex[keystr[j] >> 4];
908 hexstr[2 * j + 1] = hex[keystr[j] & 0xf];
910 hexstr[2 * MD5SIZE] = '\0';
912 hexstr);
  /src/external/historical/nawk/dist/
b.c 342 static int hexstr(const uschar **pp, int max) /* find and eval hex string at pp, return new p */ function
398 c = hexstr(&p, 2); /* this adds a null if number is invalid */
401 c = hexstr(&p, 8);
  /src/external/bsd/unbound/dist/testcode/
testpkts.c 311 * @param hexstr: string of hex.
319 hexstr2bin(char *hexstr, int len, uint8_t *buf, size_t offset, size_t buf_len)
332 c = hexstr[i];
  /src/external/gpl3/gdb/dist/gdbserver/
tracepoint.cc 6960 /* Return an hexstr version of the STR C string, fit for sending to
6967 char *hexstr = xmalloc (len * 2 + 1); local
6968 bin2hex ((gdb_byte *) str, hexstr, len);
6969 return hexstr;
  /src/external/gpl3/gdb.old/dist/gdbserver/
tracepoint.cc 6960 /* Return an hexstr version of the STR C string, fit for sending to
6967 char *hexstr = xmalloc (len * 2 + 1); local
6968 bin2hex ((gdb_byte *) str, hexstr, len);
6969 return hexstr;

Completed in 59 milliseconds