Home
last modified time | relevance | path

Searched refs:TableSize (Results 1 – 23 of 23) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp212 void emitBinSearch(raw_ostream &OS, unsigned TableSize);
217 void emitMapFuncBody(raw_ostream &OS, unsigned TableSize);
369 unsigned TableSize = 0; in emitBinSearchTable() local
394 TableSize++; in emitBinSearchTable()
398 if (!TableSize) { in emitBinSearchTable()
403 return TableSize; in emitBinSearchTable()
414 OS << " unsigned end = " << TableSize << ";\n"; in emitBinSearch()
434 unsigned TableSize) { in emitMapFuncBody() argument
442 emitBinSearch(OS, TableSize); in emitMapFuncBody()
492 unsigned TableSize = emitBinSearchTable(OS); in emitTablesWithFunc() local
[all …]
H A DAsmWriterEmitter.cpp416 unsigned TableSize = std::min(llvm::bit_floor(BytesNeeded), 4u); in EmitGetMnemonic() local
417 BytesNeeded -= TableSize; in EmitGetMnemonic()
418 TableSize *= 8; // Convert to bits; in EmitGetMnemonic()
419 uint64_t Mask = (1ULL << TableSize) - 1; in EmitGetMnemonic()
420 O << " static const uint" << TableSize << "_t OpInfo" << Table in EmitGetMnemonic()
434 Shift += TableSize; in EmitGetMnemonic()
/freebsd/contrib/dialog/
H A Drc.c64 #define COLOR_COUNT TableSize(color_names)
83 #define VAR_COUNT TableSize(vars)
239 for (n = 0; n < TableSize(color_names); ++n) { in to_color_name()
300 while (tok_count < TableSize(tokens)) { in str_to_attr()
H A Ddlg_internals.h29 #define TableSize(name) (sizeof(name)/sizeof((name)[0])) macro
H A Ddlg_keys.c412 #define COUNT_CURSES TableSize(curses_names)
511 #define COUNT_DIALOG TableSize(dialog_names)
704 for (n = 0; n < TableSize(escaped_letters); ++n) { in decode_escaped()
721 for (n = 0; n < TableSize(escaped_letters); ++n) { in encode_escaped()
H A Ddialog.c666 for (n = 0; n < TableSize(options); n++) { in findOption()
1409 for (i = 0; i < TableSize(table); i++) { in button_code()
1514 for (n = 0; n < TableSize(modes); n++) { in lookupMode()
1570 size_t limit = TableSize(options); in Help()
H A Dutil.c555 return TableSize(dlg_color_table); in dlg_color_count()
1853 for (n = 0; n < TableSize(table); n++) { in dlg_exit()
1927 for (n = 0; n < TableSize(exit_codenames); ++n) { in dlg_exitcode2s()
1942 for (n = 0; n < TableSize(exit_codenames); ++n) { in dlg_exitname2n()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp6185 if (Values.size() < TableSize) { in SwitchLookupTable()
6189 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
6216 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
6255 for (uint64_t I = TableSize; I > 0; --I) { in SwitchLookupTable()
6328 uint64_t TableSize = in BuildLookup() local
6412 if (SI->getNumCases() > TableSize) in ShouldBuildLookupTable()
6634 uint64_t TableSize; in SwitchToLookupTable() local
6638 TableSize = in SwitchToLookupTable()
6647 if (!DL.fitsInLegalInteger(TableSize)) in SwitchToLookupTable()
6660 assert(MaxTableSize >= TableSize && in SwitchToLookupTable()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp84 static const unsigned TableSize; member in __anonfa5191fc0111::UnmangledFuncInfo
102 assert(Index < TableSize && in toFuncId()
350 const unsigned UnmangledFuncInfo::TableSize = member in __anonfa5191fc0111::UnmangledFuncInfo
1069 for (unsigned I = 0; I != TableSize; ++I) in buildNameMap()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h248 uint32_t TableSize; // Table size in elements member
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h436 unsigned TableSize);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h144 size_t TableSize; member
H A DCodeViewDebug.cpp3596 OS.emitInt32(JumpTable.TableSize); in emitDebugInfoForJumpTables()
/freebsd/sys/contrib/edk2/Include/IndustryStandard/
H A DAcpi40.h1118 UINT32 TableSize; member
H A DAcpi50.h1789 UINT32 TableSize; member
H A DAcpi51.h1805 UINT32 TableSize; member
H A DAcpi60.h1992 UINT32 TableSize; member
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h228 uint32_t TableSize; member
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp171 encodeULEB128(Section.TableSize, SubOS); in writeSectionContent()
H A DWasmYAML.cpp56 IO.mapRequired("TableSize", Section.TableSize); in sectionMapping()
/freebsd/sys/contrib/dev/acpica/include/
H A Dactbl1.h1421 UINT32 TableSize; member
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp393 DylinkInfo.TableSize = readVaruint32(Ctx); in parseDylinkSection()
424 DylinkInfo.TableSize = readVaruint32(Ctx); in parseDylink0Section()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp3053 unsigned TableSize) { in SelectCodeCommon() argument
3195 assert(MatcherIndex < TableSize && "Invalid index"); in SelectCodeCommon()