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

12345

/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dfdsel.cpp46 // Given the old and desired new sizes (in fd_mask words), grow
51 void FDSet::grow(int oldWords, int newWords) function in class:Security::UnixPlusPlus::FDSet
54 grow(mBits, oldWords, newWords);
55 grow(mUseBits, oldWords, newWords);
58 void FDSet::grow(fd_mask * &bits, int oldWords, int newWords)
H A Dfdsel.h42 // Size is implicitly kept by the caller (who needs to call grow() as
60 void grow(int oldWords, int newWords);
72 void grow(fd_mask * &bits, int oldWords, int newWords);
H A Dstreams.cpp123 grow(mSize * 3 / 2);
131 grow(expectedSize);
134 void MemorySink::grow(size_t newSize) function in class:Security::MemorySink
H A Dselector.cpp45 inSet.grow(0, fdSetSize);
46 outSet.grow(0, fdSetSize);
47 errSet.grow(0, fdSetSize);
65 // grow FDSets if needed
69 inSet.grow(fdSetSize, newSize);
70 outSet.grow(fdSetSize, newSize);
71 errSet.grow(fdSetSize, newSize);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dfdsel.cpp46 // Given the old and desired new sizes (in fd_mask words), grow
51 void FDSet::grow(int oldWords, int newWords) function in class:Security::UnixPlusPlus::FDSet
54 grow(mBits, oldWords, newWords);
55 grow(mUseBits, oldWords, newWords);
58 void FDSet::grow(fd_mask * &bits, int oldWords, int newWords)
H A Dfdsel.h42 // Size is implicitly kept by the caller (who needs to call grow() as
60 void grow(int oldWords, int newWords);
72 void grow(fd_mask * &bits, int oldWords, int newWords);
H A Dstreams.cpp123 grow(mSize * 3 / 2);
131 grow(expectedSize);
134 void MemorySink::grow(size_t newSize) function in class:Security::MemorySink
H A Dselector.cpp45 inSet.grow(0, fdSetSize);
46 outSet.grow(0, fdSetSize);
47 errSet.grow(0, fdSetSize);
65 // grow FDSets if needed
69 inSet.grow(fdSetSize, newSize);
70 outSet.grow(fdSetSize, newSize);
71 errSet.grow(fdSetSize, newSize);
/macosx-10.10.1/llvmCore-3425.0.34/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
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DHandleStack.cpp40 grow();
57 void HandleStack::grow() function in class:JSC::HandleStack
59 HandleSlot block = m_blockStack.grow();
H A DConservativeRoots.h62 void grow();
H A DHandleSet.cpp41 grow();
50 void HandleSet::grow() function in class:JSC::HandleSet
H A DHandleStack.h56 void grow();
121 grow();
H A DConservativeRoots.cpp55 void ConservativeRoots::grow() function in class:JSC::ConservativeRoots
89 grow();
/macosx-10.10.1/WebKit2-7600.1.25/Platform/IPC/
H A DArgumentEncoder.cpp106 uint8_t* ArgumentEncoder::grow(unsigned alignment, size_t size) function in class:IPC::ArgumentEncoder
121 uint8_t* buffer = grow(alignment, size);
139 uint8_t* buffer = grow(sizeof(n), sizeof(n));
145 uint8_t* buffer = grow(sizeof(n), sizeof(n));
151 uint8_t* buffer = grow(sizeof(n), sizeof(n));
157 uint8_t* buffer = grow(sizeof(n), sizeof(n));
163 uint8_t* buffer = grow(sizeof(n), sizeof(n));
169 uint8_t* buffer = grow(sizeof(n), sizeof(n));
175 uint8_t* buffer = grow(sizeof(n), sizeof(n));
181 uint8_t* buffer = grow(sizeo
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/layoutex/
H A DRunArrays.cpp43 grow(fCapacity);
55 void RunArray::grow(le_int32 newCapacity) function in class:RunArray
98 void FontRuns::grow(le_int32 capacity) function in class:FontRuns
100 RunArray::grow(capacity);
150 void LocaleRuns::grow(le_int32 capacity) function in class:LocaleRuns
152 RunArray::grow(capacity);
202 void ValueRuns::grow(le_int32 capacity) function in class:ValueRuns
204 RunArray::grow(capacity);
/macosx-10.10.1/Security-57031.1.35/Security/include/security_filedb/
H A DReadWriteSection.cpp7 grow(aLength);
31 grow(aNewOffset);
46 void WriteSection::grow(size_t inNewCapacity) function in class:WriteSection
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_filedb/lib/
H A DReadWriteSection.cpp7 grow(aLength);
31 grow(aNewOffset);
46 void WriteSection::grow(size_t inNewCapacity) function in class:WriteSection
/macosx-10.10.1/JavaScriptCore-7600.1.17/assembler/
H A DAssemblerBuffer.h102 void grow(unsigned extraCapacity = 0) function in class:JSC::AssemblerData
130 grow();
172 grow();
189 grow(size);
195 void grow(int extraCapacity = 0) function in class:JSC::AssemblerBuffer
197 m_storage.grow(extraCapacity);
/macosx-10.10.1/screen-22/screen/
H A Dhelp.c116 int maxrow, grow, numcols, numrows, num_names; member in struct:helpdata
216 helpdata->grow = 0;
272 if (helpdata->grow >= helpdata->maxrow)
274 helpdata->refgrow = helpdata->grow;
280 sprintf(cbuf,"Screen key bindings, page %d of %d.", helpdata->grow / (flayer->l_height-5) + 1, helpdata->numpages);
300 if (helpdata->grow < 1)
307 helpdata->grow++;
309 else if (helpdata->grow >= 2 && helpdata->grow-2 < helpdata->numrows)
312 for (col = 0; col < helpdata->numcols && (n = helpdata->numrows * col + (helpdata->grow
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DJSStackInlines.h39 return grow(newTopOfStack);
75 inline bool JSStack::grow(Register* newTopOfStack) function in class:JSC::JSStack
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DBlockStack.h43 T* grow();
71 template <typename T> T* BlockStack<T>::grow() function in class:WTF::BlockStack
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DJSSegmentedVariableObject.cpp56 m_registers.grow(oldSize + numberOfRegistersToAdd);
/macosx-10.10.1/libauto-186/
H A DPointerHash.cpp40 grow(_capacity * 2); // double when at 2/3 capacity
120 void PointerHash::grow(uint32_t newCapacity, uint32_t flagMask) function in class:Auto::PointerHash
181 grow(_capacity * 2, flagMask);
213 grow(PreferredCapacity, flagMask);
H A DPointerHash.h59 PointerHash(uint32_t initialCapacity) : _pointers(NULL), _capacity(0), _capacityMask(0), _count(0), _removed(0), _firstOccupiedSlot(0), _lastOccupiedSlot(0), _maxRunLength(0) { if (initialCapacity > 0) grow(initialCapacity * 4); };
70 void grow(uint32_t newCapacity = PreferredCapacity, uint32_t flagMask = 0); // bits which are set in flagMask will be cleared in all entries

Completed in 247 milliseconds

12345