Lines Matching defs:length
37 /* Access property and obtain its length (in bytes) */
44 /* Verify that property length can fill the entire array. */
46 WARN("Property length mismatch\n");
97 unsigned int length, void *value)
107 /* Access property and obtain its length (in bytes) */
115 /* Verify that property length is not less than number of bytes */
116 if ((unsigned int)value_len < length) {
117 WARN("Property length mismatch\n");
121 (void)memcpy(value, ptr, length);
163 unsigned int length, uint8_t *uuid)
174 if (length < UUID_BYTES_LENGTH) {
231 unsigned int length, const void *data)
243 /* Access property and obtain its length in bytes */
250 /* Verify that property length is not less than number of bytes */
251 if ((unsigned int)value_len < length) {
252 WARN("Property length mismatch\n");
259 data, (int)length);
360 /* Determine the actual path length, as a colon terminates the path. */
431 int parent_bus_node, nxlat_entries, length;
455 * `ranges` property. Note that length represents number of bytes and
458 length = fdt32_to_cpu(ranges_prop->len);
459 nxlat_entries = (length/sizeof(uint32_t))/ncells_xlat;
531 int length, local_bus_node;
547 local_bus_node, "ranges", &length);
560 } else if (length == 0) {