Home | History | Annotate | Download | only in uuid

Lines Matching refs:in

7  * Redistribution and use in source and binary forms, with or without
11 * notice, and the entire permission notice in its entirety,
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
23 * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
42 int uuid_parse(const char *in, uuid_t uu)
49 if (strlen(in) != 36)
51 for (i=0, cp = in; i <= 36; i++,cp++) {
65 uuid.time_low = strtoul(in, NULL, 16);
66 uuid.time_mid = strtoul(in+9, NULL, 16);
67 uuid.time_hi_and_version = strtoul(in+14, NULL, 16);
68 uuid.clock_seq = strtoul(in+19, NULL, 16);
69 cp = in+24;