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 191 #define ACPI_COMMON_HEADER(UtilityName, Prefix) \
193 Prefix, ACPICA_NAME, \
194 Prefix, UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, \
195 Prefix, ACPICA_COPYRIGHT, \
196 Prefix
340 char *Prefix,
acdisasm.h 1588 char *Prefix,
  /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/acpica/dist/common/
adfile.c 178 * PARAMETERS: Prefix - prefix string
189 char *Prefix,
196 for (i = 0; Prefix[i]; i++)
198 FilenameBuf[i] = Prefix[i];
373 * OutDirectoryPath - Where the directory path prefix is
adisasm.c 283 * Prefix - Path prefix for output
296 char *Prefix,
357 Prefix = AdGenerateFilename ("dsdt", Table->OemTableId);
367 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 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]))
  /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 18 milliseconds