Lines Matching refs:out_values
208 const char *propname, u8 *out_values, in of_property_read_variable_u8_array() argument
213 (sz_min * sizeof(*out_values)), in of_property_read_variable_u8_array()
214 (sz_max * sizeof(*out_values)), in of_property_read_variable_u8_array()
223 sz /= sizeof(*out_values); in of_property_read_variable_u8_array()
227 *out_values++ = *val++; in of_property_read_variable_u8_array()
256 const char *propname, u16 *out_values, in of_property_read_variable_u16_array() argument
261 (sz_min * sizeof(*out_values)), in of_property_read_variable_u16_array()
262 (sz_max * sizeof(*out_values)), in of_property_read_variable_u16_array()
271 sz /= sizeof(*out_values); in of_property_read_variable_u16_array()
275 *out_values++ = be16_to_cpup(val++); in of_property_read_variable_u16_array()
301 const char *propname, u32 *out_values, in of_property_read_variable_u32_array() argument
306 (sz_min * sizeof(*out_values)), in of_property_read_variable_u32_array()
307 (sz_max * sizeof(*out_values)), in of_property_read_variable_u32_array()
316 sz /= sizeof(*out_values); in of_property_read_variable_u32_array()
320 *out_values++ = be32_to_cpup(val++); in of_property_read_variable_u32_array()
375 const char *propname, u64 *out_values, in of_property_read_variable_u64_array() argument
380 (sz_min * sizeof(*out_values)), in of_property_read_variable_u64_array()
381 (sz_max * sizeof(*out_values)), in of_property_read_variable_u64_array()
390 sz /= sizeof(*out_values); in of_property_read_variable_u64_array()
394 *out_values++ = of_read_number(val, 2); in of_property_read_variable_u64_array()