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

  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahaml.c 170 * PARAMETERS: Name - Name or prefix for an AML opcode.
176 * prefix.
190 /* Find/display all opcode names that match the input name prefix */
243 UINT8 Prefix;
261 Prefix = (Opcode & 0x0000FF00) >> 8;
262 if (Prefix && (Prefix != 0x5B))
264 printf ("Invalid opcode (invalid extension prefix 0x%X)\n",
265 Prefix);
348 * PARAMETERS: Name - Name or prefix for an AML grammar element
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslcompile.c 582 char *Prefix = "";
586 /* Set line prefix depending on the destination file type */
593 Prefix = "; ";
600 Prefix = "; ";
606 Prefix = " * ";
614 Prefix = " * ";
637 FlPrintFile (FileId, "%s\n", Prefix);
638 FlPrintFile (FileId, ACPI_COMMON_HEADER (UtilityName, Prefix));
660 char *Prefix = "";
663 /* Set line prefix depending on the destination file type *
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_type_hash_itanium.cc 200 VtablePrefix *Prefix = Vptr - 1;
201 if (!IsAccessibleMemoryRange((uptr)Prefix, sizeof(VtablePrefix)))
203 if (!Prefix->TypeInfo)
206 return Prefix;
  /src/sys/external/bsd/acpica/dist/disassembler/
dmbuffer.c 227 /* Line indent and offset prefix for each new line */
1038 UINT32 Prefix[3];
1062 Prefix[0] = ((BigEndianId >> 26) & 0x1F) + 0x40;
1063 Prefix[1] = ((BigEndianId >> 21) & 0x1F) + 0x40;
1064 Prefix[2] = ((BigEndianId >> 16) & 0x1F) + 0x40;
1070 if (!ACPI_IS_ASCII (Prefix[i]) ||
1071 !isalpha (Prefix[i]))

Completed in 97 milliseconds