Lines Matching refs:Operand

164     ACPI_OPERAND_OBJECT     **Operand = &WalkState->Operands[0];
178 Status = AcpiExReleaseMutex (Operand[0], WalkState);
183 Status = AcpiExSystemResetEvent (Operand[0]);
188 Status = AcpiExSystemSignalEvent (Operand[0]);
193 Status = AcpiExSystemDoSleep (Operand[0]->Integer.Value);
198 Status = AcpiExSystemDoStall ((UINT32) Operand[0]->Integer.Value);
203 Status = AcpiExUnloadTable (Operand[0]);
236 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
249 Status = AcpiExLoadOp (Operand[0], Operand[1], WalkState);
285 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
320 case AML_BIT_NOT_OP: /* Not (Operand, Result) */
322 ReturnDesc->Integer.Value = ~Operand[0]->Integer.Value;
325 case AML_FIND_SET_LEFT_BIT_OP: /* FindSetLeftBit (Operand, Result) */
327 ReturnDesc->Integer.Value = Operand[0]->Integer.Value;
342 case AML_FIND_SET_RIGHT_BIT_OP: /* FindSetRightBit (Operand, Result) */
344 ReturnDesc->Integer.Value = Operand[0]->Integer.Value;
370 Digit = Operand[0]->Integer.Value;
407 case AML_TO_BCD_OP: /* ToBcd (Operand, Result) */
410 Digit = Operand[0]->Integer.Value;
432 ACPI_FORMAT_UINT64 (Operand[0]->Integer.Value)));
444 if ((ACPI_NAMESPACE_NODE *) Operand[0] == AcpiGbl_RootNode)
456 Status = AcpiExGetObjectReference (Operand[0],
463 Status = AcpiExStore (ReturnDesc2, Operand[1], WalkState);
486 Status = AcpiExStore (Operand[0], Operand[1], WalkState);
497 * Normally, we would remove a reference on the Operand[0]
502 WalkState->ResultObj = Operand[0];
513 Operand[0], &ReturnDesc, WalkState);
519 Operand[0], &ReturnDesc, ACPI_EXPLICIT_CONVERT_DECIMAL);
520 if (ReturnDesc == Operand[0])
531 Operand[0], &ReturnDesc, ACPI_EXPLICIT_CONVERT_HEX);
532 if (ReturnDesc == Operand[0])
542 Status = AcpiExConvertToBuffer (Operand[0], &ReturnDesc);
543 if (ReturnDesc == Operand[0])
554 Operand[0], &ReturnDesc, ACPI_ANY_BASE);
555 if (ReturnDesc == Operand[0])
586 Status = AcpiExStore (ReturnDesc, Operand[1], WalkState);
626 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
642 case AML_LNOT_OP: /* LNot (Operand) */
655 if (!Operand[0]->Integer.Value)
661 case AML_DECREMENT_OP: /* Decrement (Operand) */
662 case AML_INCREMENT_OP: /* Increment (Operand) */
678 TempDesc = Operand[0];
688 * reference on the Operand[0] object)
724 Status = AcpiExStore (ReturnDesc, Operand[0], WalkState);
737 Status = AcpiExResolveMultiple (WalkState, Operand[0], &Type, NULL);
762 WalkState, Operand[0], &Type, &TempDesc);
808 "Operand must be Buffer/Integer/String/Package"
837 Operand[0], &ReturnDesc, WalkState);
849 if (ACPI_GET_DESCRIPTOR_TYPE (Operand[0]) == ACPI_DESC_TYPE_NAMED)
852 (ACPI_NAMESPACE_NODE *) Operand[0]);
857 Operand[0] = TempDesc;
868 switch ((Operand[0])->Common.Type)
876 switch (Operand[0]->Reference.Class)
881 /* Set Operand[0] to the value of the local/arg */
884 Operand[0]->Reference.Class,
885 Operand[0]->Reference.Value,
896 AcpiUtRemoveReference (Operand[0]);
897 Operand[0] = TempDesc;
904 TempDesc = Operand[0]->Reference.Object;
905 AcpiUtRemoveReference (Operand[0]);
906 Operand[0] = TempDesc;
927 if (ACPI_GET_DESCRIPTOR_TYPE (Operand[0]) != ACPI_DESC_TYPE_NAMED)
929 if ((Operand[0])->Common.Type == ACPI_TYPE_STRING)
940 Operand[0]->String.Pointer,
957 /* Operand[0] may have changed from the code above */
959 if (ACPI_GET_DESCRIPTOR_TYPE (Operand[0]) == ACPI_DESC_TYPE_NAMED)
968 (ACPI_NAMESPACE_NODE *) Operand[0]);
977 switch (Operand[0]->Reference.Class)
984 switch (Operand[0]->Reference.TargetType)
988 TempDesc = Operand[0]->Reference.Object;
1003 TempDesc->Buffer.Pointer[Operand[0]->Reference.Value]);
1016 ReturnDesc = *(Operand[0]->Reference.Where);
1034 Operand[0]->Reference.TargetType, Operand[0]));
1043 ReturnDesc = Operand[0]->Reference.Object;
1090 Operand[0], Operand[0]->Reference.Class));