Lines Matching refs:out_value
170 u32 index, u8 *out_value) in of_property_read_u8_index() argument
173 ((index + 1) * sizeof(*out_value)), in of_property_read_u8_index()
179 *out_value = val[index]; in of_property_read_u8_index()
203 u32 index, u16 *out_value) in of_property_read_u16_index() argument
206 ((index + 1) * sizeof(*out_value)), in of_property_read_u16_index()
212 *out_value = be16_to_cpup(((__be16 *)val) + index); in of_property_read_u16_index()
236 u32 index, u32 *out_value) in of_property_read_u32_index() argument
239 ((index + 1) * sizeof(*out_value)), in of_property_read_u32_index()
246 *out_value = be32_to_cpup(((__be32 *)val) + index); in of_property_read_u32_index()
270 u32 index, u64 *out_value) in of_property_read_u64_index() argument
273 ((index + 1) * sizeof(*out_value)), in of_property_read_u64_index()
279 *out_value = be64_to_cpup(((__be64 *)val) + index); in of_property_read_u64_index()
447 u64 *out_value) in of_property_read_u64() argument
450 sizeof(*out_value), in of_property_read_u64()
457 *out_value = of_read_number(val, 2); in of_property_read_u64()