Home | History | Annotate | Download | only in python2.7

Lines Matching defs:time_low

71         bytes_le    the UUID as a 16-byte string (with time_low, time_mid,
78 time_low the first 32 bits of the UUID
106 integers (32-bit time_low, 16-bit time_mid, 16-bit time_hi_version,
149 (time_low, time_mid, time_hi_version,
151 if not 0 <= time_low < 1<<32L:
164 int = ((time_low << 96L) | (time_mid << 80L) |
218 return (self.time_low, self.time_mid, self.time_hi_version,
226 time_low = property(get_time_low)
250 (self.time_mid << 32L) | self.time_low)
515 time_low = timestamp & 0xffffffffL
522 return UUID(fields=(time_low, time_mid, time_hi_version,