Home
last modified time | relevance | path

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

/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/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/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DCodeGenMapTable.cpp222 void emitBinSearch(raw_ostream &OS, unsigned TableSize);
227 void emitMapFuncBody(raw_ostream &OS, unsigned TableSize);
379 unsigned TableSize = 0; in emitBinSearchTable() local
404 TableSize++; in emitBinSearchTable()
408 if (!TableSize) { in emitBinSearchTable()
413 return TableSize; in emitBinSearchTable()
421 void MapTableEmitter::emitBinSearch(raw_ostream &OS, unsigned TableSize) { in emitBinSearch() argument
424 OS << " unsigned end = " << TableSize << ";\n"; in emitBinSearch()
444 unsigned TableSize) { in emitMapFuncBody() argument
452 emitBinSearch(OS, TableSize); in emitMapFuncBody()
[all …]
DAsmWriterEmitter.cpp396 unsigned TableSize = std::min(1 << Log2_32(BytesNeeded), 4); in EmitPrintInstruction() local
397 BytesNeeded -= TableSize; in EmitPrintInstruction()
398 TableSize *= 8; // Convert to bits; in EmitPrintInstruction()
399 uint64_t Mask = (1ULL << TableSize) - 1; in EmitPrintInstruction()
400 O << " static const uint" << TableSize << "_t OpInfo" << Table in EmitPrintInstruction()
414 Shift += TableSize; in EmitPrintInstruction()
/external/mesa3d/src/hgl/
DGLDispatcher.h38 uint32 TableSize();
71 BGLDispatcher::TableSize() in TableSize() function
/external/swiftshader/third_party/LLVM/lib/MC/
DSubtargetFeature.cpp344 size_t TableSize) { in getItinerary() argument
347 for (size_t i = 1; i < TableSize; i++) { in getItinerary()
353 const SubtargetInfoKV *Entry = Find(CPU, Table, TableSize); in getItinerary()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp4870 Module &M, uint64_t TableSize, ConstantInt *Offset,
4880 static bool WouldFitInRegister(const DataLayout &DL, uint64_t TableSize,
4924 Module &M, uint64_t TableSize, ConstantInt *Offset, in SwitchLookupTable() argument
4928 assert(TableSize >= Values.size() && "Can't fit values in table!"); in SwitchLookupTable()
4936 SmallVector<Constant *, 64> TableContents(TableSize); in SwitchLookupTable()
4950 if (Values.size() < TableSize) { in SwitchLookupTable()
4954 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
4976 assert(TableSize >= 2 && "Should be a SingleValue table."); in SwitchLookupTable()
4978 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
5008 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/swiftshader/third_party/LLVM/include/llvm/MC/
DSubtargetFeature.h100 const SubtargetInfoKV *Table, size_t TableSize);
/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-7.0/llvm/lib/Target/AMDGPU/
DAMDGPULibFunc.cpp78 static const unsigned TableSize; member in __anon20c452970111::UnmangledFuncInfo
84 for (unsigned I = 0; I != TableSize; ++I) in NameMap()
105 assert(Index < TableSize && "Invalid unmangled library function"); in toFuncId()
352 const unsigned UnmangledFuncInfo::TableSize = member in __anon20c452970111::UnmangledFuncInfo
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp784 size_t TableSize = Succs.size() * Preds.size(); in buildEdgeLookupTable() local
786 ArrayType *EdgeTableTy = ArrayType::get(Int64PtrTy, TableSize); in buildEdgeLookupTable()
788 std::unique_ptr<Constant * []> EdgeTable(new Constant *[TableSize]); in buildEdgeLookupTable()
790 for (size_t i = 0; i != TableSize; ++i) in buildEdgeLookupTable()
814 makeArrayRef(&EdgeTable[0],TableSize)), in buildEdgeLookupTable()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DSelectionDAGISel.h267 unsigned TableSize);
/external/llvm/include/llvm/CodeGen/
DSelectionDAGISel.h251 unsigned TableSize);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DSelectionDAGISel.h281 unsigned TableSize);
/external/protobuf/src/google/protobuf/
Dmap.h720 n = TableSize(n); in InnerMap()
1281 size_type TableSize(size_type n) { in TableSize() function
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp2020 unsigned TableSize) { in SelectCodeCommon() argument
2131 assert(MatcherIndex < TableSize && "Invalid index"); in SelectCodeCommon()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp2731 unsigned TableSize) { in SelectCodeCommon() argument
2854 assert(MatcherIndex < TableSize && "Invalid index"); in SelectCodeCommon()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp2888 unsigned TableSize) { in SelectCodeCommon() argument
3009 assert(MatcherIndex < TableSize && "Invalid index"); in SelectCodeCommon()