Lines Matching defs:Operand

272     ACPI_OPERAND_OBJECT     **Operand = &WalkState->Operands[0];
286 Status = AcpiExReleaseMutex (Operand[0], WalkState);
291 Status = AcpiExSystemResetEvent (Operand[0]);
296 Status = AcpiExSystemSignalEvent (Operand[0]);
301 Status = AcpiExSystemDoSleep (Operand[0]->Integer.Value);
306 Status = AcpiExSystemDoStall ((UINT32) Operand[0]->Integer.Value);
311 Status = AcpiExUnloadTable (Operand[0]);
345 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
359 Status = AcpiExLoadOp (Operand[0], Operand[1], WalkState);
398 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
434 case AML_BIT_NOT_OP: /* Not (Operand, Result) */
436 ReturnDesc->Integer.Value = ~Operand[0]->Integer.Value;
439 case AML_FIND_SET_LEFT_BIT_OP: /* FindSetLeftBit (Operand, Result) */
441 ReturnDesc->Integer.Value = Operand[0]->Integer.Value;
456 case AML_FIND_SET_RIGHT_BIT_OP: /* FindSetRightBit (Operand, Result) */
458 ReturnDesc->Integer.Value = Operand[0]->Integer.Value;
484 Digit = Operand[0]->Integer.Value;
521 case AML_LOAD_OP: /* Result1 = Load (Operand[0], Result1) */
524 Status = AcpiExLoadOp (Operand[0], ReturnDesc, WalkState);
533 case AML_TO_BCD_OP: /* ToBcd (Operand, Result) */
536 Digit = Operand[0]->Integer.Value;
558 ACPI_FORMAT_UINT64 (Operand[0]->Integer.Value)));
570 if ((ACPI_NAMESPACE_NODE *) Operand[0] == AcpiGbl_RootNode)
582 Status = AcpiExGetObjectReference (Operand[0],
589 Status = AcpiExStore (ReturnDesc2, Operand[1], WalkState);
612 Status = AcpiExStore (Operand[0], Operand[1], WalkState);
623 * Normally, we would remove a reference on the Operand[0]
628 WalkState->ResultObj = Operand[0];
639 Operand[0], &ReturnDesc, WalkState);
645 Operand[0], &ReturnDesc, ACPI_EXPLICIT_CONVERT_DECIMAL);
646 if (ReturnDesc == Operand[0])
657 Operand[0], &ReturnDesc, ACPI_EXPLICIT_CONVERT_HEX);
658 if (ReturnDesc == Operand[0])
668 Status = AcpiExConvertToBuffer (Operand[0], &ReturnDesc);
669 if (ReturnDesc == Operand[0])
681 Status = AcpiExConvertToInteger (Operand[0], &ReturnDesc, 0);
682 if (ReturnDesc == Operand[0])
713 Status = AcpiExStore (ReturnDesc, Operand[1], WalkState);
753 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
769 case AML_LOGICAL_NOT_OP: /* LNot (Operand) */
782 if (!Operand[0]->Integer.Value)
788 case AML_DECREMENT_OP: /* Decrement (Operand) */
789 case AML_INCREMENT_OP: /* Increment (Operand) */
805 TempDesc = Operand[0];
815 * reference on the Operand[0] object)
852 Status = AcpiExStore (ReturnDesc, Operand[0], WalkState);
865 Status = AcpiExResolveMultiple (WalkState, Operand[0], &Type, NULL);
890 WalkState, Operand[0], &Type, &TempDesc);
936 "Operand must be Buffer/Integer/String/Package"
965 Operand[0], &ReturnDesc, WalkState);
977 if (ACPI_GET_DESCRIPTOR_TYPE (Operand[0]) == ACPI_DESC_TYPE_NAMED)
980 (ACPI_NAMESPACE_NODE *) Operand[0]);
985 Operand[0] = TempDesc;
996 switch ((Operand[0])->Common.Type)
1004 switch (Operand[0]->Reference.Class)
1009 /* Set Operand[0] to the value of the local/arg */
1012 Operand[0]->Reference.Class,
1013 Operand[0]->Reference.Value,
1024 AcpiUtRemoveReference (Operand[0]);
1025 Operand[0] = TempDesc;
1032 TempDesc = Operand[0]->Reference.Object;
1033 AcpiUtRemoveReference (Operand[0]);
1034 Operand[0] = TempDesc;
1055 if (ACPI_GET_DESCRIPTOR_TYPE (Operand[0]) != ACPI_DESC_TYPE_NAMED)
1057 if ((Operand[0])->Common.Type == ACPI_TYPE_STRING)
1068 Operand[0]->String.Pointer,
1085 /* Operand[0] may have changed from the code above */
1087 if (ACPI_GET_DESCRIPTOR_TYPE (Operand[0]) == ACPI_DESC_TYPE_NAMED)
1096 switch (((ACPI_NAMESPACE_NODE *) Operand[0])->Type)
1103 ReturnDesc = Operand[0];
1110 (ACPI_NAMESPACE_NODE *) Operand[0]);
1121 switch (Operand[0]->Reference.Class)
1128 switch (Operand[0]->Reference.TargetType)
1132 TempDesc = Operand[0]->Reference.Object;
1147 TempDesc->Buffer.Pointer[Operand[0]->Reference.Value]);
1160 ReturnDesc = *(Operand[0]->Reference.Where);
1178 Operand[0]->Reference.TargetType, Operand[0]));
1187 ReturnDesc = Operand[0]->Reference.Object;
1234 Operand[0], Operand[0]->Reference.Class));