Searched refs:hexval (Results 1 – 12 of 12) sorted by relevance
47 hexval = (c >= '0' && c <= '9') ? c - '0':52 /x == "zero" && hexval == 13/58 /x != "zero" || hexval != 13/
56 static svn_boolean_t hex_decode(unsigned char *hashval, const char *hexval) in hex_decode() argument62 h1 = hex_to_int(hexval[2 * i]); in hex_decode()63 h2 = hex_to_int(hexval[2 * i + 1]); in hex_decode()71 static void hex_encode(char *hexval, const unsigned char *hashval) in hex_encode() argument77 hexval[2 * i] = int_to_hex((hashval[i] >> 4) & 0xf); in hex_encode()78 hexval[2 * i + 1] = int_to_hex(hashval[i] & 0xf); in hex_encode()
48 static char hexval( char );146 *binnum++ = 16 * hexval(hexnum[2*i]) + hexval(hexnum[2*i+1]); in hex2bin()168 hexval(char c) in hexval() function
245 char *ep, hexval[3]; in smb_simpledecrypt() local255 hexval[2] = 0; in smb_simpledecrypt()258 hexval[0] = *src++; in smb_simpledecrypt()259 hexval[1] = *src++; in smb_simpledecrypt()260 ch = strtoul(hexval, &ep, 16); in smb_simpledecrypt()
64 #define hexval(x) (('0' <= (x) && (x) <= '9') ? (x) - '0' : \ macro127 recv_csum = (hexval(buffer[OFFS(O_CHKSUM)]) << 4) | in cvt_trimtaip()128 hexval(buffer[OFFS(O_CHKSUM)+1]); in cvt_trimtaip()
116 #define hexval(x) (('0' <= (x) && (x) <= '9') ? (x) - '0' : \ macro165 status = hexval(buffer[OFFS(O_FLAGS)]); in cvt_hopf6021()166 weekday= hexval(buffer[OFFS(O_WDAY)]); in cvt_hopf6021()
72 char *hexval = apr_palloc(pool, (APR_MD5_DIGESTSIZE * 2) + 1); in hex_encode() local74 hexval[2 * i] = int_to_hex((hashval[i] >> 4) & 0xf); in hex_encode()75 hexval[2 * i + 1] = int_to_hex(hashval[i] & 0xf); in hex_encode()77 hexval[APR_MD5_DIGESTSIZE * 2] = '\0'; in hex_encode()78 return hexval; in hex_encode()
461 hexval(dig) in hexval() function484 *bin = hexval(*hex++) << 4;485 *bin++ |= hexval(*hex++);
196 const static uint8_t hexval[128] = { variable931 nibble = hexval[(uint32_t)name[i]]; in _mdns_ipv6_extract_scope_id()935 nibble = hexval[(uint32_t)name[i]]; in _mdns_ipv6_extract_scope_id()939 nibble = hexval[(uint32_t)name[i]]; in _mdns_ipv6_extract_scope_id()943 nibble = hexval[(uint32_t)name[i]]; in _mdns_ipv6_extract_scope_id()
954 hexval(int c) in hexval() function1026 n = hexval(c); in get_literal()1032 i = hexval(c); in get_literal()
3285 (hexval): Add cast to fix signed/unsigned warning.
1108 (hexval): Use ISDIGIT/ISLOWER/ISUPPER instead of