Lines Matching refs:out_values
275 const char *propname, u8 *out_values, in of_property_read_variable_u8_array() argument
280 (sz_min * sizeof(*out_values)), in of_property_read_variable_u8_array()
281 (sz_max * sizeof(*out_values)), in of_property_read_variable_u8_array()
290 sz /= sizeof(*out_values); in of_property_read_variable_u8_array()
294 *out_values++ = *val++; in of_property_read_variable_u8_array()
325 const char *propname, u16 *out_values, in of_property_read_variable_u16_array() argument
330 (sz_min * sizeof(*out_values)), in of_property_read_variable_u16_array()
331 (sz_max * sizeof(*out_values)), in of_property_read_variable_u16_array()
340 sz /= sizeof(*out_values); in of_property_read_variable_u16_array()
344 *out_values++ = be16_to_cpup(val++); in of_property_read_variable_u16_array()
372 const char *propname, u32 *out_values, in of_property_read_variable_u32_array() argument
377 (sz_min * sizeof(*out_values)), in of_property_read_variable_u32_array()
378 (sz_max * sizeof(*out_values)), in of_property_read_variable_u32_array()
387 sz /= sizeof(*out_values); in of_property_read_variable_u32_array()
391 *out_values++ = be32_to_cpup(val++); in of_property_read_variable_u32_array()
450 const char *propname, u64 *out_values, in of_property_read_variable_u64_array() argument
455 (sz_min * sizeof(*out_values)), in of_property_read_variable_u64_array()
456 (sz_max * sizeof(*out_values)), in of_property_read_variable_u64_array()
465 sz /= sizeof(*out_values); in of_property_read_variable_u64_array()
469 *out_values++ = of_read_number(val, 2); in of_property_read_variable_u64_array()