Home
last modified time | relevance | path

Searched refs:fromhex (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/boot/libsa/
H A Duuid_from_string.c52 fromhex(const char *s, int len, int *ok) in fromhex() function
106 u->time_low = fromhex(s , 8, &ok); in uuid_from_string()
107 u->time_mid = fromhex(s + 9, 4, &ok); in uuid_from_string()
108 u->time_hi_and_version = fromhex(s + 14, 4, &ok); in uuid_from_string()
110 u->clock_seq_hi_and_reserved = fromhex(s + 19, 2, &ok); in uuid_from_string()
111 u->clock_seq_low = fromhex(s + 21, 2, &ok); in uuid_from_string()
112 u->node[0] = fromhex(s + 24, 2, &ok); in uuid_from_string()
113 u->node[1] = fromhex(s + 26, 2, &ok); in uuid_from_string()
114 u->node[2] = fromhex(s + 28, 2, &ok); in uuid_from_string()
115 u->node[3] = fromhex(s + 30, 2, &ok); in uuid_from_string()
[all …]
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dnfs_subr.c87 #define fromhex(c) ((c >= '0' && c <= '9') ? (c - '0') : \ macro
106 *q = fromhex(*p) * 16; in URLparse()
109 *q += fromhex(*p); in URLparse()
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs_server.c3091 #define fromhex(c) ((c >= '0' && c <= '9') ? (c - '0') : \ macro
3110 *q = fromhex(*p) * 16; in URLparse()
3113 *q += fromhex(*p); in URLparse()