Lines Matching refs:Op
56 ACPI_PARSE_OBJECT *Op,
61 ACPI_PARSE_OBJECT *Op,
79 ACPI_PARSE_OBJECT *Op) in OpcDoPrintf() argument
88 DestOp->Asl.Parent = Op; in OpcDoPrintf()
89 DestOp->Asl.LogicalLineNumber = Op->Asl.LogicalLineNumber; in OpcDoPrintf()
91 OpcParsePrintf (Op, DestOp); in OpcDoPrintf()
109 ACPI_PARSE_OBJECT *Op) in OpcDoFprintf() argument
116 DestOp = Op->Asl.Child; in OpcDoFprintf()
117 Op->Asl.Child = DestOp->Asl.Next; in OpcDoFprintf()
120 OpcParsePrintf (Op, DestOp); in OpcDoFprintf()
144 ACPI_PARSE_OBJECT *Op, in OpcParsePrintf() argument
159 Format = ACPI_CAST_PTR (char, Op->Asl.Child->Asl.Value.String); in OpcParsePrintf()
160 ArgNode = Op->Asl.Child->Asl.Next; in OpcParsePrintf()
166 Op->Asl.Child = NULL; in OpcParsePrintf()
195 NewOp->Asl.LogicalLineNumber = Op->Asl.LogicalLineNumber; in OpcParsePrintf()
197 OpcCreateConcatenateNode(Op, NewOp); in OpcParsePrintf()
212 AslError(ASL_ERROR, ASL_MSG_ARG_COUNT_LO, Op, NULL); in OpcParsePrintf()
234 OpcCreateConcatenateNode(Op, ArgNode); in OpcParsePrintf()
250 if (!Op->Asl.Child) in OpcParsePrintf()
256 NewOp->Asl.LogicalLineNumber = Op->Asl.LogicalLineNumber; in OpcParsePrintf()
258 OpcCreateConcatenateNode(Op, NewOp); in OpcParsePrintf()
261 OpcCreateConcatenateNode(Op, ArgNode); in OpcParsePrintf()
267 AslError(ASL_ERROR, ASL_MSG_INVALID_OPERAND, Op, in OpcParsePrintf()
284 NewOp->Asl.LogicalLineNumber = Op->Asl.LogicalLineNumber; in OpcParsePrintf()
286 OpcCreateConcatenateNode(Op, NewOp); in OpcParsePrintf()
293 if (!Op->Asl.Child) in OpcParsePrintf()
295 Op->Asl.ParseOpcode = PARSEOP_NOOP; in OpcParsePrintf()
296 AslError(ASL_WARNING, ASL_MSG_NULL_STRING, Op, in OpcParsePrintf()
312 Op->Asl.ParseOpcode = PARSEOP_STORE; in OpcParsePrintf()
313 Op->Common.AmlOpcode = AML_STORE_OP; in OpcParsePrintf()
314 Op->Asl.CompileFlags = 0; in OpcParsePrintf()
318 Op->Asl.CompileFlags &= ~NODE_COMPILE_TIME_CONST; in OpcParsePrintf()
319 UtSetParseOpName (Op); in OpcParsePrintf()
323 Op->Asl.Child->Asl.Next = DestOp; in OpcParsePrintf()
343 ACPI_PARSE_OBJECT *Op, in OpcCreateConcatenateNode() argument
349 if (!Op->Asl.Child) in OpcCreateConcatenateNode()
351 Op->Asl.Child = Node; in OpcCreateConcatenateNode()
352 Node->Asl.Parent = Op; in OpcCreateConcatenateNode()
359 NewConcatOp->Asl.LogicalLineNumber = Op->Asl.LogicalLineNumber; in OpcCreateConcatenateNode()
363 NewConcatOp->Asl.Child = Op->Asl.Child; in OpcCreateConcatenateNode()
364 Op->Asl.Child->Asl.Parent = NewConcatOp; in OpcCreateConcatenateNode()
378 Op->Asl.Child = NewConcatOp; in OpcCreateConcatenateNode()
379 NewConcatOp->Asl.Parent = Op; in OpcCreateConcatenateNode()