Home
last modified time | relevance | path

Searched refs:hexstr (Results 1 – 16 of 16) sorted by relevance

/netbsd-src/sys/arch/luna68k/stand/boot/
H A Dmachdep.c119 printf("pid = %d, pc = %s, ", u.u_procp->p_pid, hexstr(rp[PC], 8)); in regdump()
121 printf("pc = %s, ", hexstr(rp[PC], 8)); in regdump()
122 printf("ps = %s, ", hexstr(rp[PS], 4)); in regdump()
123 printf("sfc = %s, ", hexstr(getsfc(), 4)); in regdump()
124 printf("dfc = %s\n", hexstr(getdfc(), 4)); in regdump()
127 u.u_pcb.pcb_p0lr, hexstr((int)u.u_pcb.pcb_p0br, 8)); in regdump()
129 u.u_pcb.pcb_p1lr, hexstr((int)u.u_pcb.pcb_p1br, 8)); in regdump()
136 printf(" %s", hexstr(rp[i], 8)); in regdump()
139 printf(" %s", hexstr(rp[i+8], 8)); in regdump()
154 hexstr((in in regdump()
189 hexstr(int val, int len) hexstr() function
[all...]
H A Dsamachdep.h146 char *hexstr(int, int);
/netbsd-src/sys/arch/m68k/m68k/
H A Dregdump.c57 static char *hexstr(int, int);
75 curlwp ? curlwp->l_lid : -1, hexstr(tf->tf_pc, 8)); in regdump()
76 printf("ps = %s, ", hexstr(tf->tf_sr, 4)); in regdump()
84 printf(" %s", hexstr(tf->tf_regs[i], 8)); in regdump()
87 printf(" %s", hexstr(tf->tf_regs[i+8], 8)); in regdump()
97 hexstr((int)(((int *)(void *)&tf)-1), 8)); in regdump()
101 hexstr(tf->tf_regs[SP], 8)); in regdump()
121 printf("\n%s: ", hexstr((int)ptr, 6)); in dumpmem()
132 printf("%s", hexstr(val, 8)); in dumpmem()
138 hexstr(int val, int len) in hexstr() function
/netbsd-src/sys/arch/hppa/stand/xxboot/
H A Dmain.c42 static char *hexstr(char *, unsigned);
156 hexstr(char *buf, unsigned val) in hexstr() function
190 print(hexstr(buf, interactive)); in ipl_main()
192 print(hexstr(buf, sptop)); in ipl_main()
194 print(hexstr(buf, psw)); in ipl_main()
198 print(hexstr(buf, (psw & 0x08000000) ? (unsigned) 0x64 : 0x32)); in ipl_main()
322 print(hexstr(buf, loadadr)); in load_file_ino()
/netbsd-src/sbin/ifconfig/
H A Dutil.c86 bool hexstr; in get_string() local
91 hexstr = hexok && val[0] == '0' && tolower((u_char)val[1]) == 'x'; in get_string()
92 if (hexstr) in get_string()
101 if (hexstr) { in get_string()
109 if (hexstr) in get_string()
115 if (hexstr) { in get_string()
/netbsd-src/sys/arch/powerpc/tools/chrpicon/chrpicontoppm/
H A Dchrpicontoppm.c168 char hexstr[3] = { 0, 0, 0 }; in CHRPI_getbitmap() local
200 hexstr[0] = *p++; in CHRPI_getbitmap()
201 hexstr[1] = *p++; in CHRPI_getbitmap()
203 img->pixels[r][c] = (chrpi_pixel)(strtoul(hexstr, NULL, 16)); in CHRPI_getbitmap()
/netbsd-src/crypto/external/bsd/openssl/dist/apps/
H A Dfipsinstall.c120 char *hexstr = NULL; in print_mac() local
122 hexstr = OPENSSL_buf2hexstr(mac, (long)len); in print_mac()
123 if (hexstr == NULL) in print_mac()
125 ret = BIO_printf(bio, "%s = %s\n", label, hexstr); in print_mac()
126 OPENSSL_free(hexstr); in print_mac()
H A Dts.c926 unsigned char *hexstr = OPENSSL_hexstr2buf(digest, &imprint_len); in create_verify_ctx() local
928 if (TS_VERIFY_CTX_set_imprint(ctx, hexstr, imprint_len) == NULL) { in create_verify_ctx()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ts/
H A Dts_verify_ctx.c71 unsigned char *hexstr, long len) in TS_VERIFY_CTX_set_imprint() argument
74 ctx->imprint = hexstr; in TS_VERIFY_CTX_set_imprint()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ts/
H A Dts_verify_ctx.c71 unsigned char *hexstr, long len) in TS_VERIFY_CTX_set_imprint() argument
74 ctx->imprint = hexstr; in TS_VERIFY_CTX_set_imprint()
/netbsd-src/games/ching/printching/
H A Dprintching.c105 char hexstr[6+1]; /* buffer for reading lines in */ in main() local
109 hexptr = fgets(hexstr, 6+1, stdin); in main()
/netbsd-src/sys/arch/cesfic/cesfic/
H A Dmachdep.c121 char *hexstr(int, int);
/netbsd-src/crypto/external/bsd/openssl.old/dist/apps/
H A Dts.c892 unsigned char *hexstr = OPENSSL_hexstr2buf(digest, &imprint_len); in create_verify_ctx() local
894 if (TS_VERIFY_CTX_set_imprint(ctx, hexstr, imprint_len) == NULL) { in create_verify_ctx()
/netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/
H A Dts.h421 unsigned char *hexstr, long len);
/netbsd-src/crypto/external/bsd/openssl.old/dist/include/openssl/
H A Dts.h480 unsigned char *hexstr, long len);
/netbsd-src/external/bsd/unbound/dist/testcode/
H A Dtestpkts.c319 hexstr2bin(char *hexstr, int len, uint8_t *buf, size_t offset, size_t buf_len) in hexstr2bin() argument
332 c = hexstr[i]; in hexstr2bin()