Searched refs:raw_values (Results 1 – 2 of 2) sorted by relevance
/freebsd/crypto/openssl/test/ |
H A D | params_api_test.c | 50 } raw_values[] = { variable 152 const size_t len = raw_values[n].len >= sizeof(int) ? in test_param_int() 153 sizeof(int) : raw_values[n].len; in test_param_int() 157 le_copy(buf, raw_values[n].value, sizeof(in)); in test_param_int() 163 if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) in test_param_int() 169 if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) in test_param_int() 172 return test_param_type_extra(¶m, raw_values[n].value, sizeof(int)); in test_param_int() 179 const size_t len = raw_values[n].len >= sizeof(long int) in test_param_long() 180 ? sizeof(long int) : raw_values[n].len; in test_param_long() 184 le_copy(buf, raw_values[n].value, sizeof(in)); in test_param_long() [all …]
|
/freebsd/contrib/kyua/utils/cmdline/ |
H A D | parser.ipp | 52 const std::vector< std::string >& raw_values = get_option_raw(name); 53 return Option::convert(raw_values[raw_values.size() - 1]); 73 const std::vector< std::string >& raw_values = get_option_raw(name); 74 for (std::vector< std::string >::const_iterator iter = raw_values.begin(); 75 iter != raw_values.end(); iter++) {
|