HomeSort by relevance Sort by last modified time
    Searched refs:clock_seq (Results 1 - 16 of 16) sorted by null

  /external/e2fsprogs/lib/uuid/
compare.c 53 UUCMP(uuid1.clock_seq, uuid2.clock_seq);
unparse.c 59 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
pack.c 63 tmp = uu->clock_seq;
unpack.c 60 uu->clock_seq = tmp;
uuidP.h 54 uint16_t clock_seq; member in struct:uuid
parse.c 69 uuid.clock_seq = strtoul(in+19, NULL, 16);
gen_uuid.c 317 THREAD_LOCAL uint16_t clock_seq; local
363 clock_seq = cl & 0x3FFF;
371 get_random_bytes(&clock_seq, sizeof(clock_seq));
372 clock_seq &= 0x3FFF;
382 clock_seq = (clock_seq+1) & 0x3FFF;
411 clock_seq, last.tv_sec, (long)last.tv_usec,
430 *ret_clock_seq = clock_seq;
598 get_clock(&clock_mid, &uu.time_low, &uu.clock_seq, num)
    [all...]
uuid_time.c 94 var = uuid.clock_seq;
  /external/e2fsprogs/lib/e2p/
uuid.c 21 __u16 clock_seq; member in struct:uuid
58 uu->clock_seq = tmp;
71 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
uuid.py 86 clock_seq the 14-bit sequence number
163 clock_seq = (clock_seq_hi_variant << 8L) | clock_seq_low
165 (time_hi_version << 64L) | (clock_seq << 48L) | node)
258 clock_seq = property(get_clock_seq) variable in class:UUID
490 def uuid1(node=None, clock_seq=None):
493 address. If 'clock_seq' is given, it is used as the sequence number;
498 if _uuid_generate_time and node is clock_seq is None:
512 if clock_seq is None:
514 clock_seq = random.randrange(1<<14L) # instead of stable storage
518 clock_seq_low = clock_seq & 0xffL
    [all...]
  /external/python/cpython2/Lib/
uuid.py 88 clock_seq the 14-bit sequence number
165 clock_seq = (clock_seq_hi_variant << 8L) | clock_seq_low
167 (time_hi_version << 64L) | (clock_seq << 48L) | node)
260 clock_seq = property(get_clock_seq) variable in class:UUID
561 def uuid1(node=None, clock_seq=None):
564 address. If 'clock_seq' is given, it is used as the sequence number;
569 if _uuid_generate_time and node is clock_seq is None:
583 if clock_seq is None:
585 clock_seq = random.randrange(1<<14L) # instead of stable storage
589 clock_seq_low = clock_seq & 0xff
    [all...]
  /external/python/cpython3/Lib/
uuid.py 102 clock_seq the 14-bit sequence number
189 clock_seq = (clock_seq_hi_variant << 8) | clock_seq_low
191 (time_hi_version << 64) | (clock_seq << 48) | node)
310 def clock_seq(self): member in class:UUID
712 def uuid1(node=None, clock_seq=None):
715 address. If 'clock_seq' is given, it is used as the sequence number;
721 if _generate_time_safe is not None and node is clock_seq is None:
738 if clock_seq is None:
740 clock_seq = random.getrandbits(14) # instead of stable storage
744 clock_seq_low = clock_seq & 0xf
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_uuid.py 20 time, clock_seq, variant, version) in [
170 equal(u.clock_seq, clock_seq)
  /external/python/cpython2/Lib/test/
test_uuid.py 19 time, clock_seq, variant, version) in [
169 equal(u.clock_seq, clock_seq)
  /external/e2fsprogs/lib/ext2fs/
icount.c 155 __u16 clock_seq; member in struct:uuid
180 uu->clock_seq = tmp;
193 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
  /external/python/cpython3/Lib/test/
test_uuid.py 32 time, clock_seq, variant, version) in [
182 equal(u.clock_seq, clock_seq)
    [all...]

Completed in 3673 milliseconds