Searched refs:array_prog1mix (Results 1 – 1 of 1) sorted by relevance
/linux/lib/ |
H A D | util_macros_kunit.c | 30 static int array_prog1mix[] = { -2, -1, 0, 1, 2 }; in test_find_closest() local 81 FIND_CLOSEST_RANGE_CHECK(-4, -2, array_prog1mix, 0); in test_find_closest() 82 FIND_CLOSEST_RANGE_CHECK(-1, -1, array_prog1mix, 1); in test_find_closest() 83 FIND_CLOSEST_RANGE_CHECK(0, 0, array_prog1mix, 2); in test_find_closest() 84 FIND_CLOSEST_RANGE_CHECK(1, 1, array_prog1mix, 3); in test_find_closest() 85 FIND_CLOSEST_RANGE_CHECK(2, 5, array_prog1mix, 4); in test_find_closest() 138 static int array_prog1mix[] = { 2, 1, 0, -1, -2 }; in test_find_closest_descending() local 188 FIND_CLOSEST_DESC_RANGE_CHECK(-4, -2, array_prog1mix, 4); in test_find_closest_descending() 189 FIND_CLOSEST_DESC_RANGE_CHECK(-1, -1, array_prog1mix, 3); in test_find_closest_descending() 190 FIND_CLOSEST_DESC_RANGE_CHECK(0, 0, array_prog1mix, 2); in test_find_closest_descending() [all …]
|