Home
last modified time | relevance | path

Searched refs:dce_time (Results 1 – 1 of 1) sorted by relevance

/openbsd/usr.sbin/ldapd/
H A Duuid.c150 uint64_t dce_time; in uuid_create() local
194 dce_time = tv.tv_usec * MULTIPLIER_100_NANO_SEC + counter; in uuid_create()
195 dce_time += ((uint64_t)tv.tv_sec) * 10000000; in uuid_create()
196 dce_time += (((uint64_t)0x01b21dd2) << 32) + 0x13814000; in uuid_create()
198 uuid->time_low = dce_time & 0xffffffff; in uuid_create()
199 uuid->time_mid = 0xffff & (dce_time >> 32); in uuid_create()
200 uuid->time_hi_and_version = 0x0fff & (dce_time >> 48); in uuid_create()