Searched refs:hexchars (Results 1 - 16 of 16) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/sparc/kernel/
H A Dsparc-stub.c130 static const char hexchars[]="0123456789abcdef"; variable
297 putDebugChar(hexchars[checksum >> 4]);
298 putDebugChar(hexchars[checksum & 0xf]);
336 *buf++ = hexchars[ch >> 4];
337 *buf++ = hexchars[ch & 0xf];
515 *ptr++ = hexchars[sigval >> 4];
516 *ptr++ = hexchars[sigval & 0xf];
518 *ptr++ = hexchars[PC >> 4];
519 *ptr++ = hexchars[PC & 0xf];
524 *ptr++ = hexchars[F
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/ppc/kernel/
H A Dppc-stub.c62 static const char hexchars[]="0123456789abcdef"; variable
128 *buf++ = hexchars[(tmp_s >> 12) & 0xf];
129 *buf++ = hexchars[(tmp_s >> 8) & 0xf];
130 *buf++ = hexchars[(tmp_s >> 4) & 0xf];
131 *buf++ = hexchars[tmp_s & 0xf];
136 *buf++ = hexchars[(tmp_l >> 28) & 0xf];
137 *buf++ = hexchars[(tmp_l >> 24) & 0xf];
138 *buf++ = hexchars[(tmp_l >> 20) & 0xf];
139 *buf++ = hexchars[(tmp_l >> 16) & 0xf];
140 *buf++ = hexchars[(tmp_
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-sh/
H A Dkgdb.h90 static const char hexchars[] = "0123456789abcdef"; variable
95 return hexchars[(x >> 4) & 0xf];
101 return hexchars[x & 0xf];
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/mips/kernel/
H A Dgdb-stub.c194 static const char hexchars[]="0123456789abcdef"; variable
310 putDebugChar(hexchars[checksum >> 4]);
311 putDebugChar(hexchars[checksum & 0xf]);
332 *buf++ = hexchars[ch >> 4];
333 *buf++ = hexchars[ch & 0xf];
783 *ptr++ = hexchars[sigval >> 4];
784 *ptr++ = hexchars[sigval & 0xf];
789 *ptr++ = hexchars[REG_EPC >> 4];
790 *ptr++ = hexchars[REG_EPC & 0xf];
798 *ptr++ = hexchars[REG_F
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/frv/kernel/
H A Dgdb-stub.c185 static const char hexchars[] = "0123456789abcdef"; variable
386 gdbstub_tx_char(hexchars[checksum >> 4]);
387 gdbstub_tx_char(hexchars[checksum & 0xf]);
677 *buf++ = hexchars[ch[0] >> 4];
678 *buf++ = hexchars[ch[0] & 0xf];
686 *buf++ = hexchars[ch[0] >> 4];
687 *buf++ = hexchars[ch[0] & 0xf];
688 *buf++ = hexchars[ch[1] >> 4];
689 *buf++ = hexchars[ch[1] & 0xf];
697 *buf++ = hexchars[c
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp/pppd/plugins/pppoe/
H A Dutils.c83 static char hexchars[] = "0123456789abcdef"; local
177 OUTCHAR (hexchars[(c >> 4) & 0xf]);
178 OUTCHAR (hexchars[c & 0xf]);
240 OUTCHAR (hexchars[c >> 4]);
241 OUTCHAR (hexchars[c & 0xf]);
280 OUTCHAR (hexchars[(c >> 4) & 0xf]);
281 OUTCHAR (hexchars[c & 0xf]);
295 *--str = hexchars[val % base];
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp-2.4.4/pppd/plugins/
H A Dwinbind.c173 const char *hexchars = "0123456789ABCDEF"; local
177 if (strncmp(hexchars, "0x", 2) == 0) {
182 if (!(p1 = strchr(hexchars, toupper(strhex[i]))))
187 if (!(p2 = strchr(hexchars, toupper(strhex[i]))))
191 hinybble = (p1 - hexchars);
192 lonybble = (p2 - hexchars);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp/pppoecd/
H A Dutils.c157 static char hexchars[] = "0123456789abcdef"; local
260 OUTCHAR (hexchars[(c >> 4) & 0xf]);
261 OUTCHAR (hexchars[c & 0xf]);
314 OUTCHAR(hexchars[c >> 4]);
315 OUTCHAR(hexchars[c & 0xf]);
344 OUTCHAR(hexchars[(c >> 4) & 0xf]);
345 OUTCHAR(hexchars[c & 0xf]);
359 *--str = hexchars[val % base];
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp/pppd/
H A Dutils.c158 static char hexchars[] = "0123456789abcdef"; local
305 OUTCHAR(hexchars[c >> 4]);
306 OUTCHAR(hexchars[c & 0xf]);
335 OUTCHAR(hexchars[(c >> 4) & 0xf]);
336 OUTCHAR(hexchars[c & 0xf]);
350 *--str = hexchars[val % base];
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/cris/arch-v10/kernel/
H A Dkgdb.c330 static const char hexchars[] = "0123456789abcdef"; variable
471 for (s1 = (char*)s; (sd = gdb_cris_memchr(hexchars, *s1, base)) != NULL; ++s1)
472 x = x * base + (sd - hexchars);
647 return hexchars[(x >> 4) & 0xf];
655 return hexchars[x & 0xf];
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp-2.4.4/pppd/
H A Dutils.c169 static char hexchars[] = "0123456789abcdef"; local
340 OUTCHAR(hexchars[c >> 4]);
341 OUTCHAR(hexchars[c & 0xf]);
370 OUTCHAR(hexchars[(c >> 4) & 0xf]);
371 OUTCHAR(hexchars[c & 0xf]);
385 *--str = hexchars[val % base];
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/lib/
H A Dutil_str.c768 const char *hexchars = "0123456789ABCDEF"; local
772 if (strnequal(hexchars, "0x", 2)) {
777 if (!(p1 = strchr_m(hexchars, toupper(strhex[i]))))
782 if (!(p2 = strchr_m(hexchars, toupper(strhex[i]))))
786 hinybble = PTR_DIFF(p1, hexchars);
787 lonybble = PTR_DIFF(p2, hexchars);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/passdb/
H A Dpassdb.c562 const char *hexchars = "0123456789ABCDEF"; local
572 p1 = strchr(hexchars, hinybble);
573 p2 = strchr(hexchars, lonybble);
578 hinybble = PTR_DIFF(p1, hexchars);
579 lonybble = PTR_DIFF(p2, hexchars);
611 const char *hexchars = "0123456789ABCDEF"; local
622 p1 = strchr(hexchars, hinybble);
623 p2 = strchr(hexchars, lonybble);
629 hinybble = PTR_DIFF(p1, hexchars);
630 lonybble = PTR_DIFF(p2, hexchars);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/cris/arch-v32/kernel/
H A Dkgdb.c375 static const char hexchars[] = "0123456789abcdef"; variable
457 for (s1 = (char*)s; (sd = gdb_cris_memchr(hexchars, *s1, base)) != NULL; ++s1)
458 x = x * base + (sd - hexchars);
567 return hexchars[(x >> 4) & 0xf];
575 return hexchars[x & 0xf];
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/ppc/platforms/
H A Dapus_setup.c594 char hexchars[] = "0123456789ABCDEF"; local
597 __debug_ser_out(hexchars[(x >> 28) & 15]);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/sh/kernel/
H A Dkgdb_stub.c336 *pkt++ = hexchars[(byte >> 4) & 0xf];
337 *pkt++ = hexchars[(byte & 0xf)];

Completed in 406 milliseconds