Lines Matching defs:length
235 buffer_desc->buffer.length = (u32) buffer_size;
272 * NOTE: Zero-length strings are NULL terminated
286 string_desc->string.length = (u32) string_size;
411 * obj_length - Where the length is returned
418 * The length includes the object structure plus any additional
427 acpi_size length;
433 /* Start with the length of the (external) Acpi object */
435 length = sizeof(union acpi_object);
441 * Object is NULL, just return the length of union acpi_object
444 *obj_length = ACPI_ROUND_UP_TO_NATIVE_WORD(length);
463 * The final length depends on the object type
471 length += (acpi_size)internal_object->string.length + 1;
476 length += (acpi_size)internal_object->buffer.length;
492 * Get the actual length of the full pathname to this object.
502 length += ACPI_ROUND_UP_TO_NATIVE_WORD(size);
538 *obj_length = ACPI_ROUND_UP_TO_NATIVE_WORD(length);
550 * DESCRIPTION: Get the length of one package element.
567 * here also) and sum it into the running package length
576 info->length += object_space;
602 * obj_length - Where the length is returned
623 info.length = 0;
636 * just add the length of the package objects themselves.
639 info.length +=
643 /* Return the total package length */
645 *obj_length = info.length;
654 * obj_length - Where the length will be returned