Lines Matching refs:sz
221 size_t sz, count; in of_property_read_variable_u8_array() local
225 &sz); in of_property_read_variable_u8_array()
231 sz = sz_min; in of_property_read_variable_u8_array()
233 sz /= sizeof(*out_values); in of_property_read_variable_u8_array()
235 count = sz; in of_property_read_variable_u8_array()
239 return sz; in of_property_read_variable_u8_array()
271 size_t sz, count; in of_property_read_variable_u16_array() local
275 &sz); in of_property_read_variable_u16_array()
281 sz = sz_min; in of_property_read_variable_u16_array()
283 sz /= sizeof(*out_values); in of_property_read_variable_u16_array()
285 count = sz; in of_property_read_variable_u16_array()
289 return sz; in of_property_read_variable_u16_array()
318 size_t sz, count; in of_property_read_variable_u32_array() local
322 &sz); in of_property_read_variable_u32_array()
328 sz = sz_min; in of_property_read_variable_u32_array()
330 sz /= sizeof(*out_values); in of_property_read_variable_u32_array()
332 count = sz; in of_property_read_variable_u32_array()
336 return sz; in of_property_read_variable_u32_array()
396 size_t sz, count; in of_property_read_variable_u64_array() local
400 &sz); in of_property_read_variable_u64_array()
406 sz = sz_min; in of_property_read_variable_u64_array()
408 sz /= sizeof(*out_values); in of_property_read_variable_u64_array()
410 count = sz; in of_property_read_variable_u64_array()
416 return sz; in of_property_read_variable_u64_array()
501 size_t sz, int skip) in of_property_read_string_helper() argument
514 for (i = 0; p < end && (!out_strs || i < skip + sz); i++, p += l) { in of_property_read_string_helper()