Lines Matching defs:Op

169  *              MinOp               - Original Op for Address Min
170 * MaxOp - Original Op for Address Max
171 * LengthOp - Original Op for address range
172 * AlignOp - Original Op for address alignment. If
176 * Op - Parent Op for entire construct
197 ACPI_PARSE_OBJECT *Op)
223 if (!Op->Asl.ExternalName)
227 AslError (ASL_ERROR, ASL_MSG_NULL_DESCRIPTOR, Op, NULL);
294 * MinOp - Original Op for Address Min
295 * MaxOp - Original Op for Address Max
296 * LengthOp - Original Op for address range
297 * GranOp - Original Op for address granularity
298 * Op - Parent Op for entire construct
329 ACPI_PARSE_OBJECT *Op)
353 if (!Op->Asl.ExternalName)
357 AslError (ASL_ERROR, ASL_MSG_NULL_DESCRIPTOR, Op, NULL);
551 * PARAMETERS: Op - Resource field node
568 ACPI_PARSE_OBJECT *Op,
575 Op->Asl.ExternalName = Name;
576 Op->Asl.CompileFlags |= OP_IS_RESOURCE_FIELD;
578 Op->Asl.Value.Tag.BitOffset = (ByteOffset * 8) + BitOffset;
579 Op->Asl.Value.Tag.BitLength = BitLength;
588 * Op - Flag initialization node
604 ACPI_PARSE_OBJECT *Op,
609 if (Op->Asl.ParseOpcode == PARSEOP_DEFAULT_ARG)
619 *Flags |= (((UINT8) Op->Asl.Value.Integer) << Position);
627 ACPI_PARSE_OBJECT *Op,
632 if (Op->Asl.ParseOpcode == PARSEOP_DEFAULT_ARG)
642 *Flags |= (((UINT16) Op->Asl.Value.Integer) << Position);
651 * PARAMETERS: Op - Resource node to be completed
663 ACPI_PARSE_OBJECT *Op)
668 Op->Asl.ParseOpcode = PARSEOP_DEFAULT_ARG;
672 return (ASL_GET_PEER_NODE (Op));
680 * PARAMETERS: Op - First op in the initializer list
691 ACPI_PARSE_OBJECT *Op)
693 ACPI_PARSE_OBJECT *NextValueOp = Op;
698 if (!Op)
1132 * PARAMETERS: Op - Parent of a resource template list
1143 ACPI_PARSE_OBJECT *Op)
1159 if (Op->Asl.Parent)
1161 Op->Asl.Parent->Asl.CompileFlags |= OP_IS_RESOURCE_DESC;
1164 /* ResourceTemplate Opcode is first (Op) */
1167 BufferLengthOp = ASL_GET_CHILD_NODE (Op);
1169 /* Buffer Op is first peer */
1196 if (Op->Asl.Parent->Asl.ParseOpcode == PARSEOP_CONNECTION)
1198 Info.MappingOp = Op->Asl.Parent;
1237 * Op -> AML_BUFFER_OP
1241 Op->Asl.ParseOpcode = PARSEOP_BUFFER;
1242 Op->Asl.AmlOpcode = AML_BUFFER_OP;
1243 Op->Asl.CompileFlags = OP_AML_PACKAGE | OP_IS_RESOURCE_DESC;
1244 UtSetParseOpName (Op);