Lines Matching +full:short +full:- +full:circuit
1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
35 * uuid_from_string() - convert a string representation of an UUID into
40 * NOTE: The sequence field is in big-endian, while the time fields are in
48 /* Short-circuit 2 special cases: NULL pointer and empty string. */ in uuid_from_string()
64 * 01234567-89ab-cdef-0123-456789abcdef in uuid_from_string()
68 if (s[8] != '-') in uuid_from_string()
72 "%8x-%4hx-%4hx-%2hhx%2hhx-%2hhx%2hhx%2hhx%2hhx%2hhx%2hhx", in uuid_from_string()
73 &u->time_low, &u->time_mid, &u->time_hi_and_version, in uuid_from_string()
74 &u->clock_seq_hi_and_reserved, &u->clock_seq_low, &u->node[0], in uuid_from_string()
75 &u->node[1], &u->node[2], &u->node[3], &u->node[4], &u->node[5]); in uuid_from_string()
82 n = u->clock_seq_hi_and_reserved; in uuid_from_string()