HomeSort by: relevance | last modified time | path
    Searched defs:grow (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Support/
IntEqClasses.cpp 25 void IntEqClasses::grow(unsigned N) { function in class:IntEqClasses
26 assert(NumClasses == 0 && "grow() called after compress().");
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
InterpStack.cpp 29 void *InterpStack::grow(size_t Size) { function in class:InterpStack
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TypeLocBuilder.cpp 44 void TypeLocBuilder::grow(size_t NewCapacity) { function in class:TypeLocBuilder
72 // If we need to grow, grow by a factor of 2.
78 grow(NewCapacity);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
IndexedMap.h 13 // map. A member function grow() is provided that given the value of
32 // can grow very large and SmallVector grows more efficiently as long as T
67 void grow(IndexT n) { function in class:llvm::IndexedMap
DenseMap.h 102 /// Grow the densemap so that it can contain at least \p NumEntries items
108 grow(NumBuckets);
385 /// accommodate \p NumEntries without need to grow().
536 void grow(unsigned AtLeast) { function in class:llvm::DenseMapBase
537 static_cast<DerivedT *>(this)->grow(AtLeast);
571 // grow the table.
581 this->grow(NumBuckets * 2);
586 this->grow(NumBuckets);
729 /// this number of elements can be inserted in the map without grow()
802 void grow(unsigned AtLeast) function in class:llvm::DenseMap
1038 void grow(unsigned AtLeast) { function in class:llvm::SmallDenseMap
    [all...]
SmallVector.h 59 /// This is a helper for \a grow() that's out of line to reduce code
60 /// duplication. This function will report a fatal error if it can't grow at
64 /// This is an implementation of the grow() method which only works
169 // Return false if we need to grow.
229 This->grow(NewSize);
346 /// Grow the allocated memory (without initializing new elements), doubling
349 void grow(size_t MinSize = 0);
352 /// in \p NewCapacity. This is the first section of \a grow().
360 /// section of \a grow().
363 /// Transfer ownership of the allocation, finishing up \a grow()
424 void SmallVectorTemplateBase<T, TriviallyCopyable>::grow(size_t MinSize) { function in class:llvm::SmallVectorTemplateBase
510 void grow(size_t MinSize = 0) { this->grow_pod(MinSize, sizeof(T)); } function in class:llvm::SmallVectorTemplateBase
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Support/
BumpVector.h 166 grow(C);
183 grow(C, size() + Cnt);
190 grow(C, N);
198 /// grow - double the size of the allocated memory, guaranteeing space for at
200 void grow(BumpVectorContext &C, size_type MinSize = 1);
225 void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) { function in class:clang::BumpVector
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
Utility.h 33 void grow(size_t N) { function in class:OutputStream
84 grow(Size);
91 grow(1);
  /src/sys/external/bsd/drm2/dist/drm/i915/selftests/
scatterlist.c 177 static unsigned int grow(unsigned long n, function
272 grow,
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTVector.h 169 grow(C);
175 grow(C, N);
190 // Grow allocated space if needed.
192 this->grow(C, this->size()+NumInputs);
203 // Grow allocated space if needed.
205 this->grow(C, this->size()+NumInputs);
235 this->grow(C);
347 this->grow(C, N);
354 /// grow - double the size of the allocated memory, guaranteeing space for at
356 void grow(const ASTContext &C, size_type MinSize = 1)
380 void ASTVector<T>::grow(const ASTContext &C, size_t MinSize) { function in class:clang::ASTVector
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 296 grow(Traits);
305 void grow(TraitsT &Traits) { function in class:llvm::pdb::HashTable
310 assert(capacity() != UINT32_MAX && "Can't grow Hash table!");
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
TPCIndirectionUtils.cpp 44 Error grow() override;
97 Error TPCTrampolinePool::grow() { function in class:__anon4391::TPCTrampolinePool
99 "Grow called with trampolines still available");
  /src/external/bsd/libevent/dist/
evport.c 50 * Helper functions are used: grow() grows the file descriptor array as
125 static int grow(struct evport_data *, int min_events);
156 if (grow(evpd, INITIAL_EVENTS_PER_GETN) < 0) {
170 grow(struct evport_data *data, int min_events) function
367 grow(epdp, epdp->ed_maxevents * 2);
  /src/external/bsd/ntp/dist/sntp/libevent/
evport.c 51 * Helper functions are used: grow() grows the file descriptor array as
124 static int grow(struct evport_data *, int min_events);
155 if (grow(evpd, INITIAL_EVENTS_PER_GETN) < 0) {
169 grow(struct evport_data *data, int min_events) function
366 grow(epdp, epdp->ed_maxevents * 2);
  /src/external/bsd/openldap/dist/servers/slapd/back-sql/
util.c 76 ber_len_t cdlen, cslen, grow; local
96 grow = BACKSQL_MAX( BACKSQL_STR_GROW, cslen );
108 dest->bb_len + grow * sizeof( char ), memctx );
116 dest->bb_len += grow;
164 ber_len_t cslen, grow; local
203 grow = BACKSQL_MAX( BACKSQL_STR_GROW, cslen );
215 ( dest->bb_len ) + grow * sizeof( char ), memctx );
223 dest->bb_len += grow * sizeof( char );
  /src/external/mpl/dhcp/bind/dist/lib/dns/
badcache.c 126 bool grow; local
136 * size every time we grow it, and we don't shrink
142 grow = true;
146 grow = false;
153 if (grow) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
VirtRegMap.cpp 73 grow();
77 void VirtRegMap::grow() { function in class:VirtRegMap
  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
ItaniumDemangle.cpp 258 void grow() { function in class:__anon4356::BumpPointerAllocator
283 grow();
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_dense_map.h 38 /// Grow the densemap so that it can contain at least \p NumEntries items
43 grow(NumBuckets);
278 /// accommodate \p NumEntries without need to grow().
392 void grow(unsigned AtLeast) { static_cast<DerivedT *>(this)->grow(AtLeast); } function in class:__sanitizer::DenseMapBase
420 // grow the table.
430 this->grow(NumBuckets * 2);
435 this->grow(NumBuckets);
583 /// this number of elements can be inserted in the map without grow()
644 void grow(unsigned AtLeast) function in class:__sanitizer::DenseMap
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_workarounds.c 95 const unsigned int grow = WA_LIST_CHUNK; local
98 GEM_BUG_ON(!is_power_of_2(grow));
100 if (IS_ALIGNED(wal->count, grow)) { /* Either uninitialized or full. */
103 list = kmalloc_array(ALIGN(wal->count + 1, grow), sizeof(*wa),
  /src/crypto/external/bsd/heimdal/dist/kdc/
connect.c 581 * Grow `d' to handle at least `n'.
592 size_t grow; local
594 grow = max(1024, d->len + n);
595 if (d->size + grow > max_request_tcp) {
597 (unsigned long)d->size + grow);
601 tmp = realloc (d->buf, d->size + grow);
604 (unsigned long)d->size + grow);
608 d->size += grow;
  /src/external/bsd/ppp/dist/chat/
chat.c 208 char *grow (char *s, char **p, size_t len);
254 /* grow a char buffer and keep a pointer offset */
255 char *grow(char *s, char **p, size_t len) function
703 s1 = grow(s1, &p, len);
748 s1 = grow(s1, &p, len);
761 s1 = grow(s1, &p, len);
  /src/external/gpl3/gcc/dist/gcc/
gimple-range-cache.cc 95 void grow ();
119 // Grow the vector when the CFG has increased in size.
122 sbr_vector::grow () function in class:sbr_vector
150 grow ();
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-range-cache.cc 204 void grow ();
224 // Grow the vector when the CFG has increased in size.
227 sbr_vector::grow () function in class:sbr_vector
254 grow ();
  /src/sbin/resize_ffs/
resize_ffs.c 850 * the csum area to grow, we must be adding at least one cg, so the
973 /* Did we actually not grow? (This can happen if newsize is less than
984 * Grow the file system.
987 grow(void) function
1040 progress_bar(special, "grow cg",
2294 grow();

Completed in 62 milliseconds

1 2