Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp211 void emitBinSearch(raw_ostream &OS, unsigned TableSize);
216 void emitMapFuncBody(raw_ostream &OS, unsigned TableSize);
368 unsigned TableSize = 0; in emitBinSearchTable() local
393 TableSize++; in emitBinSearchTable()
397 if (!TableSize) { in emitBinSearchTable()
402 return TableSize; in emitBinSearchTable()
413 OS << " unsigned end = " << TableSize << ";\n"; in emitBinSearch()
433 unsigned TableSize) { in emitMapFuncBody() argument
441 emitBinSearch(OS, TableSize); in emitMapFuncBody()
488 unsigned TableSize = emitBinSearchTable(OS); in emitTablesWithFunc() local
[all …]
H A DAsmWriterEmitter.cpp416 unsigned TableSize = std::min(1 << Log2_32(BytesNeeded), 4); 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-13.1/contrib/dialog/
H A Ddlg_keys.c31 #define TableSize(name) (sizeof(name)/sizeof(name[0])) macro
330 #define COUNT_CURSES TableSize(curses_names)
429 #define COUNT_DIALOG TableSize(dialog_names)
620 for (n = 0; n < TableSize(escaped_letters); ++n) { in decode_escaped()
637 for (n = 0; n < TableSize(escaped_letters); ++n) { in encode_escaped()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp5465 if (Values.size() < TableSize) { in SwitchLookupTable()
5469 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
5493 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
5526 for (uint64_t I = TableSize; I > 0; --I) { in SwitchLookupTable()
5592 uint64_t TableSize = in BuildLookup() local
5620 if (TableSize >= UINT_MAX / IT->getBitWidth()) in WouldFitInRegister()
5631 if (SI->getNumCases() > TableSize || TableSize >= UINT64_MAX / 10) in ShouldBuildLookupTable()
5665 return SI->getNumCases() * 10 >= TableSize * 4; in ShouldBuildLookupTable()
5826 bool TableHasHoles = (NumResults < TableSize); in SwitchToLookupTable()
5840 if (!DL.fitsInLegalInteger(TableSize)) in SwitchToLookupTable()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp83 static const unsigned TableSize; member in __anon5e9beb680111::UnmangledFuncInfo
101 assert(Index < TableSize && in toFuncId()
349 const unsigned UnmangledFuncInfo::TableSize = member in __anon5e9beb680111::UnmangledFuncInfo
1005 for (unsigned I = 0; I != TableSize; ++I) in buildNameMap()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h298 unsigned TableSize);
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h42 uint32_t TableSize; // Table size in elements member
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h212 uint32_t TableSize; member
/freebsd-13.1/sys/contrib/edk2/Include/IndustryStandard/
H A DAcpi40.h1118 UINT32 TableSize; member
H A DAcpi51.h1805 UINT32 TableSize; member
H A DAcpi50.h1789 UINT32 TableSize; member
H A DAcpi60.h1992 UINT32 TableSize; member
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Dactbl1.h1036 UINT32 TableSize; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp55 IO.mapRequired("TableSize", Section.TableSize); in sectionMapping()
H A DWasmEmitter.cpp162 encodeULEB128(Section.TableSize, OS); in writeSectionContent()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2840 unsigned TableSize) { in SelectCodeCommon() argument
2970 assert(MatcherIndex < TableSize && "Invalid index"); in SelectCodeCommon()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp346 DylinkInfo.TableSize = readVaruint32(Ctx); in parseDylinkSection()