Lines Matching defs:element
221 * The first element must be a GUID and the second one must be
245 * whose every element must be an integer, a string, or a reference.
359 * The first element must be a GUID and the second one must be
675 const union acpi_object *element, *end;
723 element = obj->package.elements;
724 end = element + obj->package.count;
726 while (element < end) {
729 if (element->type == ACPI_TYPE_LOCAL_REFERENCE) {
732 ret = acpi_bus_get_device(element->reference.handle,
738 element++;
745 element < end && element->type == ACPI_TYPE_STRING;
746 element++) {
748 ref_fwnode, element->string.pointer);
754 for (i = 0; element + i < end && i < num_args; i++) {
755 int type = element[i].type;
772 args->args[i] = element[i].integer.value;
777 element += nargs;
778 } else if (element->type == ACPI_TYPE_INTEGER) {
781 element++;
964 * value may still be represented as one-element array, so