Lines Matching defs:Op

61  *              MinOp               - Original Op for Address Min
62 * MaxOp - Original Op for Address Max
63 * LengthOp - Original Op for address range
64 * AlignOp - Original Op for address alignment. If
68 * Op - Parent Op for entire construct
89 ACPI_PARSE_OBJECT *Op)
115 if (!Op->Asl.ExternalName)
119 AslError (ASL_ERROR, ASL_MSG_NULL_DESCRIPTOR, Op, NULL);
186 * MinOp - Original Op for Address Min
187 * MaxOp - Original Op for Address Max
188 * LengthOp - Original Op for address range
189 * GranOp - Original Op for address granularity
190 * Op - Parent Op for entire construct
221 ACPI_PARSE_OBJECT *Op)
245 if (!Op->Asl.ExternalName)
249 AslError (ASL_ERROR, ASL_MSG_NULL_DESCRIPTOR, Op, NULL);
443 * PARAMETERS: Op - Resource field node
460 ACPI_PARSE_OBJECT *Op,
467 Op->Asl.ExternalName = Name;
468 Op->Asl.CompileFlags |= OP_IS_RESOURCE_FIELD;
470 Op->Asl.Value.Tag.BitOffset = (ByteOffset * 8) + BitOffset;
471 Op->Asl.Value.Tag.BitLength = BitLength;
480 * Op - Flag initialization node
496 ACPI_PARSE_OBJECT *Op,
501 if (Op->Asl.ParseOpcode == PARSEOP_DEFAULT_ARG)
511 *Flags |= (((UINT8) Op->Asl.Value.Integer) << Position);
519 ACPI_PARSE_OBJECT *Op,
524 if (Op->Asl.ParseOpcode == PARSEOP_DEFAULT_ARG)
534 *Flags |= (((UINT16) Op->Asl.Value.Integer) << Position);
543 * PARAMETERS: Op - Resource node to be completed
555 ACPI_PARSE_OBJECT *Op)
560 Op->Asl.ParseOpcode = PARSEOP_DEFAULT_ARG;
564 return (ASL_GET_PEER_NODE (Op));
572 * PARAMETERS: Op - First op in the initializer list
583 ACPI_PARSE_OBJECT *Op)
585 ACPI_PARSE_OBJECT *NextValueOp = Op;
590 if (!Op)
1024 * PARAMETERS: Op - Parent of a resource template list
1035 ACPI_PARSE_OBJECT *Op)
1051 if (Op->Asl.Parent)
1053 Op->Asl.Parent->Asl.CompileFlags |= OP_IS_RESOURCE_DESC;
1056 /* ResourceTemplate Opcode is first (Op) */
1059 BufferLengthOp = ASL_GET_CHILD_NODE (Op);
1061 /* Buffer Op is first peer */
1088 if (Op->Asl.Parent->Asl.ParseOpcode == PARSEOP_CONNECTION)
1090 Info.MappingOp = Op->Asl.Parent;
1129 * Op -> AML_BUFFER_OP
1133 Op->Asl.ParseOpcode = PARSEOP_BUFFER;
1134 Op->Asl.AmlOpcode = AML_BUFFER_OP;
1135 Op->Asl.CompileFlags = OP_AML_PACKAGE | OP_IS_RESOURCE_DESC;
1136 UtSetParseOpName (Op);