Lines Matching refs:out_values
219 const char *propname, u8 *out_values, in of_property_read_variable_u8_array() argument
224 (sz_min * sizeof(*out_values)), in of_property_read_variable_u8_array()
225 (sz_max * sizeof(*out_values)), in of_property_read_variable_u8_array()
234 sz /= sizeof(*out_values); in of_property_read_variable_u8_array()
238 *out_values++ = *val++; in of_property_read_variable_u8_array()
269 const char *propname, u16 *out_values, in of_property_read_variable_u16_array() argument
274 (sz_min * sizeof(*out_values)), in of_property_read_variable_u16_array()
275 (sz_max * sizeof(*out_values)), in of_property_read_variable_u16_array()
284 sz /= sizeof(*out_values); in of_property_read_variable_u16_array()
288 *out_values++ = be16_to_cpup(val++); in of_property_read_variable_u16_array()
316 const char *propname, u32 *out_values, in of_property_read_variable_u32_array() argument
321 (sz_min * sizeof(*out_values)), in of_property_read_variable_u32_array()
322 (sz_max * sizeof(*out_values)), in of_property_read_variable_u32_array()
331 sz /= sizeof(*out_values); in of_property_read_variable_u32_array()
335 *out_values++ = be32_to_cpup(val++); in of_property_read_variable_u32_array()
394 const char *propname, u64 *out_values, in of_property_read_variable_u64_array() argument
399 (sz_min * sizeof(*out_values)), in of_property_read_variable_u64_array()
400 (sz_max * sizeof(*out_values)), in of_property_read_variable_u64_array()
409 sz /= sizeof(*out_values); in of_property_read_variable_u64_array()
413 *out_values++ = of_read_number(val, 2); in of_property_read_variable_u64_array()