Searched refs:hexval (Results 1 - 9 of 9) sorted by relevance

/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Dtst.condexpr.d47 hexval = (c >= '0' && c <= '9') ? c - '0':
52 /x == "zero" && hexval == 13/
58 /x != "zero" || hexval != 13/
/freebsd-9.3-release/lib/librpcsvc/
H A Dxcrypt.c48 static char hexval( char );
146 *binnum++ = 16 * hexval(hexnum[2*i]) + hexval(hexnum[2*i+1]);
168 hexval(char c) function
/freebsd-9.3-release/contrib/ntp/libparse/
H A Dclk_hopf6021.c119 static unsigned char hexval(unsigned char);
163 status = hexval(buffer[OFFS(O_FLAGS)]);
164 weekday = hexval(buffer[OFFS(O_WDAY)]);
245 hexval( function
H A Dclk_trimtaip.c64 #define hexval(x) (('0' <= (x) && (x) <= '9') ? (x) - '0' : \ macro
128 recv_csum = (hexval(buffer[OFFS(O_CHKSUM)]) << 4) |
129 hexval(buffer[OFFS(O_CHKSUM)+1]);
/freebsd-9.3-release/contrib/smbfs/lib/smb/
H A Dsubr.c245 char *ep, hexval[3]; local
255 hexval[2] = 0;
258 hexval[0] = *src++;
259 hexval[1] = *src++;
260 ch = strtoul(hexval, &ep, 16);
/freebsd-9.3-release/sys/mips/cavium/
H A Docteon_machdep.c174 octeon_led_write_hexchar(int char_position, char hexval) argument
182 char1 = (hexval >> 4) & 0x0f; char1 = (char1 < 10)?char1+'0':char1+'7';
183 char2 = (hexval & 0x0f); char2 = (char2 < 10)?char2+'0':char2+'7';
H A Docteon_pcmap_regs.h284 extern void octeon_led_write_hexchar(int char_position, char hexval);
/freebsd-9.3-release/usr.sbin/keyserv/
H A Dsetkey.c461 hexval(dig) function
484 *bin = hexval(*hex++) << 4;
485 *bin++ |= hexval(*hex++);
/freebsd-9.3-release/usr.bin/yacc/
H A Dreader.c102 static int hexval(int);
661 hexval(int c) function
724 n = hexval(c);
730 i = hexval(c);

Completed in 58 milliseconds