Lines Matching defs:Opcode
157 * fairly compact by parsing based on a list of AML opcode
177 * PARAMETERS: Opcode - An AML opcode
179 * RETURN: Size of the opcode, in bytes (1 or 2)
181 * DESCRIPTION: Get the size of the current opcode.
187 UINT32 Opcode)
190 /* Extended (2-byte) opcode if > 255 */
192 if (Opcode > 0x00FF)
197 /* Otherwise, just a single byte opcode */
209 * RETURN: Next AML opcode
211 * DESCRIPTION: Get next AML opcode (without incrementing AML pointer)
220 UINT16 Opcode;
224 Opcode = (UINT16) ACPI_GET8 (Aml);
226 if (Opcode == AML_EXTENDED_PREFIX)
228 /* Extended opcode, get the second opcode byte */
231 Opcode = (UINT16) ((Opcode << 8) | ACPI_GET8 (Aml));
234 return (Opcode);
506 * opcode. In both cases, we do not execute the rest of the