/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | CodeGenMapTable.cpp | 211 void emitBinSearch(raw_ostream &OS, unsigned TableSize); 216 void emitMapFuncBody(raw_ostream &OS, unsigned TableSize); 367 unsigned TableSize = 0; in emitBinSearchTable() local 394 TableSize++; in emitBinSearchTable() 398 if (!TableSize) { in emitBinSearchTable() 405 return TableSize; in emitBinSearchTable() 413 void MapTableEmitter::emitBinSearch(raw_ostream &OS, unsigned TableSize) { in emitBinSearch() argument 416 OS << " unsigned end = " << TableSize << ";\n"; in emitBinSearch() 435 void MapTableEmitter::emitMapFuncBody(raw_ostream &OS, unsigned TableSize) { in emitMapFuncBody() argument 443 emitBinSearch(OS, TableSize); in emitMapFuncBody() [all …]
|
H A D | AsmWriterEmitter.cpp | 445 unsigned TableSize = std::min(llvm::bit_floor(BytesNeeded), 4u); in EmitGetMnemonic() local 446 BytesNeeded -= TableSize; in EmitGetMnemonic() 447 TableSize *= 8; // Convert to bits; in EmitGetMnemonic() 448 uint64_t Mask = (1ULL << TableSize) - 1; in EmitGetMnemonic() 449 O << " static const uint" << TableSize << "_t OpInfo" << Table in EmitGetMnemonic() 463 Shift += TableSize; in EmitGetMnemonic()
|
/freebsd/contrib/dialog/ |
H A D | rc.c | 64 #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 D | dlg_internals.h | 29 #define TableSize(name) (sizeof(name)/sizeof((name)[0])) macro
|
H A D | dlg_keys.c | 412 #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 D | dialog.c | 666 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 D | util.c | 555 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 D | SimplifyCFG.cpp | 6199 Module &M, uint64_t TableSize, ConstantInt *Offset, 6209 static bool WouldFitInRegister(const DataLayout &DL, uint64_t TableSize, 6254 Module &M, uint64_t TableSize, ConstantInt *Offset, in SwitchLookupTable() argument 6258 assert(TableSize >= Values.size() && "Can't fit values in table!"); in SwitchLookupTable() 6266 SmallVector<Constant *, 64> TableContents(TableSize); in SwitchLookupTable() 6280 if (Values.size() < TableSize) { in SwitchLookupTable() 6284 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable() 6309 assert(TableSize >= 2 && "Should be a SingleValue table."); in SwitchLookupTable() 6311 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable() 6338 (void)M.smul_ov(APInt(M.getBitWidth(), TableSize - 1), MayWrap); in SwitchLookupTable() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULibFunc.cpp | 84 static const unsigned TableSize; member in __anonbcd55a340111::UnmangledFuncInfo 102 assert(Index < TableSize && in toFuncId() 350 const unsigned UnmangledFuncInfo::TableSize = member in __anonbcd55a340111::UnmangledFuncInfo 1069 for (unsigned I = 0; I != TableSize; ++I) in buildNameMap()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | SelectionDAGISel.h | 445 unsigned TableSize);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | Wasm.h | 285 uint32_t TableSize; // Table size in elements member
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | CodeViewDebug.h | 144 size_t TableSize; member
|
/freebsd/sys/contrib/edk2/Include/IndustryStandard/ |
H A D | Acpi40.h | 1118 UINT32 TableSize; member
|
H A D | Acpi50.h | 1789 UINT32 TableSize; member
|
H A D | Acpi51.h | 1805 UINT32 TableSize; member
|
H A D | Acpi60.h | 1992 UINT32 TableSize; member
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | WasmYAML.h | 228 uint32_t TableSize; member
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | WasmEmitter.cpp | 171 encodeULEB128(Section.TableSize, SubOS); in writeSectionContent()
|
H A D | WasmYAML.cpp | 57 IO.mapRequired("TableSize", Section.TableSize); in sectionMapping()
|
/freebsd/sys/contrib/dev/acpica/include/ |
H A D | actbl1.h | 1432 UINT32 TableSize; member
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | WasmObjectFile.cpp | 435 DylinkInfo.TableSize = readVaruint32(Ctx); in parseDylinkSection() 466 DylinkInfo.TableSize = readVaruint32(Ctx); in parseDylink0Section()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGISel.cpp | 3187 unsigned TableSize) { in SelectCodeCommon() argument 3338 assert(MatcherIndex < TableSize && "Invalid index"); in SelectCodeCommon()
|