Lines Matching defs:key2
473 * @key2: the second key to compare
476 * @key2, %0 if the keys are equivalent and %1 if @key1 is greater than @key2.
480 const union ubifs_key *key2)
482 if (key1->u32[0] < key2->u32[0])
484 if (key1->u32[0] > key2->u32[0])
486 if (key1->u32[1] < key2->u32[1])
488 if (key1->u32[1] > key2->u32[1])
498 * @key2: the second key to compare
500 * This function compares 2 keys and returns %1 if @key1 is equal to @key2 and
505 const union ubifs_key *key2)
507 if (key1->u32[0] != key2->u32[0])
509 if (key1->u32[1] != key2->u32[1])