Lines Matching refs:out_values
184 const char *propname, u8 *out_values, in of_property_read_variable_u8_array() argument
189 (sz_min * sizeof(*out_values)), in of_property_read_variable_u8_array()
190 (sz_max * sizeof(*out_values)), in of_property_read_variable_u8_array()
199 sz /= sizeof(*out_values); in of_property_read_variable_u8_array()
203 *out_values++ = *val++; in of_property_read_variable_u8_array()
232 const char *propname, u16 *out_values, in of_property_read_variable_u16_array() argument
237 (sz_min * sizeof(*out_values)), in of_property_read_variable_u16_array()
238 (sz_max * sizeof(*out_values)), in of_property_read_variable_u16_array()
247 sz /= sizeof(*out_values); in of_property_read_variable_u16_array()
251 *out_values++ = be16_to_cpup(val++); in of_property_read_variable_u16_array()
277 const char *propname, u32 *out_values, in of_property_read_variable_u32_array() argument
282 (sz_min * sizeof(*out_values)), in of_property_read_variable_u32_array()
283 (sz_max * sizeof(*out_values)), in of_property_read_variable_u32_array()
292 sz /= sizeof(*out_values); in of_property_read_variable_u32_array()
296 *out_values++ = be32_to_cpup(val++); in of_property_read_variable_u32_array()
351 const char *propname, u64 *out_values, in of_property_read_variable_u64_array() argument
356 (sz_min * sizeof(*out_values)), in of_property_read_variable_u64_array()
357 (sz_max * sizeof(*out_values)), in of_property_read_variable_u64_array()
366 sz /= sizeof(*out_values); in of_property_read_variable_u64_array()
370 *out_values++ = of_read_number(val, 2); in of_property_read_variable_u64_array()