Lines Matching refs:out_value
169 u32 index, u16 *out_value) in of_property_read_u16_index() argument
172 ((index + 1) * sizeof(*out_value)), in of_property_read_u16_index()
178 *out_value = be16_to_cpup(((__be16 *)val) + index); in of_property_read_u16_index()
202 u32 index, u32 *out_value) in of_property_read_u32_index() argument
205 ((index + 1) * sizeof(*out_value)), in of_property_read_u32_index()
212 *out_value = be32_to_cpup(((__be32 *)val) + index); in of_property_read_u32_index()
236 u32 index, u64 *out_value) in of_property_read_u64_index() argument
239 ((index + 1) * sizeof(*out_value)), in of_property_read_u64_index()
245 *out_value = be64_to_cpup(((__be64 *)val) + index); in of_property_read_u64_index()
413 u64 *out_value) in of_property_read_u64() argument
416 sizeof(*out_value), in of_property_read_u64()
423 *out_value = of_read_number(val, 2); in of_property_read_u64()