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]);
237 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
251 Status = AcpiExLoadOp (Operand[0], Operand[1], WalkState);
290 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
326 case AML_BIT_NOT_OP: /* Not (Operand, Result) */
328 ReturnDesc->Integer.Value = ~Operand[0]->Integer.Value;
331 case AML_FIND_SET_LEFT_BIT_OP: /* FindSetLeftBit (Operand, Result) */
333 ReturnDesc->Integer.Value = Operand[0]->Integer.Value;
348 case AML_FIND_SET_RIGHT_BIT_OP: /* FindSetRightBit (Operand, Result) */
350 ReturnDesc->Integer.Value = Operand[0]->Integer.Value;
376 Digit = Operand[0]->Integer.Value;
413 case AML_LOAD_OP: /* Result1 = Load (Operand[0], Result1) */
416 Status = AcpiExLoadOp (Operand[0], ReturnDesc, WalkState);
425 case AML_TO_BCD_OP: /* ToBcd (Operand, Result) */
428 Digit = Operand[0]->Integer.Value;
450 ACPI_FORMAT_UINT64 (Operand[0]->Integer.Value)));
462 if ((ACPI_NAMESPACE_NODE *) Operand[0] == AcpiGbl_RootNode)
474 Status = AcpiExGetObjectReference (Operand[0],
481 Status = AcpiExStore (ReturnDesc2, Operand[1], WalkState);
504 Status = AcpiExStore (Operand[0], Operand[1], WalkState);
515 * Normally, we would remove a reference on the Operand[0]
520 WalkState->ResultObj = Operand[0];
531 Operand[0], &ReturnDesc, WalkState);
537 Operand[0], &ReturnDesc, ACPI_EXPLICIT_CONVERT_DECIMAL);
538 if (ReturnDesc == Operand[0])
549 Operand[0], &ReturnDesc, ACPI_EXPLICIT_CONVERT_HEX);
550 if (ReturnDesc == Operand[0])
560 Status = AcpiExConvertToBuffer (Operand[0], &ReturnDesc);
561 if (ReturnDesc == Operand[0])
573 Status = AcpiExConvertToInteger (Operand[0], &ReturnDesc, 0);
574 if (ReturnDesc == Operand[0])
605 Status = AcpiExStore (ReturnDesc, Operand[1], WalkState);
645 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
661 case AML_LOGICAL_NOT_OP: /* LNot (Operand) */
674 if (!Operand[0]->Integer.Value)
680 case AML_DECREMENT_OP: /* Decrement (Operand) */
681 case AML_INCREMENT_OP: /* Increment (Operand) */
697 TempDesc = Operand[0];
707 * reference on the Operand[0] object)
744 Status = AcpiExStore (ReturnDesc, Operand[0], WalkState);
757 Status = AcpiExResolveMultiple (WalkState, Operand[0], &Type, NULL);
782 WalkState, Operand[0], &Type, &TempDesc);
828 "Operand must be Buffer/Integer/String/Package"
857 Operand[0], &ReturnDesc, WalkState);
869 if (ACPI_GET_DESCRIPTOR_TYPE (Operand[0]) == ACPI_DESC_TYPE_NAMED)
872 (ACPI_NAMESPACE_NODE *) Operand[0]);
877 Operand[0] = TempDesc;
888 switch ((Operand[0])->Common.Type)
896 switch (Operand[0]->Reference.Class)
901 /* Set Operand[0] to the value of the local/arg */
904 Operand[0]->Reference.Class,
905 Operand[0]->Reference.Value,
916 AcpiUtRemoveReference (Operand[0]);
917 Operand[0] = TempDesc;
924 TempDesc = Operand[0]->Reference.Object;
925 AcpiUtRemoveReference (Operand[0]);
926 Operand[0] = TempDesc;
947 if (ACPI_GET_DESCRIPTOR_TYPE (Operand[0]) != ACPI_DESC_TYPE_NAMED)
949 if ((Operand[0])->Common.Type == ACPI_TYPE_STRING)
960 Operand[0]->String.Pointer,
977 /* Operand[0] may have changed from the code above */
979 if (ACPI_GET_DESCRIPTOR_TYPE (Operand[0]) == ACPI_DESC_TYPE_NAMED)
988 switch (((ACPI_NAMESPACE_NODE *) Operand[0])->Type)
995 ReturnDesc = Operand[0];
1002 (ACPI_NAMESPACE_NODE *) Operand[0]);
1013 switch (Operand[0]->Reference.Class)
1020 switch (Operand[0]->Reference.TargetType)
1024 TempDesc = Operand[0]->Reference.Object;
1039 TempDesc->Buffer.Pointer[Operand[0]->Reference.Value]);
1052 ReturnDesc = *(Operand[0]->Reference.Where);
1070 Operand[0]->Reference.TargetType, Operand[0]));
1079 ReturnDesc = Operand[0]->Reference.Object;
1126 Operand[0], Operand[0]->Reference.Class));