Searched refs:array_prog2a (Results 1 – 1 of 1) sorted by relevance
/linux/lib/ |
H A D | util_macros_kunit.c | 31 static int array_prog2a[] = { 1, 3, 5, 7 }; in test_find_closest() local 87 FIND_CLOSEST_RANGE_CHECK(-3, 2, array_prog2a, 0); in test_find_closest() 88 FIND_CLOSEST_RANGE_CHECK(3, 4, array_prog2a, 1); in test_find_closest() 89 FIND_CLOSEST_RANGE_CHECK(5, 6, array_prog2a, 2); in test_find_closest() 90 FIND_CLOSEST_RANGE_CHECK(7, 10, array_prog2a, 3); in test_find_closest() 139 static int array_prog2a[] = { 7, 5, 3, 1 }; in test_find_closest_descending() local 194 FIND_CLOSEST_DESC_RANGE_CHECK(-3, 2, array_prog2a, 3); in test_find_closest_descending() 195 FIND_CLOSEST_DESC_RANGE_CHECK(3, 4, array_prog2a, 2); in test_find_closest_descending() 196 FIND_CLOSEST_DESC_RANGE_CHECK(5, 6, array_prog2a, 1); in test_find_closest_descending() 197 FIND_CLOSEST_DESC_RANGE_CHECK(7, 10, array_prog2a, 0); in test_find_closest_descending()
|