Lines Matching defs:clock_seq
205 * Formats a UUID, given the clock_seq timestamp, and node address.
209 format_uuid(struct uuid *uuid, uint16_t clock_seq,
228 uuid->clock_seq_low = clock_seq & 0xFF;
233 uuid->clock_seq_hi_and_reserved = (clock_seq & 0x3F00) >> 8;
547 uint16_t clock_seq;
563 clock_seq = uuid.clock_seq_hi_and_reserved;
564 clock_seq = (clock_seq << 8) | uuid.clock_seq_low;
572 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version, clock_seq);
611 uint16_t clock_seq;
634 clock_seq = strtoul(in+19, NULL, 16);
635 uuid.clock_seq_hi_and_reserved = (clock_seq & 0xFF00) >> 8;
636 uuid.clock_seq_low = (clock_seq & 0xFF);