Home
last modified time | relevance | path

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

12

/external/libcxx/benchmarks/
Dordered_set.bench.cpp50 TestSets makeTestingSets(size_t TableSize, size_t NumTables, HitType Hit, in makeTestingSets() argument
55 for (uint64_t I = 0; I < TableSize; ++I) { in makeTestingSets()
66 size_t TableSize; member
68 Base(size_t T, size_t N) : TableSize(T), NumTables(N) {} in Base()
71 size_t Total = TableSize * NumTables; in skip()
76 return "_TableSize" + std::to_string(TableSize) + "_NumTables" + in baseName()
86 std::vector<uint64_t> Keys(TableSize); in run()
90 while (State.KeepRunningBatch(TableSize * NumTables)) { in run()
110 auto Data = makeTestingSets(TableSize, NumTables, Hit(), Access()); in run()
112 while (State.KeepRunningBatch(TableSize * NumTables)) { in run()
[all …]
/external/llvm-project/libcxx/benchmarks/
Dordered_set.bench.cpp49 TestSets makeTestingSets(size_t TableSize, size_t NumTables, HitType Hit, in makeTestingSets() argument
54 for (uint64_t I = 0; I < TableSize; ++I) { in makeTestingSets()
65 size_t TableSize; member
67 Base(size_t T, size_t N) : TableSize(T), NumTables(N) {} in Base()
70 size_t Total = TableSize * NumTables; in skip()
75 return "_TableSize" + std::to_string(TableSize) + "_NumTables" + in baseName()
85 std::vector<uint64_t> Keys(TableSize); in run()
89 while (State.KeepRunningBatch(TableSize * NumTables)) { in run()
109 auto Data = makeTestingSets(TableSize, NumTables, Hit(), Access()); in run()
111 while (State.KeepRunningBatch(TableSize * NumTables)) { in run()
[all …]
/external/llvm/utils/TableGen/
DCodeGenMapTable.cpp222 void emitBinSearch(raw_ostream &OS, unsigned TableSize);
227 void emitMapFuncBody(raw_ostream &OS, unsigned TableSize);
374 unsigned TableSize = 0; in emitBinSearchTable() local
399 TableSize++; in emitBinSearchTable()
403 if (!TableSize) { in emitBinSearchTable()
408 return TableSize; in emitBinSearchTable()
416 void MapTableEmitter::emitBinSearch(raw_ostream &OS, unsigned TableSize) { in emitBinSearch() argument
419 OS << " unsigned end = " << TableSize << ";\n"; in emitBinSearch()
439 unsigned TableSize) { in emitMapFuncBody() argument
447 emitBinSearch(OS, TableSize); in emitMapFuncBody()
[all …]
DAsmWriterEmitter.cpp378 unsigned TableSize = std::min(1 << Log2_32(BytesNeeded), 4); in EmitPrintInstruction() local
379 BytesNeeded -= TableSize; in EmitPrintInstruction()
380 TableSize *= 8; // Convert to bits; in EmitPrintInstruction()
381 uint64_t Mask = (1ULL << TableSize) - 1; in EmitPrintInstruction()
382 O << " static const uint" << TableSize << "_t OpInfo" << Table in EmitPrintInstruction()
396 Shift += TableSize; in EmitPrintInstruction()
/external/llvm-project/llvm/utils/TableGen/
DCodeGenMapTable.cpp221 void emitBinSearch(raw_ostream &OS, unsigned TableSize);
226 void emitMapFuncBody(raw_ostream &OS, unsigned TableSize);
378 unsigned TableSize = 0; in emitBinSearchTable() local
403 TableSize++; in emitBinSearchTable()
407 if (!TableSize) { in emitBinSearchTable()
412 return TableSize; in emitBinSearchTable()
420 void MapTableEmitter::emitBinSearch(raw_ostream &OS, unsigned TableSize) { in emitBinSearch() argument
423 OS << " unsigned end = " << TableSize << ";\n"; in emitBinSearch()
443 unsigned TableSize) { in emitMapFuncBody() argument
451 emitBinSearch(OS, TableSize); in emitMapFuncBody()
[all …]
DAsmWriterEmitter.cpp417 unsigned TableSize = std::min(1 << Log2_32(BytesNeeded), 4); in EmitGetMnemonic() local
418 BytesNeeded -= TableSize; in EmitGetMnemonic()
419 TableSize *= 8; // Convert to bits; in EmitGetMnemonic()
420 uint64_t Mask = (1ULL << TableSize) - 1; in EmitGetMnemonic()
421 O << " static const uint" << TableSize << "_t OpInfo" << Table in EmitGetMnemonic()
435 Shift += TableSize; in EmitGetMnemonic()
/external/mesa3d/src/hgl/
DGLDispatcher.h38 uint32 TableSize();
71 BGLDispatcher::TableSize() in TableSize() function
/external/llvm-project/lld/test/wasm/
Dshared-needed.ll24 ; SO1-NEXT: TableSize: 0
34 ; SO2-NEXT: TableSize: 0
Dpie.ll38 ; CHECK-NEXT: TableSize: 1
Dshared.ll57 ; CHECK-NEXT: TableSize: 2
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp4981 Module &M, uint64_t TableSize, ConstantInt *Offset,
4991 static bool WouldFitInRegister(const DataLayout &DL, uint64_t TableSize,
5035 Module &M, uint64_t TableSize, ConstantInt *Offset, in SwitchLookupTable() argument
5039 assert(TableSize >= Values.size() && "Can't fit values in table!"); in SwitchLookupTable()
5047 SmallVector<Constant *, 64> TableContents(TableSize); in SwitchLookupTable()
5061 if (Values.size() < TableSize) { in SwitchLookupTable()
5065 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
5087 assert(TableSize >= 2 && "Should be a SingleValue table."); in SwitchLookupTable()
5089 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
5119 if (WouldFitInRegister(DL, TableSize, ValueType)) { in SwitchLookupTable()
[all …]
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp4444 Module &M, uint64_t TableSize, ConstantInt *Offset,
4454 static bool WouldFitInRegister(const DataLayout &DL, uint64_t TableSize,
4497 Module &M, uint64_t TableSize, ConstantInt *Offset, in SwitchLookupTable() argument
4503 assert(TableSize >= Values.size() && "Can't fit values in table!"); in SwitchLookupTable()
4511 SmallVector<Constant *, 64> TableContents(TableSize); in SwitchLookupTable()
4525 if (Values.size() < TableSize) { in SwitchLookupTable()
4529 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
4551 assert(TableSize >= 2 && "Should be a SingleValue table."); in SwitchLookupTable()
4553 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
4583 if (WouldFitInRegister(DL, TableSize, ValueType)) { in SwitchLookupTable()
[all …]
/external/llvm-project/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp5135 Module &M, uint64_t TableSize, ConstantInt *Offset,
5145 static bool WouldFitInRegister(const DataLayout &DL, uint64_t TableSize,
5189 Module &M, uint64_t TableSize, ConstantInt *Offset, in SwitchLookupTable() argument
5193 assert(TableSize >= Values.size() && "Can't fit values in table!"); in SwitchLookupTable()
5201 SmallVector<Constant *, 64> TableContents(TableSize); in SwitchLookupTable()
5215 if (Values.size() < TableSize) { in SwitchLookupTable()
5219 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
5241 assert(TableSize >= 2 && "Should be a SingleValue table."); in SwitchLookupTable()
5243 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
5273 if (WouldFitInRegister(DL, TableSize, ValueType)) { in SwitchLookupTable()
[all …]
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp729 size_t TableSize = Succs.size() * Preds.size(); in buildEdgeLookupTable() local
731 ArrayType *EdgeTableTy = ArrayType::get(Int64PtrTy, TableSize); in buildEdgeLookupTable()
733 std::unique_ptr<Constant * []> EdgeTable(new Constant *[TableSize]); in buildEdgeLookupTable()
735 for (size_t i = 0; i != TableSize; ++i) in buildEdgeLookupTable()
759 makeArrayRef(&EdgeTable[0],TableSize)), in buildEdgeLookupTable()
/external/eigen/bench/
Danalyze-blocking-sizes.cpp356 const size_t TableSize = NumSizes * NumSizes * NumSizes; in dump_table_for_subset() local
359 cout << " static const unsigned short data[" << TableSize << "] = {"; in dump_table_for_subset()
390 if (i != TableSize) { in dump_table_for_subset()
391 cerr << endl << "Wrote " << i << " table entries, expected " << TableSize << endl; in dump_table_for_subset()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPULibFunc.cpp79 static const unsigned TableSize; member in __anonabbc013f0111::UnmangledFuncInfo
97 assert(Index < TableSize && in toFuncId()
345 const unsigned UnmangledFuncInfo::TableSize = member in __anonabbc013f0111::UnmangledFuncInfo
1002 for (unsigned I = 0; I != TableSize; ++I) in buildNameMap()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPULibFunc.cpp80 static const unsigned TableSize; member in __anon0885f64b0111::UnmangledFuncInfo
98 assert(Index < TableSize && in toFuncId()
346 const unsigned UnmangledFuncInfo::TableSize = member in __anon0885f64b0111::UnmangledFuncInfo
1001 for (unsigned I = 0; I != TableSize; ++I) in buildNameMap()
/external/llvm/include/llvm/CodeGen/
DSelectionDAGISel.h251 unsigned TableSize);
/external/llvm-project/llvm/tools/obj2yaml/
Dwasm2yaml.cpp60 DylinkSec->TableSize = Info.TableSize; in dumpCustomSection()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DSelectionDAGISel.h305 unsigned TableSize);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DWasm.h41 uint32_t TableSize; // Table size in elements member
/external/llvm-project/llvm/include/llvm/CodeGen/
DSelectionDAGISel.h297 unsigned TableSize);
/external/llvm-project/llvm/include/llvm/BinaryFormat/
DWasm.h42 uint32_t TableSize; // Table size in elements member
/external/capstone/contrib/sysz_update/
D0005-capstone-generate-GenAsmWriter.inc.patch69 Shift += TableSize;
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DWasmYAML.h210 uint32_t TableSize; member

12