Home
last modified time | relevance | path

Searched refs:InfoTable (Results 1 – 10 of 10) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
HDCharInfo.h19 extern const uint16_t InfoTable[256];
51 if (InfoTable[c] & (CHAR_UPPER|CHAR_LOWER|CHAR_UNDER))
61 if (InfoTable[c] & (CHAR_UPPER|CHAR_LOWER|CHAR_DIGIT|CHAR_UNDER))
72 return (InfoTable[c] & (CHAR_HORZ_WS|CHAR_SPACE)) != 0; in isHorizontalWhitespace()
80 return (InfoTable[c] & CHAR_VERT_WS) != 0; in isVerticalWhitespace()
89 return (InfoTable[c] & (CHAR_HORZ_WS|CHAR_VERT_WS|CHAR_SPACE)) != 0; in isWhitespace()
95 return (InfoTable[c] & CHAR_DIGIT) != 0; in isDigit()
101 return (InfoTable[c] & CHAR_LOWER) != 0; in isLowercase()
107 return (InfoTable[c] & CHAR_UPPER) != 0; in isUppercase()
113 return (InfoTable[c] & (CHAR_UPPER|CHAR_LOWER)) != 0; in isLetter()
[all …]
/freebsd-11-stable/sys/contrib/dev/acpica/common/
HDdmtbdump.c627 ACPI_DMTABLE_INFO *InfoTable; in AcpiDmDumpAsf() local
659 InfoTable = AcpiDmTableInfoAsf0; in AcpiDmDumpAsf()
664 InfoTable = AcpiDmTableInfoAsf1; in AcpiDmDumpAsf()
674 InfoTable = AcpiDmTableInfoAsf2; in AcpiDmDumpAsf()
684 InfoTable = AcpiDmTableInfoAsf3; in AcpiDmDumpAsf()
689 InfoTable = AcpiDmTableInfoAsf4; in AcpiDmDumpAsf()
703 Subtable->Header.Length, InfoTable); in AcpiDmDumpAsf()
1080 ACPI_DMTABLE_INFO *InfoTable; in AcpiDmDumpDmar() local
1116 InfoTable = AcpiDmTableInfoDmar0; in AcpiDmDumpDmar()
1122 InfoTable = AcpiDmTableInfoDmar1; in AcpiDmDumpDmar()
[all …]
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
HDdttable2.c181 ACPI_DMTABLE_INFO *InfoTable; in DtCompileLpit() local
210 InfoTable = AcpiDmTableInfoLpit0; in DtCompileLpit()
221 Status = DtCompileTable (PFieldList, InfoTable, &Subtable, TRUE); in DtCompileLpit()
258 ACPI_DMTABLE_INFO *InfoTable; in DtCompileMadt() local
291 InfoTable = AcpiDmTableInfoMadt0; in DtCompileMadt()
296 InfoTable = AcpiDmTableInfoMadt1; in DtCompileMadt()
301 InfoTable = AcpiDmTableInfoMadt2; in DtCompileMadt()
306 InfoTable = AcpiDmTableInfoMadt3; in DtCompileMadt()
311 InfoTable = AcpiDmTableInfoMadt4; in DtCompileMadt()
316 InfoTable = AcpiDmTableInfoMadt5; in DtCompileMadt()
[all …]
HDdttable1.c192 ACPI_DMTABLE_INFO *InfoTable; in DtCompileAsf() local
221 InfoTable = AcpiDmTableInfoAsf0; in DtCompileAsf()
226 InfoTable = AcpiDmTableInfoAsf1; in DtCompileAsf()
231 InfoTable = AcpiDmTableInfoAsf2; in DtCompileAsf()
236 InfoTable = AcpiDmTableInfoAsf3; in DtCompileAsf()
241 InfoTable = AcpiDmTableInfoAsf4; in DtCompileAsf()
250 Status = DtCompileTable (PFieldList, InfoTable, &Subtable, TRUE); in DtCompileAsf()
655 ACPI_DMTABLE_INFO *InfoTable; in DtCompileDmar() local
694 InfoTable = AcpiDmTableInfoDmar0; in DtCompileDmar()
699 InfoTable = AcpiDmTableInfoDmar1; in DtCompileDmar()
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
HDDriverOptions.cpp23 static const OptTable::Info InfoTable[] = { variable
37 : OptTable(InfoTable) {} in DriverOptTable()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/
HDDlltoolDriver.cpp41 static const llvm::opt::OptTable::Info InfoTable[] = { variable
51 DllOptTable() : OptTable(InfoTable, false) {} in DllOptTable()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
HDCharInfo.cpp15 const uint16_t clang::charinfo::InfoTable[256] = { member in clang::charinfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
HDLibDriver.cpp47 static const opt::OptTable::Info InfoTable[] = { variable
57 LibOptTable() : OptTable(InfoTable, true) {} in LibOptTable()
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/
HDDriver.cpp73 const opt::OptTable::Info InfoTable[] = { variable
87 LLDBOptTable() : OptTable(InfoTable) {} in LLDBOptTable()
/freebsd-11-stable/contrib/llvm-project/lld/lib/Driver/
HDDarwinLdDriver.cpp78 static const llvm::opt::OptTable::Info InfoTable[] = { variable
92 DarwinLdOptTable() : OptTable(InfoTable) {} in DarwinLdOptTable()