Lines Matching refs:Opcode
62 * PARAMETERS: Opcode - The AML opcode
73 UINT16 Opcode)
85 if (!(Opcode & 0xFF00))
89 return (&AcpiGbl_AmlOpInfo [AcpiGbl_ShortOpIndex [(UINT8) Opcode]]);
92 if (((Opcode & 0xFF00) == AML_EXTENDED_OPCODE) &&
93 (((UINT8) Opcode) <= MAX_EXTENDED_OPCODE))
97 return (&AcpiGbl_AmlOpInfo [AcpiGbl_LongOpIndex [(UINT8) Opcode]]);
103 switch (Opcode)
134 OpcodeName = "-Unassigned Opcode-";
149 "%s [%4.4X]\n", OpcodeName, Opcode));
159 * PARAMETERS: Opcode - The AML opcode
170 UINT16 Opcode)
177 Op = AcpiPsGetOpcodeInfo (Opcode);