Lines Matching refs:out_values
309 const char *propname, u8 *out_values, in of_property_read_variable_u8_array() argument
314 (sz_min * sizeof(*out_values)), in of_property_read_variable_u8_array()
315 (sz_max * sizeof(*out_values)), in of_property_read_variable_u8_array()
324 sz /= sizeof(*out_values); in of_property_read_variable_u8_array()
328 *out_values++ = *val++; in of_property_read_variable_u8_array()
359 const char *propname, u16 *out_values, in of_property_read_variable_u16_array() argument
364 (sz_min * sizeof(*out_values)), in of_property_read_variable_u16_array()
365 (sz_max * sizeof(*out_values)), in of_property_read_variable_u16_array()
374 sz /= sizeof(*out_values); in of_property_read_variable_u16_array()
378 *out_values++ = be16_to_cpup(val++); in of_property_read_variable_u16_array()
406 const char *propname, u32 *out_values, in of_property_read_variable_u32_array() argument
411 (sz_min * sizeof(*out_values)), in of_property_read_variable_u32_array()
412 (sz_max * sizeof(*out_values)), in of_property_read_variable_u32_array()
421 sz /= sizeof(*out_values); in of_property_read_variable_u32_array()
425 *out_values++ = be32_to_cpup(val++); in of_property_read_variable_u32_array()
484 const char *propname, u64 *out_values, in of_property_read_variable_u64_array() argument
489 (sz_min * sizeof(*out_values)), in of_property_read_variable_u64_array()
490 (sz_max * sizeof(*out_values)), in of_property_read_variable_u64_array()
499 sz /= sizeof(*out_values); in of_property_read_variable_u64_array()
503 *out_values++ = of_read_number(val, 2); in of_property_read_variable_u64_array()