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

  /src/sys/external/bsd/acpica/dist/include/
acapps.h 83 #define ACPI_COMMON_HEADER(UtilityName, Prefix) \
85 Prefix, ACPICA_NAME, \
86 Prefix, UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, \
87 Prefix, ACPICA_COPYRIGHT, \
88 Prefix
232 char *Prefix,
acdisasm.h 1501 char *Prefix,
  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahaml.c 62 * PARAMETERS: Name - Name or prefix for an AML opcode.
68 * prefix.
82 /* Find/display all opcode names that match the input name prefix */
135 UINT8 Prefix;
153 Prefix = (Opcode & 0x0000FF00) >> 8;
154 if (Prefix && (Prefix != 0x5B))
156 printf ("Invalid opcode (invalid extension prefix 0x%X)\n",
157 Prefix);
240 * PARAMETERS: Name - Name or prefix for an AML grammar element
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslcompile.c 474 char *Prefix = "";
478 /* Set line prefix depending on the destination file type */
485 Prefix = "; ";
492 Prefix = "; ";
498 Prefix = " * ";
506 Prefix = " * ";
529 FlPrintFile (FileId, "%s\n", Prefix);
530 FlPrintFile (FileId, ACPI_COMMON_HEADER (UtilityName, Prefix));
552 char *Prefix = "";
555 /* Set line prefix depending on the destination file type *
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
adfile.c 70 * PARAMETERS: Prefix - prefix string
81 char *Prefix,
88 for (i = 0; Prefix[i]; i++)
90 FilenameBuf[i] = Prefix[i];
265 * OutDirectoryPath - Where the directory path prefix is
adisasm.c 175 * Prefix - Path prefix for output
188 char *Prefix,
249 Prefix = AdGenerateFilename ("dsdt", Table->OemTableId);
259 DisasmFilename = FlGenerateFilename (Prefix, FILE_SUFFIX_DISASSEMBLY);
  /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 119 /* Line indent and offset prefix for each new line */
930 UINT32 Prefix[3];
954 Prefix[0] = ((BigEndianId >> 26) & 0x1F) + 0x40;
955 Prefix[1] = ((BigEndianId >> 21) & 0x1F) + 0x40;
956 Prefix[2] = ((BigEndianId >> 16) & 0x1F) + 0x40;
962 if (!ACPI_IS_ASCII (Prefix[i]) ||
963 !isalpha (Prefix[i]))
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerInternal.h 108 void WriteUnitToFileWithPrefix(const Unit &U, const char *Prefix);
114 void DumpCurrentUnit(const char *Prefix);
FuzzerLoop.cpp 181 void Fuzzer::DumpCurrentUnit(const char *Prefix) {
193 Prefix);
595 void Fuzzer::WriteUnitToFileWithPrefix(const Unit &U, const char *Prefix) {
598 std::string Path = Options.ArtifactPrefix + Prefix + Hash(U);

Completed in 31 milliseconds