Lines Matching refs:out_values

209 					const char *propname, u8 *out_values,  in of_property_read_variable_u8_array()  argument
214 (sz_min * sizeof(*out_values)), in of_property_read_variable_u8_array()
215 (sz_max * sizeof(*out_values)), in of_property_read_variable_u8_array()
224 sz /= sizeof(*out_values); in of_property_read_variable_u8_array()
228 *out_values++ = *val++; in of_property_read_variable_u8_array()
257 const char *propname, u16 *out_values, in of_property_read_variable_u16_array() argument
262 (sz_min * sizeof(*out_values)), in of_property_read_variable_u16_array()
263 (sz_max * sizeof(*out_values)), in of_property_read_variable_u16_array()
272 sz /= sizeof(*out_values); in of_property_read_variable_u16_array()
276 *out_values++ = be16_to_cpup(val++); in of_property_read_variable_u16_array()
302 const char *propname, u32 *out_values, in of_property_read_variable_u32_array() argument
307 (sz_min * sizeof(*out_values)), in of_property_read_variable_u32_array()
308 (sz_max * sizeof(*out_values)), in of_property_read_variable_u32_array()
317 sz /= sizeof(*out_values); in of_property_read_variable_u32_array()
321 *out_values++ = be32_to_cpup(val++); in of_property_read_variable_u32_array()
376 const char *propname, u64 *out_values, in of_property_read_variable_u64_array() argument
381 (sz_min * sizeof(*out_values)), in of_property_read_variable_u64_array()
382 (sz_max * sizeof(*out_values)), in of_property_read_variable_u64_array()
391 sz /= sizeof(*out_values); in of_property_read_variable_u64_array()
395 *out_values++ = of_read_number(val, 2); in of_property_read_variable_u64_array()