Lines Matching refs:p
46 const char *p = s; in tee_uuid_from_str() local
49 if (!p || strnlen(p, 37) != 36) in tee_uuid_from_str()
51 if (p[8] != '-' || p[13] != '-' || p[18] != '-' || p[23] != '-') in tee_uuid_from_str()
54 u.timeLow = parse_hex(p, 8, &res); in tee_uuid_from_str()
57 p += 9; in tee_uuid_from_str()
58 u.timeMid = parse_hex(p, 4, &res); in tee_uuid_from_str()
61 p += 5; in tee_uuid_from_str()
62 u.timeHiAndVersion = parse_hex(p, 4, &res); in tee_uuid_from_str()
65 p += 5; in tee_uuid_from_str()
67 u.clockSeqAndNode[i] = parse_hex(p, 2, &res); in tee_uuid_from_str()
71 p += 3; in tee_uuid_from_str()
73 p += 2; in tee_uuid_from_str()