Lines Matching refs:u
256 static void uuid_to_str(char *s, size_t len, const uuid_t *u) in uuid_to_str() argument
262 u->time_low[0], u->time_low[1], u->time_low[2], u->time_low[3], in uuid_to_str()
263 u->time_mid[0], u->time_mid[1], in uuid_to_str()
264 u->time_hi_and_version[0], u->time_hi_and_version[1], in uuid_to_str()
265 (u->clock_seq_hi_and_reserved << 8) | u->clock_seq_low, in uuid_to_str()
266 (u->node[0] << 8) | u->node[1], in uuid_to_str()
267 (u->node[2] << 8) | u->node[3], in uuid_to_str()
268 (u->node[4] << 8) | u->node[5]); in uuid_to_str()
271 static void uuid_from_str(uuid_t *u, const char *s) in uuid_from_str() argument
282 &u->time_low[0], &u->time_low[1], &u->time_low[2], &u->time_low[3], in uuid_from_str()
283 &u->time_mid[0], &u->time_mid[1], in uuid_from_str()
284 &u->time_hi_and_version[0], &u->time_hi_and_version[1], in uuid_from_str()
285 &u->clock_seq_hi_and_reserved, &u->clock_seq_low, in uuid_from_str()
286 &u->node[0], &u->node[1], in uuid_from_str()
287 &u->node[2], &u->node[3], in uuid_from_str()
288 &u->node[4], &u->node[5]); in uuid_from_str()