Home | History | Annotate | Download | only in src

Lines Matching full:timestamp

238 static void get_current_time(uuid_time_t *timestamp)
268 *timestamp = time_now + uuids_this_tick;
292 /* format_uuid_v1 -- make a UUID from the timestamp, clockseq,
295 uuid_time_t timestamp, uuid_node_t node)
299 uuid->time_low = (unsigned long)(timestamp & 0xFFFFFFFF);
300 uuid->time_mid = (unsigned short)((timestamp >> 32) & 0xFFFF);
302 (unsigned short)((timestamp >> 48) & 0x0FFF);
313 uuid_time_t timestamp;
318 get_current_time(&timestamp);
325 format_uuid_v1(uuid, clockseq, timestamp, node);