Searched refs:validate_rand_ranges (Results 1 – 1 of 1) sorted by relevance
/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | reg_bounds.c | 1960 static void validate_rand_ranges(enum num_t init_t, enum num_t cond_t, bool const_range) in validate_rand_ranges() function 2013 void test_reg_bounds_rand_consts_u64_u64(void) { validate_rand_ranges(U64, U64, true /* const */); } in test_reg_bounds_rand_consts_u64_u64() 2014 void test_reg_bounds_rand_consts_u64_s64(void) { validate_rand_ranges(U64, S64, true /* const */); } in test_reg_bounds_rand_consts_u64_s64() 2015 void test_reg_bounds_rand_consts_u64_u32(void) { validate_rand_ranges(U64, U32, true /* const */); } in test_reg_bounds_rand_consts_u64_u32() 2016 void test_reg_bounds_rand_consts_u64_s32(void) { validate_rand_ranges(U64, S32, true /* const */); } in test_reg_bounds_rand_consts_u64_s32() 2018 void test_reg_bounds_rand_consts_s64_u64(void) { validate_rand_ranges(S64, U64, true /* const */); } in test_reg_bounds_rand_consts_s64_u64() 2019 void test_reg_bounds_rand_consts_s64_s64(void) { validate_rand_ranges(S64, S64, true /* const */); } in test_reg_bounds_rand_consts_s64_s64() 2020 void test_reg_bounds_rand_consts_s64_u32(void) { validate_rand_ranges(S64, U32, true /* const */); } in test_reg_bounds_rand_consts_s64_u32() 2021 void test_reg_bounds_rand_consts_s64_s32(void) { validate_rand_ranges(S64, S32, true /* const */); } in test_reg_bounds_rand_consts_s64_s32() 2023 void test_reg_bounds_rand_consts_u32_u64(void) { validate_rand_ranges(U32, U64, true /* const */); } in test_reg_bounds_rand_consts_u32_u64() [all …]
|