Lines Matching full:key2
466 * @key2: the second key to compare
469 * @key2, %0 if the keys are equivalent and %1 if @key1 is greater than @key2.
473 const union ubifs_key *key2) in keys_cmp() argument
475 if (key1->u32[0] < key2->u32[0]) in keys_cmp()
477 if (key1->u32[0] > key2->u32[0]) in keys_cmp()
479 if (key1->u32[1] < key2->u32[1]) in keys_cmp()
481 if (key1->u32[1] > key2->u32[1]) in keys_cmp()
491 * @key2: the second key to compare
493 * This function compares 2 keys and returns %1 if @key1 is equal to @key2 and
498 const union ubifs_key *key2) in keys_eq() argument
500 if (key1->u32[0] != key2->u32[0]) in keys_eq()
502 if (key1->u32[1] != key2->u32[1]) in keys_eq()