Lines Matching refs:out_values
216 const char *propname, u8 *out_values, in of_property_read_variable_u8_array() argument
221 (sz_min * sizeof(*out_values)), in of_property_read_variable_u8_array()
222 (sz_max * sizeof(*out_values)), in of_property_read_variable_u8_array()
231 sz /= sizeof(*out_values); in of_property_read_variable_u8_array()
235 *out_values++ = *val++; in of_property_read_variable_u8_array()
266 const char *propname, u16 *out_values, in of_property_read_variable_u16_array() argument
271 (sz_min * sizeof(*out_values)), in of_property_read_variable_u16_array()
272 (sz_max * sizeof(*out_values)), in of_property_read_variable_u16_array()
281 sz /= sizeof(*out_values); in of_property_read_variable_u16_array()
285 *out_values++ = be16_to_cpup(val++); in of_property_read_variable_u16_array()
313 const char *propname, u32 *out_values, in of_property_read_variable_u32_array() argument
318 (sz_min * sizeof(*out_values)), in of_property_read_variable_u32_array()
319 (sz_max * sizeof(*out_values)), in of_property_read_variable_u32_array()
328 sz /= sizeof(*out_values); in of_property_read_variable_u32_array()
332 *out_values++ = be32_to_cpup(val++); in of_property_read_variable_u32_array()
391 const char *propname, u64 *out_values, in of_property_read_variable_u64_array() argument
396 (sz_min * sizeof(*out_values)), in of_property_read_variable_u64_array()
397 (sz_max * sizeof(*out_values)), in of_property_read_variable_u64_array()
406 sz /= sizeof(*out_values); in of_property_read_variable_u64_array()
410 *out_values++ = of_read_number(val, 2); in of_property_read_variable_u64_array()