Lines Matching refs:out_values

218 					const char *propname, u8 *out_values,  in of_property_read_variable_u8_array()  argument
223 (sz_min * sizeof(*out_values)), in of_property_read_variable_u8_array()
224 (sz_max * sizeof(*out_values)), in of_property_read_variable_u8_array()
233 sz /= sizeof(*out_values); in of_property_read_variable_u8_array()
237 *out_values++ = *val++; in of_property_read_variable_u8_array()
268 const char *propname, u16 *out_values, in of_property_read_variable_u16_array() argument
273 (sz_min * sizeof(*out_values)), in of_property_read_variable_u16_array()
274 (sz_max * sizeof(*out_values)), in of_property_read_variable_u16_array()
283 sz /= sizeof(*out_values); in of_property_read_variable_u16_array()
287 *out_values++ = be16_to_cpup(val++); in of_property_read_variable_u16_array()
315 const char *propname, u32 *out_values, in of_property_read_variable_u32_array() argument
320 (sz_min * sizeof(*out_values)), in of_property_read_variable_u32_array()
321 (sz_max * sizeof(*out_values)), in of_property_read_variable_u32_array()
330 sz /= sizeof(*out_values); in of_property_read_variable_u32_array()
334 *out_values++ = be32_to_cpup(val++); in of_property_read_variable_u32_array()
393 const char *propname, u64 *out_values, in of_property_read_variable_u64_array() argument
398 (sz_min * sizeof(*out_values)), in of_property_read_variable_u64_array()
399 (sz_max * sizeof(*out_values)), in of_property_read_variable_u64_array()
408 sz /= sizeof(*out_values); in of_property_read_variable_u64_array()
412 *out_values++ = of_read_number(val, 2); in of_property_read_variable_u64_array()