Lines Matching refs:Target
479 * expressions where the target is the same as one of the
483 * NOTE: This code is specific to target operands that are the last
550 * PARAMETERS: Target - Assignment target
557 * operators which is a target operand -- thus saving invocation
564 ACPI_PARSE_OBJECT *Target,
574 "\nTrCreateAssignmentOp Line [%u to %u] Source %s Target %s\n",
577 UtGetOpName (Target->Asl.ParseOpcode));
579 TrSetOpFlags (Target, OP_IS_TARGET);
585 * a target operand
609 * Transform the parse tree such that the target is moved to the
615 /* NOT only has one operand, but has a target */
622 /* DIVIDE has an extra target operand (remainder) */
632 * Can't perform this optimization if there already is a target
633 * for the operator (ZERO is a "no target" placeholder).
640 /* Link in the target as the final operand */
642 SourceOp2->Asl.Next = Target;
643 Target->Asl.Parent = Source;
650 TrLinkOpChildren (Operator, 2, Source, Target);
654 Operator->Asl.LineNumber = Target->Asl.LineNumber;
655 Operator->Asl.LogicalLineNumber = Target->Asl.LogicalLineNumber;
656 Operator->Asl.LogicalByteOffset = Target->Asl.LogicalByteOffset;
657 Operator->Asl.Column = Target->Asl.Column;
671 * DESCRIPTION: Create a "null" target op. This is defined by the ACPI
673 * no target has been specified for the parent operation