Home
last modified time | relevance | path

Searched refs:CurSize (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DIntervalMap.h344 if (CurSize[n] == NewSize[n]) in adjustSiblingSizes()
347 int d = Node[n]->adjustFromLeftSib(CurSize[n], *Node[m], CurSize[m], in adjustSiblingSizes()
349 CurSize[m] -= d; in adjustSiblingSizes()
350 CurSize[n] += d; in adjustSiblingSizes()
362 if (CurSize[n] == NewSize[n]) in adjustSiblingSizes()
365 int d = Node[m]->adjustFromLeftSib(CurSize[m], *Node[n], CurSize[n], in adjustSiblingSizes()
367 CurSize[m] += d; in adjustSiblingSizes()
368 CurSize[n] -= d; in adjustSiblingSizes()
1981 unsigned CurSize[4]; in overflow() local
2010 CurSize[Nodes] = CurSize[NewNode]; in overflow()
[all …]
H A DSmallVector.h1002 size_t CurSize = this->size(); variable
1003 if (CurSize >= RHSSize) {
1025 CurSize = 0;
1027 } else if (CurSize) {
1033 this->uninitialized_copy(RHS.begin()+CurSize, RHS.end(),
1034 this->begin()+CurSize);
1055 size_t CurSize = this->size(); variable
1056 if (CurSize >= RHSSize) {
1079 CurSize = 0;
1081 } else if (CurSize) {
[all …]
/llvm-project-15.0.7/clang/include/clang/Analysis/Support/
H A DBumpVector.h227 size_t CurSize = size(); in grow() local
243 memcpy(NewElts, Begin, CurSize * sizeof(T)); in grow()
250 End = NewElts+CurSize; in grow()
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp261 unsigned CurSize; in ParseSectionName() local
263 CurSize = getTok().getIdentifier().size() + 2; in ParseSectionName()
266 CurSize = getTok().getIdentifier().size(); in ParseSectionName()
269 CurSize = getTok().getString().size(); in ParseSectionName()
272 Size += CurSize; in ParseSectionName()
276 if (PrevLoc.getPointer() + CurSize != getTok().getLoc().getPointer()) in ParseSectionName()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTVector.h382 size_t CurSize = size(); in grow() local
398 memcpy(NewElts, Begin, CurSize * sizeof(T)); in grow()
404 End = NewElts+CurSize; in grow()
/llvm-project-15.0.7/llvm/lib/FuzzMutate/
H A DIRMutator.cpp59 void IRMutator::mutateModule(Module &M, int Seed, size_t CurSize, in mutateModule() argument
69 Strategy->getWeight(CurSize, MaxSize, RS.totalWeight())); in mutateModule()
/llvm-project-15.0.7/llvm/include/llvm/FuzzMutate/
H A DIRMutator.h73 void mutateModule(Module &M, int Seed, size_t CurSize, size_t MaxSize);
/llvm-project-15.0.7/llvm/lib/Support/
H A DIntervalMap.cpp121 const unsigned *CurSize, unsigned NewSize[], in distribute() argument
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonVectorCombine.cpp1151 int CurSize = ValTy->getElementCount().getFixedValue(); in vresize() local
1152 if (CurSize == NewSize) in vresize()
1155 if (CurSize > NewSize) in vresize()
1159 std::iota(SMask.begin(), SMask.begin() + CurSize, 0); in vresize()
1160 std::fill(SMask.begin() + CurSize, SMask.end(), CurSize); in vresize()
1161 Value *PadVec = Builder.CreateVectorSplat(CurSize, Pad); in vresize()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/
H A DClangTidyOptions.cpp285 auto CurSize = CurOptions.size(); in addRawFileOptions() local
319 std::reverse(CurOptions.begin() + CurSize, CurOptions.end()); in addRawFileOptions()
/llvm-project-15.0.7/openmp/libomptarget/plugins/cuda/src/
H A Drtl.cpp249 auto CurSize = Resources.size(); in resize() local
250 assert(Size > CurSize && "Unexpected smaller size"); in resize()
253 for (auto I = CurSize; I < Size; ++I) { in resize()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExprConstant.cpp1087 unsigned CurSize = CGM.getDataLayout().getTypeAllocSize(C->getType()); in VisitCastExpr() local
1090 assert(CurSize <= TotalSize && "Union size mismatch!"); in VisitCastExpr()
1091 if (unsigned NumPadBytes = TotalSize - CurSize) { in VisitCastExpr()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp20682 for (unsigned CurSize = Shuffles.size(); CurSize > 1; CurSize /= 2) { in reduceBuildVecToShuffle() local
20683 if (CurSize % 2) { in reduceBuildVecToShuffle()
20684 Shuffles[CurSize] = DAG.getUNDEF(VT); in reduceBuildVecToShuffle()
20685 CurSize++; in reduceBuildVecToShuffle()
20687 for (unsigned In = 0, Len = CurSize / 2; In < Len; ++In) { in reduceBuildVecToShuffle()