Searched refs:TableSize (Results 1 - 8 of 8) sorted by relevance

/freebsd-11.0-release/contrib/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp222 void emitBinSearch(raw_ostream &OS, unsigned TableSize);
227 void emitMapFuncBody(raw_ostream &OS, unsigned TableSize);
364 unsigned TableSize = 0; local
389 TableSize++;
393 if (!TableSize) {
398 return TableSize;
406 void MapTableEmitter::emitBinSearch(raw_ostream &OS, unsigned TableSize) { argument
409 OS << " unsigned end = " << TableSize << ";\n"; local
429 unsigned TableSize) {
437 emitBinSearch(OS, TableSize);
428 emitMapFuncBody(raw_ostream &OS, unsigned TableSize) argument
484 unsigned TableSize = emitBinSearchTable(OS); local
[all...]
H A DAsmWriterEmitter.cpp408 unsigned TableSize = std::min(1 << Log2_32(BytesNeeded), 4); local
409 BytesNeeded -= TableSize;
410 TableSize *= 8; // Convert to bits;
411 uint64_t Mask = (1ULL << TableSize) - 1;
412 O << " static const uint" << TableSize << "_t OpInfo" << Table
426 Shift += TableSize;
/freebsd-11.0-release/contrib/top/
H A DConfigure9 TableSize bindir mandir manext mansty \
72 set TableSize = 0
109 Table Size $TableSize
337 if ($TableSize == 0) then
338 set TableSize = $pr
341 ./getans "Enter the hash table size" integer "$TableSize" .$$
342 set TableSize = `cat .$$`
522 -e "s|%tablesize%|$TableSize|" \
538 -e "s|%TableSize%|$TableSize|" \
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp4248 Module &M, uint64_t TableSize, ConstantInt *Offset,
4256 /// Return true if a table with TableSize elements of
4258 static bool WouldFitInRegister(const DataLayout &DL, uint64_t TableSize,
4301 Module &M, uint64_t TableSize, ConstantInt *Offset,
4307 assert(TableSize >= Values.size() && "Can't fit values in table!");
4315 SmallVector<Constant*, 64> TableContents(TableSize);
4330 if (Values.size() < TableSize) {
4334 for (uint64_t I = 0; I < TableSize; ++I) {
4356 assert(TableSize >= 2 && "Should be a SingleValue table.");
4358 for (uint64_t I = 0; I < TableSize;
4300 SwitchLookupTable( Module &M, uint64_t TableSize, ConstantInt *Offset, const SmallVectorImpl<std::pair<ConstantInt *, Constant *>> &Values, Constant *DefaultValue, const DataLayout &DL) argument
4456 uint64_t TableSize = Array->getInitializer()->getType() local
4473 WouldFitInRegister(const DataLayout &DL, uint64_t TableSize, Type *ElementType) argument
4491 ShouldBuildLookupTable(SwitchInst *SI, uint64_t TableSize, const TargetTransformInfo &TTI, const DataLayout &DL, const SmallDenseMap<PHINode *, Type *> &ResultTypes) argument
4682 uint64_t TableSize = RangeSpread.getLimitedValue() + 1; local
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h241 unsigned TableSize);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp725 size_t TableSize = Succs.size() * Preds.size(); local
727 ArrayType *EdgeTableTy = ArrayType::get(Int64PtrTy, TableSize);
729 std::unique_ptr<Constant * []> EdgeTable(new Constant *[TableSize]);
731 for (size_t i = 0; i != TableSize; ++i)
755 makeArrayRef(&EdgeTable[0],TableSize)),
/freebsd-11.0-release/sys/contrib/dev/acpica/include/
H A Dactbl1.h319 UINT32 TableSize; member in struct:acpi_einj_trigger
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2598 unsigned TableSize) {
2713 assert(MatcherIndex < TableSize && "Invalid index");
2597 SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable, unsigned TableSize) argument

Completed in 201 milliseconds