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

Lines Matching defs:time_mid

71         bytes_le    the UUID as a 16-byte string (with time_low, time_mid,
79 time_mid the next 16 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,
153 if not 0 <= time_mid < 1<<16L:
164 int = ((time_low << 96L) | (time_mid << 80L) |
218 return (self.time_low, self.time_mid, self.time_hi_version,
231 time_mid = property(get_time_mid)
250 (self.time_mid << 32L) | self.time_low)
516 time_mid = (timestamp >> 32L) & 0xffffL
522 return UUID(fields=(time_low, time_mid, time_hi_version,