HomeSort by: relevance | last modified time | path
    Searched defs:Operand (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/executer/
exoparg3.c 95 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
107 Fatal.Type = (UINT32) Operand[0]->Integer.Value;
108 Fatal.Code = (UINT32) Operand[1]->Integer.Value;
109 Fatal.Argument = (UINT32) Operand[2]->Integer.Value;
164 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
180 * Create the return object. The Source operand is guaranteed to be
184 (Operand[0])->Common.Type);
193 Index = Operand[1]->Integer.Value;
194 Length = (ACPI_SIZE) Operand[2]->Integer.Value;
200 if (Index >= Operand[0]->String.Length
    [all...]
exoparg6.c 90 * PARAMETERS: MatchOp - The AML match operand
224 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
245 if ((Operand[1]->Integer.Value > MAX_MATCH_OPERATOR) ||
246 (Operand[3]->Integer.Value > MAX_MATCH_OPERATOR))
255 Index = Operand[5]->Integer.Value;
256 if (Index >= Operand[0]->Package.Count)
260 ACPI_FORMAT_UINT64 (Index), Operand[0]->Package.Count));
287 for ( ; Index < Operand[0]->Package.Count; Index++)
291 ThisElement = Operand[0]->Package.Elements[Index];
305 if (!AcpiExDoMatch ((UINT32) Operand[1]->Integer.Value
    [all...]
excreate.c 384 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
402 ObjDesc->Processor.ProcId = (UINT8) Operand[1]->Integer.Value;
403 ObjDesc->Processor.Length = (UINT8) Operand[3]->Integer.Value;
404 ObjDesc->Processor.Address = (ACPI_IO_ADDRESS) Operand[2]->Integer.Value;
408 Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) Operand[0],
436 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
454 ObjDesc->PowerResource.SystemLevel = (UINT8) Operand[1]->Integer.Value;
455 ObjDesc->PowerResource.ResourceOrder = (UINT16) Operand[2]->Integer.Value;
459 Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) Operand[0],
489 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]
    [all...]
exoparg2.c 98 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
114 /* The first operand is a namespace node */
116 Node = (ACPI_NAMESPACE_NODE *) Operand[0];
120 Value = (UINT32) Operand[1]->Integer.Value;
172 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
207 Operand[0]->Integer.Value,
208 Operand[1]->Integer.Value,
228 Status = AcpiExStore (ReturnDesc2, Operand[2], WalkState);
234 Status = AcpiExStore (ReturnDesc1, Operand[3], WalkState);
282 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]
    [all...]
exoparg1.c 155 * DESCRIPTION: Execute Type 1 monadic operator with numeric operand on
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)
    [all...]
exconfig.c 134 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
160 Operand[0]->String.Pointer,
161 Operand[1]->String.Pointer,
162 Operand[2]->String.Pointer, &TableIndex);
183 if (Operand[3]->String.Length > 0)
190 Operand[3]->String.Pointer, ACPI_NS_SEARCH_PARENT,
200 if (Operand[4]->String.Length > 0)
202 if ((Operand[4]->String.Pointer[0] != AML_ROOT_PREFIX) &&
203 (Operand[4]->String.Pointer[0] != AML_PARENT_PREFIX))
215 Operand[4]->String.Pointer, ACPI_NS_SEARCH_PARENT
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsopcode.c 364 ACPI_ERROR ((AE_INFO, "(%s) bad operand(s), status 0x%X",
462 * Get the length operand and save it
525 ACPI_OPERAND_OBJECT **Operand;
555 Operand = &WalkState->Operands[0];
571 Operand[0]->String.Pointer,
572 Operand[1]->String.Pointer,
573 Operand[2]->String.Pointer, &TableIndex);
580 Operand[0]->String.Pointer,
581 Operand[1]->String.Pointer,
582 Operand[2]->String.Pointer))
    [all...]
dsutils.c 248 * as an operand later.
448 * DESCRIPTION: Clear all operands on the current walk state operand stack.
462 /* Remove a reference on each operand on the stack */
694 * a missing or null operand!
697 "Missing or null operand"));
722 /* Put the operand object on the object stack */
821 * pop everything off of the operand stack and delete those
827 /* Restore operand count */
857 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
889 NewObjDesc = *Operand;
    [all...]

Completed in 21 milliseconds