Home | History | Annotate | Download | only in uuid

Lines Matching defs:res

53 	int res;
67 res = (int)((int64_t)a->time_low - (int64_t)b->time_low);
68 if (res)
69 return ((res < 0) ? -1 : 1);
70 res = (int)a->time_mid - (int)b->time_mid;
71 if (res)
72 return ((res < 0) ? -1 : 1);
73 res = (int)a->time_hi_and_version - (int)b->time_hi_and_version;
74 if (res)
75 return ((res < 0) ? -1 : 1);
76 res = (int)a->clock_seq_hi_and_reserved -
78 if (res)
79 return ((res < 0) ? -1 : 1);
80 res = (int)a->clock_seq_low - (int)b->clock_seq_low;
81 if (res)
82 return ((res < 0) ? -1 : 1);
83 res = memcmp(a->node, b->node, sizeof(a->node));
84 if (res)
85 return ((res < 0) ? -1 : 1);