Lines Matching refs:e2
436 compare (const struct cache_entry *e1, const struct cache_entry *e2) in compare() argument
439 int res = _dl_cache_libcmp (e2->lib->string, e1->lib->string); in compare()
442 if (e1->flags < e2->flags) in compare()
444 else if (e1->flags > e2->flags) in compare()
450 else if (e1->hwcaps != NULL && e2->hwcaps == NULL) in compare()
452 else if (e1->hwcaps == NULL && e2->hwcaps != NULL) in compare()
454 else if (e1->hwcaps != NULL && e2->hwcaps != NULL) in compare()
457 glibc_hwcaps_subdirectory_name (e2->hwcaps)); in compare()
462 if (e2->bits_hwcap > e1->bits_hwcap) in compare()
464 else if (e2->bits_hwcap < e1->bits_hwcap) in compare()
466 else if (e2->hwcap > e1->hwcap) in compare()
468 else if (e2->hwcap < e1->hwcap) in compare()
470 if (e2->osversion > e1->osversion) in compare()
472 if (e2->osversion < e1->osversion) in compare()