Lines Matching defs:a
22 * Struct describing a Universal Unique Identifier
29 #define RTE_UUID_INIT(a, b, c, d, e) { \
30 ((a) >> 24) & 0xff, ((a) >> 16) & 0xff, \
31 ((a) >> 8) & 0xff, (a) & 0xff, \
69 * @param a
74 * returns an integer less than, equal to, or greater than zero if UUID a is
77 int rte_uuid_compare(const rte_uuid_t a, const rte_uuid_t b);
87 * Returns 0 on success, and -1 if string is not a valid UUID.