/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ustack/ |
H A D | tst.bigstack.c | 31 void grow(int); 35 grow(int frame) in grow() function 51 grow(++frame); in grow1() 57 grow(1); in main()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/ |
H A D | Utility.h | 38 void grow(size_t N) { 108 grow(Size); 116 grow(1); 124 grow(Size); in prepend() 164 grow(N); in insert() 40 void grow(size_t N) { grow() function
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTVector.h | 169 grow(C); in push_back() 175 grow(C, N); in reserve() 192 this->grow(C, this->size()+NumInputs); in append() 205 this->grow(C, this->size()+NumInputs); in append() 235 this->grow(C); in insert() 347 this->grow(C, N); in resize() 356 void grow(const ASTContext &C, size_type MinSize = 1); 380 void ASTVector<T>::grow(const ASTContext &C, size_t MinSize) { in grow() function
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Support/ |
H A D | BumpVector.h | 175 grow(C); in push_back() 192 grow(C, size() + Cnt); in insert() 199 grow(C, N); in reserve() 209 void grow(BumpVectorContext &C, size_type MinSize = 1); 234 void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) { in grow() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | IntEqClasses.h | 42 IntEqClasses(unsigned N = 0) { grow(N); } 47 void grow(unsigned N);
|
H A D | SmallVector.h | 257 This->grow(NewSize); in reserveForParamAndGetAddressImpl() 376 void grow(size_t MinSize = 0); 447 void SmallVectorTemplateBase<T, TriviallyCopyable>::grow(size_t MinSize) { in grow() function 539 void grow(size_t MinSize = 0) { this->grow_pod(MinSize, sizeof(T)); } 561 this->grow(NumElts); in growAndAssign() 679 this->grow(N); in reserve() 1050 this->grow(RHSSize); 1104 this->grow(RHSSize);
|
H A D | IndexedMap.h | 14 /// map. A member function grow() is provided that given the value of 34 // can grow very large and SmallVector grows more efficiently as long as T 69 void grow(IndexT n) { in grow() 68 void grow(IndexT n) { grow() function
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | evport.c | 122 static int grow(struct evport_data *, int min_events); 153 if (grow(evpd, INITIAL_EVENTS_PER_GETN) < 0) { in evport_init() 167 grow(struct evport_data *data, int min_events) in grow() function 364 grow(epdp, epdp->ed_maxevents * 2); in evport_dispatch()
|
/freebsd/contrib/libevent/ |
H A D | evport.c | 122 static int grow(struct evport_data *, int min_events); 153 if (grow(evpd, INITIAL_EVENTS_PER_GETN) < 0) { in evport_init() 167 grow(struct evport_data *data, int min_events) in grow() function 364 grow(epdp, epdp->ed_maxevents * 2); in evport_dispatch()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/grow/ |
H A D | grow_pool_001_pos.ksh | 33 . $STF_SUITE/tests/functional/grow/grow.cfg
|
H A D | grow_replicas_001_pos.ksh | 34 . $STF_SUITE/tests/functional/grow/grow.cfg
|
/freebsd/lib/libc/string/ |
H A D | strstr.c | 150 size_t grow = l | 63; in twoway_strstr() local 151 const unsigned char *z2 = memchr(z, 0, grow); in twoway_strstr() 157 z += grow; in twoway_strstr()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | RegAllocGreedy.h | 91 Info.grow(Reg.id()); in setStage() 102 Info.grow(Reg.id()); in getOrInitStage() 109 Info.grow(Reg.id()); in setCascade() 133 Info.grow(Reg.id()); in setStage()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_dense_map.h | 43 grow(NumBuckets); in reserve() 392 void grow(unsigned AtLeast) { static_cast<DerivedT *>(this)->grow(AtLeast); } in grow() function 430 this->grow(NumBuckets * 2); in InsertIntoBucketImpl() 435 this->grow(NumBuckets); in InsertIntoBucketImpl() 644 void grow(unsigned AtLeast) { in grow() function
|
/freebsd/crypto/heimdal/kdc/ |
H A D | connect.c | 591 size_t grow; in grow_descr() local 593 grow = max(1024, d->len + n); in grow_descr() 594 if (d->size + grow > max_request_tcp) { in grow_descr() 596 (unsigned long)d->size + grow); in grow_descr() 600 tmp = realloc (d->buf, d->size + grow); in grow_descr() 603 (unsigned long)d->size + grow); in grow_descr() 607 d->size += grow; in grow_descr()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | TypeLocBuilder.cpp | 67 void TypeLocBuilder::grow(size_t NewCapacity) { in grow() function in TypeLocBuilder 101 grow(NewCapacity); in pushImpl()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | VirtRegMap.h | 95 void grow(); 141 grow(); in clearAllVirt()
|
H A D | FunctionLoweringInfo.h | 247 LiveOutRegInfo.grow(Reg); in AddLiveOutRegInfo() 270 LiveOutRegInfo.grow(Reg); in InvalidatePHILiveOutRegInfo()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | InterpStack.h | 36 new (grow(aligned_size<T>())) T(std::forward<Tys>(Args)...); in push() 110 void *grow(size_t Size);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | ThreadPool.h | 178 grow(requestedThreads); in asyncEnqueue() 183 void grow(int requested);
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ve/ |
H A D | grow_stack.S | 22 lea %s62, 0x13b # syscall # of grow
|
H A D | grow_stack_align.S | 22 lea %s62, 0x13b # syscall # of grow
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | HTMLLogger.css | 74 flex-grow: 1; 139 flex-grow: 1;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyInstrTable.td | 43 "table.grow\t$sz, $table, $val, $n", 44 "table.grow\t$table",
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | IntEqClasses.cpp | 25 void IntEqClasses::grow(unsigned N) { in grow() function in IntEqClasses
|