Searched refs:grow (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ustack/
H A Dtst.bigstack.c36 grow(int frame) function
52 grow(++frame);
58 grow(1);
/freebsd-10.1-release/contrib/llvm/include/llvm/ADT/
H A DIntEqClasses.h42 IntEqClasses(unsigned N = 0) : NumClasses(0) { grow(N); }
44 /// grow - Increase capacity to hold 0 .. N-1, putting new integers in unique
47 void grow(unsigned N);
49 /// clear - Clear all classes so that grow() will assign a unique class to
H A DSmallVector.h41 /// grow_pod - This is an implementation of the grow() method which only works
229 /// grow - Grow the allocated memory (without initializing new
233 void grow(size_t MinSize = 0);
243 this->grow();
255 this->grow();
268 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) { function in class:llvm::SmallVectorTemplateBase
271 // Always grow, even from zero.
344 /// grow - double the size of the allocated memory, guaranteeing space for at
346 void grow(size_t MinSize = 0) { function in class:llvm::SmallVectorTemplateBase
357 this->grow();
[all...]
H A DIndexedMap.h14 // map. A member function grow() is provided that given the value of
65 void grow(IndexT n) { function in class:llvm::IndexedMap
H A DDenseMap.h75 grow(Size);
388 void grow(unsigned AtLeast) { function in class:llvm::DenseMapBase
389 static_cast<DerivedT *>(this)->grow(AtLeast);
428 // grow the table.
438 this->grow(NumBuckets * 2);
442 this->grow(NumBuckets);
618 void grow(unsigned AtLeast) { function in class:llvm::DenseMap
847 void grow(unsigned AtLeast) { function in class:llvm::SmallDenseMap
H A DBitVector.h213 grow(N);
232 grow(N);
547 void grow(unsigned NewSize) {
/freebsd-10.1-release/contrib/texinfo/info/
H A Dinfo.h60 array where POINTER should be added. GROW is the number of slots to grow
63 #define add_pointer_to_array(pointer, idx, array, slots, grow, type) \
66 array = (type *)(xrealloc (array, (slots += grow) * sizeof (type))); \
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Analysis/Support/
H A DBumpVector.h156 grow(C);
173 grow(C, size() + Cnt);
180 grow(C, N);
188 /// grow - double the size of the allocated memory, guaranteeing space for at
190 void grow(BumpVectorContext &C, size_type MinSize = 1);
215 void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) { function in class:clang::BumpVector
/freebsd-10.1-release/contrib/llvm/include/llvm/CodeGen/
H A DVirtRegMap.h88 void grow();
126 grow();
H A DFunctionLoweringInfo.h179 LiveOutRegInfo.grow(Reg);
199 LiveOutRegInfo.grow(Reg);
H A DLiveIntervalAnalysis.h123 VirtRegIntervals.grow(Reg);
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTVector.h173 grow(C);
179 grow(C, N);
197 this->grow(C, this->size()+NumInputs);
211 this->grow(C, this->size()+NumInputs);
241 this->grow(C);
352 this->grow(C, N);
359 /// grow - double the size of the allocated memory, guaranteeing space for at
361 void grow(const ASTContext &C, size_type MinSize = 1);
384 void ASTVector<T>::grow(const ASTContext &C, size_t MinSize) { function in class:clang::ASTVector
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DTypeLocBuilder.cpp45 void TypeLocBuilder::grow(size_t NewCapacity) { function in class:TypeLocBuilder
73 // If we need to grow, grow by a factor of 2.
79 grow(NewCapacity);
H A DTypeLocBuilder.h62 grow(Requested);
133 void grow(size_t NewCapacity);
/freebsd-10.1-release/contrib/llvm/lib/Support/
H A DIntEqClasses.cpp25 void IntEqClasses::grow(unsigned N) { function in class:IntEqClasses
26 assert(NumClasses == 0 && "grow() called after compress().");
/freebsd-10.1-release/contrib/ntp/sntp/libevent/
H A Devport.c49 * Helper functions are used: grow() grows the file descriptor array as
122 static int grow(struct evport_data *, int min_events);
153 if (grow(evpd, INITIAL_EVENTS_PER_GETN) < 0) {
167 grow(struct evport_data *data, int min_events) function
364 grow(epdp, epdp->ed_maxevents * 2);
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/
H A DEdgeBundles.cpp42 EC.grow(2 * MF->getNumBlockIDs());
H A DVirtRegMap.cpp63 grow();
67 void VirtRegMap::grow() { function in class:VirtRegMap
H A DMachineRegisterInfo.cpp75 // Stop early if there is no room to grow.
111 VRegInfo.grow(Reg);
113 RegAllocHints.grow(Reg);
H A DLiveRangeEdit.cpp402 VRM->grow();
/freebsd-10.1-release/sys/geom/vinum/
H A Dgeom_vinum_raid5.c346 int i, psdno, sdno, type, grow; local
368 grow = 1;
371 grow = 0;
379 &sdno, &psdno, grow);
442 if (grow && s->flags & GV_SD_GROW)
481 if (grow && s->flags & GV_SD_GROW)
/freebsd-10.1-release/crypto/heimdal/kdc/
H A Dconnect.c591 size_t grow; local
593 grow = max(1024, d->len + n);
594 if (d->size + grow > max_request_tcp) {
596 (unsigned long)d->size + grow);
600 tmp = realloc (d->buf, d->size + grow);
603 (unsigned long)d->size + grow);
607 d->size += grow;
/freebsd-10.1-release/usr.bin/bc/
H A Dbc.y79 static void grow(void);
767 grow(void)
788 grow();
798 grow();
815 grow();
820 grow();
/freebsd-10.1-release/contrib/llvm/lib/Support/Unix/
H A DSignals.inc220 // rather than inside of the signal handler. If we see the vector grow, we
/freebsd-10.1-release/contrib/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp153 OperandMap.grow(NumMIOperands);

Completed in 235 milliseconds

12