Searched refs:resize (Results 51 - 75 of 483) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DResourcePriorityQueue.h84 NumNodesSolelyBlocking.resize(SUnits->size(), 0);
H A DLiveRegUnits.h77 Units.resize(TRI.getNumRegUnits());
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h115 HashTable() { Buckets.resize(8); }
117 Buckets.resize(Capacity);
131 Buckets.resize(H->Capacity);
207 Buckets.resize(8);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWasmException.cpp93 CallSites.resize(LPadIndex + 1);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DEdgeBundles.cpp58 Blocks.resize(getNumBundles());
H A DReachingDefAnalysis.cpp30 MBBReachingDefs[MBBNumber].resize(NumRegUnits);
142 MBBReachingDefs.resize(mf.getNumBlockIDs());
147 MBBOutRegsInfos.resize(mf.getNumBlockIDs());
H A DSafeStackColoring.h61 void SetMaximum(int size) { bv.resize(size); }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBasicBlockInfo.h125 BBInfo.resize(MF.getNumBlockIDs());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.cpp42 Records.resize(RecordCountHint);
67 // Clear and then resize, to make sure existing data gets destroyed.
69 Records.resize(RecordCountHint);
167 Records.resize(NewCapacity);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
H A DSelectHelper.cpp142 read_fdset.resize((nfds / FD_SETSIZE) + 1);
146 write_fdset.resize((nfds / FD_SETSIZE) + 1);
150 error_fdset.resize((nfds / FD_SETSIZE) + 1);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
H A DMacroArgs.cpp167 PreExpArgTokens.resize(getNumMacroArguments());
249 Result.resize(CurStrLen+Tok.getLength());
262 Result.resize(CurStrLen+ActualTokLen);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.cpp425 InternalAdditionnalPressure.resize(TopPressure.MaxSetPressure.size());
533 HasLowLatencyNonWaitedParent.resize(SUnits.size(), 0);
802 CurrentTopDownReservedDependencyColoring.resize(DAGSize, 0);
803 CurrentBottomUpReservedDependencyColoring.resize(DAGSize, 0);
1191 CurrentColoring.resize(DAGSize, 0);
1217 Node2CurrentBlock.resize(DAGSize, -1);
1284 TopDownIndex2Block.resize(DAGSize);
1285 TopDownBlock2Index.resize(DAGSize);
1286 BottomUpIndex2Block.resize(DAGSize);
1457 LiveOutRegsNumUsages.resize(Block
[all...]
/freebsd-12-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DCompactUnwindPass.cpp111 _contents.resize(headerSize);
136 _contents.resize(_commonEncodingsOffset +
148 _contents.resize(_personalityArrayOffset +
160 _contents.resize(_topLevelIndexOffset + numIndexes * 3 * sizeof(uint32_t));
193 _contents.resize(_lsdaIndexOffset + numLSDAs * 2 * sizeof(uint32_t));
219 _contents.resize(curPageOffset + curPageSize);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h329 void resize(unsigned N, bool t = false) { function in class:llvm::SmallBitVector
331 getPointer()->resize(N, t);
469 resize(size() + 1, Val);
507 // FIXME BitVector::operator&= does not resize the LHS but this does
509 resize(std::max(size(), RHS.size()));
558 resize(std::max(size(), RHS.size()));
571 resize(std::max(size(), RHS.size()));
629 /// Add '1' bits from Mask to this vector. Don't resize.
638 /// Clear any bits in this vector that are set in Mask. Don't resize.
647 /// Add a bit to this vector for every '0' bit in Mask. Don't resize
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DGsymReader.cpp142 Swap->AddrOffsets.resize(Hdr->NumAddresses * Hdr->AddrOffSize);
174 Swap->AddrInfoOffsets.resize(Hdr->NumAddresses);
183 Swap->Files.resize(NumFiles);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCWinCOFFStreamer.cpp225 DF->getContents().resize(DF->getContents().size() + 2, 0);
243 DF->getContents().resize(DF->getContents().size() + 4, 0);
262 DF->getContents().resize(DF->getContents().size() + 4, 0);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DScheduler.cpp151 PendingSet.resize(PendingSet.size() - PromotedElements);
188 WaitSet.resize(WaitSet.size() - RemovedElements);
240 IssuedSet.resize(IssuedSet.size() - RemovedElements);
/freebsd-12-stable/contrib/llvm-project/libcxx/src/
H A Dstring.cpp368 s.resize( used );
375 s.resize(available);
390 s.resize(s.capacity());
402 s.resize(s.capacity());
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringList.h53 void SetSize(size_t n) { m_strings.resize(n); }
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/
H A DLZMA.cpp125 Uncompressed.resize(*uncompressedSize);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandObjectRegexCommand.cpp74 m_entries.resize(m_entries.size() + 1);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
H A DSymbolSize.cpp90 Ret.resize(SymNum);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMemory.cpp33 m_reg_valid.resize(num_regs);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationHistory.cpp25 m_packets.resize(size);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp349 Content.resize(Lines.size());
351 ContentColumn.resize(Lines.size());
354 Tokens.resize(Lines.size());
738 Content.resize(Lines.size());
739 ContentColumn.resize(Lines.size());
740 OriginalContentColumn.resize(Lines.size());
741 Tokens.resize(Lines.size());
742 Prefix.resize(Lines.size());
743 OriginalPrefix.resize(Lines.size());

Completed in 367 milliseconds

1234567891011>>