Searched refs:best_match (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | LineTable.h | 348 size_t best_match = UINT32_MAX; in FindLineEntryIndexByFileIndexImpl() local 351 return best_match; in FindLineEntryIndexByFileIndexImpl() 379 if (best_match == UINT32_MAX || in FindLineEntryIndexByFileIndexImpl() 380 m_entries[idx].line < m_entries[best_match].line) in FindLineEntryIndexByFileIndexImpl() 381 best_match = idx; in FindLineEntryIndexByFileIndexImpl() 391 if (best_match == UINT32_MAX) in FindLineEntryIndexByFileIndexImpl() 392 best_match = idx; in FindLineEntryIndexByFileIndexImpl() 393 else if (m_entries[idx].line < m_entries[best_match].line) in FindLineEntryIndexByFileIndexImpl() 394 best_match = idx; in FindLineEntryIndexByFileIndexImpl() 395 else if (m_entries[idx].line == m_entries[best_match].line) in FindLineEntryIndexByFileIndexImpl() [all …]
|
/freebsd/sys/dev/drm2/ |
H A D | drm_mm.h | 189 bool best_match); 197 bool best_match); 201 bool best_match) in drm_mm_search_free() argument 203 return drm_mm_search_free_generic(mm,size, alignment, 0, best_match); in drm_mm_search_free() 211 bool best_match) in drm_mm_search_free_in_range() argument 214 start, end, best_match); in drm_mm_search_free_in_range() 220 bool best_match) in drm_mm_search_free_color() argument 222 return drm_mm_search_free_generic(mm,size, alignment, color, best_match); in drm_mm_search_free_color() 231 bool best_match) in drm_mm_search_free_in_range_color() argument 234 start, end, best_match); in drm_mm_search_free_in_range_color()
|
H A D | drm_mm.c | 384 bool best_match) in drm_mm_search_free_generic() argument 409 if (!best_match) in drm_mm_search_free_generic() 428 bool best_match) in drm_mm_search_free_in_range_generic() argument 456 if (!best_match) in drm_mm_search_free_in_range_generic()
|
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/ |
H A D | vdev_geom.c | 711 enum match match, best_match; in vdev_geom_attach_by_guids() local 718 best_match = NO_MATCH; in vdev_geom_attach_by_guids() 727 if (match > best_match) { in vdev_geom_attach_by_guids() 728 best_match = match; in vdev_geom_attach_by_guids() 730 } else if (match == best_match) { in vdev_geom_attach_by_guids()
|
/freebsd/sys/opencrypto/ |
H A D | crypto.c | 601 int best_match, error, hid; in crypto_select_driver() local 627 if (best == NULL || error > best_match || in crypto_select_driver() 628 (error == best_match && in crypto_select_driver() 631 best_match = error; in crypto_select_driver()
|