Home | History | Annotate | Download | only in compiler

Lines Matching defs:Operator

484  *              operand in an ASL/AML operator. Meaning that the top-level
555 * DESCRIPTION: Implements the C-style '=' operator. It changes the parse
558 * of and additional Store() operator. An optimization.
570 ACPI_PARSE_OBJECT *Operator;
602 /* Otherwise, just create a normal Store operator */
610 * last operand of the operator
633 * for the operator (ZERO is a "no target" placeholder).
649 Operator = TrAllocateOp (PARSEOP_STORE);
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;
659 return (Operator);