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

  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahaml.c 3 * Module Name: ahaml - AML opcode decoding for acpihelp utility
168 * FUNCTION: AhFindAmlOpcode (entry point for AML opcode name search)
170 * PARAMETERS: Name - Name or prefix for an AML opcode.
190 /* Find/display all opcode names that match the input name prefix */
206 /* Upper case the opcode name before substring compare */
227 * FUNCTION: AhDecodeAmlOpcode (entry point for AML opcode search)
229 * PARAMETERS: OpcodeString - String version of AML opcode
233 * DESCRIPTION: Display information about the input AML opcode
242 UINT32 Opcode;
252 Opcode = strtoul (OpcodeString, NULL, 16)
    [all...]
  /src/sys/external/bsd/acpica/dist/parser/
psparse.c 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
    [all...]
psargs.c 3 * Module Name: psargs - Parse AML opcode arguments
546 UINT16 Opcode;
559 Opcode = AML_BYTE_OP;
568 Opcode = AML_WORD_OP;
577 Opcode = AML_DWORD_OP;
586 Opcode = AML_QWORD_OP;
595 Opcode = AML_STRING_OP;
621 AcpiPsInitOp (Arg, Opcode);
646 UINT16 Opcode;
668 Opcode = AML_INT_RESERVEDFIELD_OP
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslcodegen.c 347 * PARAMETERS: Op - Parse node with an AML opcode
351 * DESCRIPTION: Write the AML opcode corresponding to a parse node.
362 UINT16 Opcode;
393 printf ("Found a node with an unassigned AML opcode\n");
395 "Found a node with an unassigned AML opcode\n");
402 Aml.Opcode = AML_FIELD_OFFSET_OP;
407 Aml.Opcode = AML_FIELD_ACCESS_OP;
412 Aml.Opcode = AML_FIELD_CONNECTION_OP;
417 Aml.Opcode = Op->Asl.AmlOpcode;
422 switch (Aml.Opcode)
    [all...]
cvparser.c 719 UINT16 Opcode = (UINT16) ACPI_GET8 (Aml);
728 Opcode != AML_COMMENT_OP)
733 while (Opcode == AML_COMMENT_OP)
935 /* Peek at the next Opcode. */
938 Opcode = (UINT16) ACPI_GET8 (Aml);
975 UINT16 Opcode;
989 Opcode = (UINT16) ACPI_GET8 (Aml);
990 OpInfo = AcpiPsGetOpcodeInfo (Opcode);
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsutils.c 348 "Unknown parent opcode Op=%p", Op));
354 * the parent opcode will not use the result, delete the object.
366 /* Never delete the return value associated with a return opcode */
391 /* The general control opcode returns no result */
459 * DESCRIPTION: Used after interpretation of an opcode. If there is an internal
460 * result descriptor, check if the parent opcode will actually use
598 * opcode to the equivalent interpreter object. This may include
615 UINT16 Opcode;
645 * opcode that unfortunately defines the field name as the last
650 * actual opcode exists
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acinterp.h 178 UINT8 Opcode;
184 /* Values for the Opcode field above */
386 UINT16 Opcode,
393 UINT16 Opcode,
400 UINT16 Opcode,
664 UINT16 Opcode,
acresrc.h 178 UINT8 Opcode;
241 UINT8 Opcode;
248 /* Values for the Opcode field above */
acdisasm.h 173 UINT8 Opcode;
190 * Values for Opcode above.
acstruct.h 186 UINT16 Opcode; /* Current AML opcode */
227 const ACPI_OPCODE_INFO *OpInfo; /* Info on current opcode */
aclocal.h 842 UINT16 Opcode;
981 * AML opcode, name, and argument layout
986 const char *Name; /* Opcode name (disassembler/debug only) */
992 UINT8 Class; /* Opcode class */
993 UINT8 Type; /* Opcode type */
1037 UINT16 AmlOpcode; /* AML opcode */\
1041 ACPI_PARSE_VALUE Value; /* Value or args associated with the opcode */\
1087 #define ACPI_DASM_MATCHOP 0x07 /* Parent opcode is a Match() operator */
1091 #define ACPI_DASM_IGNORE_SINGLE 0x0B /* Ignore the opcode but not it's children */
1503 #define ACPI_EXT_ORIGIN_FROM_OPCODE 0x10 /* External came from a External() opcode */
    [all...]
  /src/sys/external/bsd/acpica/dist/namespace/
nsxfname.c 681 UINT16 Opcode;
701 /* First AML opcode in the table must be a control method */
704 Opcode = AcpiPsPeekOpcode (&ParserState);
705 if (Opcode != AML_METHOD_OP)
712 ParserState.Aml += AcpiPsGetOpcodeSize (Opcode);
  /src/sys/arch/hppa/hppa/
db_disasm.c 432 * Spectrum Simulator Instruction Opcode Definitions
510 * 12/19/89 ejf Add PA89 new floating point opcode 0E.
519 * requirement that all subops of a major opcode begin in the same
762 u_char majopc; /* major opcode of instruction, 0..MAXOPC */
763 u_char opcext; /* opcode extension, 0 if not applic. */
777 * opcode extension */
778 u_int maxsubop; /* largest opcode extension value or 0 */
783 #define OpExt(i,m) ((i >> m->extshft) & m->extmask) /* extract opcode extension */
790 /* Load/Store Indexed Opcode Extension Cache Control */
800 /* opcode */
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/
efidebug.h 140 UINT16 Opcode;
225 UINT16 Opcode;

Completed in 24 milliseconds