Searched refs:capacity (Results 276 - 300 of 372) sorted by relevance

<<1112131415

/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dmsgfmt.cpp325 * Allocate argTypes[] to at least the given capacity and return
331 UBool MessageFormat::allocateArgTypes(int32_t capacity, UErrorCode& status) { argument
335 if (argTypeCapacity >= capacity) {
338 if (capacity < DEFAULT_INITIAL_CAPACITY) {
339 capacity = DEFAULT_INITIAL_CAPACITY;
340 } else if (capacity < 2*argTypeCapacity) {
341 capacity = 2*argTypeCapacity;
344 uprv_realloc(argTypes, sizeof(*argTypes) * capacity);
350 argTypeCapacity = capacity;
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DbyteRep.c309 g->capacity = 1;
314 g->capacity = numDigits;
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DbyteRep.c309 g->capacity = 1;
314 g->capacity = numDigits;
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebCoreStatistics.mm206 size_t heapFree = JSDOMWindow::commonVM()->heap.capacity() - heapSize;
/macosx-10.9.5/WebKit2-7537.78.2/Shared/mac/
H A DWebMemorySampler.mac.mm121 size_t jscHeapBytesCommitted = JSDOMWindow::commonVM()->heap.capacity();
/macosx-10.9.5/llvmCore-3425.0.33/unittests/ADT/
H A DSmallVectorTest.cpp153 bool RequiresGrowth = this->theVector.capacity() < 3;
456 EXPECT_LE(4u, this->theVector.capacity());
/macosx-10.9.5/objc4-551.1/runtime/OldClasses.subproj/
H A DList.m102 - (unsigned)capacity
156 /* we double the capacity, also a good size for malloc */
/macosx-10.9.5/objc4-551.1/runtime/
H A Dhashtable2.mm139 NXHashTable *NXCreateHashTable (NXHashTablePrototype prototype, unsigned capacity, const void *info) {
140 return NXCreateHashTableFromZone(prototype, capacity, info, DEFAULT_ZONE);
143 NXHashTable *NXCreateHashTableFromZone (NXHashTablePrototype prototype, unsigned capacity, const void *info, void *z) {
169 table->nbBuckets = GOOD_CAPACITY(capacity);
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dustrtest.cpp205 errln("UnicodeString.setTo(buffer, length, capacity) does not work with length==-1");
208 errln("UnicodeString(buffer, length, capacity) does not work with length==-1");
221 errln("UnicodeString.setTo(buffer without NUL, length, capacity) does not work with length==-1");
224 errln("UnicodeString(buffer without NUL, length, capacity) does not work with length==-1");
1279 errln((UnicodeString)"UnicodeString.setTo(UChar*, length, capacity) does not work correctly\n" + prettify(*test));
1292 // test the (new) capacity constructor
1298 errln("The UnicodeString capacity constructor does not work with an ASCII filler");
1306 errln("The UnicodeString capacity constructor does not work with a 0x10ff2a filler");
1311 errln("The UnicodeString capacity constructor does not work with a 0x10ff2a filler");
1851 TestCheckedArrayByteSink(char* outbuf, int32_t capacity) argument
2046 int32_t capacity=-1; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dutrie.cpp740 utrie_serialize(UNewTrie *trie, void *dt, int32_t capacity, argument
755 if(trie==NULL || capacity<0 || (capacity>0 && dt==NULL)) {
793 if(length>capacity) {
H A Duvector.h84 int32_t capacity; member in class:UVector
H A Dubidi.c1203 if (pInsertPoints->capacity == 0)
1211 pInsertPoints->capacity=FIRSTALLOC;
1213 if (pInsertPoints->size >= pInsertPoints->capacity) /* no room for new point */
1217 pInsertPoints->capacity*2*sizeof(Point));
1224 else pInsertPoints->capacity*=2;
1284 if ((pInsertPoints->capacity == 0) ||
1320 if (pInsertPoints->capacity > 0)
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Dcoll.h953 * buffer will be filled to capacity.
972 * buffer will be filled to capacity.
1099 * @param capacity capacity of the buffer
1109 int32_t capacity,
H A Dtimezone.h723 * @param capacity The size of the output buffer.
731 char *region, int32_t capacity, UErrorCode& status);
H A Duspoof.h1040 * can be NULL if capacity==0
1041 * @param capacity the number of bytes available at data,
1045 * - U_ILLEGAL_ARGUMENT_ERROR the data or capacity parameters are bad
1053 void *data, int32_t capacity,
/macosx-10.9.5/ICU-511.35/icuSources/io/unicode/
H A Dustdio.h293 * @param capacity The number of code units available for use in stringBuf
302 int32_t capacity,
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireFamily.kmodproj/
H A DIOFireWireLink.h207 virtual IOFWDCLPool* createDCLPool ( UInt32 capacity ) ;
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibNuDCLPool.cpp45 NuDCLPool::NuDCLPool( const IUnknownVTbl & vTable, Device& device, UInt32 capacity )
61 fProgram = ::CFArrayCreateMutable( kCFAllocatorDefault, capacity, &arrayCallbacks );
259 NuDCLPoolCOM::Alloc( Device& device, UInt32 capacity )
263 me = new NuDCLPoolCOM( device, capacity ) ;
H A DIOFireWireLibNuDCLPool.h112 static const IUnknownVTbl ** Alloc( Device& device, UInt32 capacity ) ;
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DMarkedSpace.cpp199 if (block->capacity() == MarkedBlock::blockSize) {
/macosx-10.9.5/WebKit2-7537.78.2/Shared/linux/
H A DWebMemorySamplerLinux.cpp158 size_t jscHeapBytesCommitted = JSDOMWindow::commonVM()->heap.capacity();
/macosx-10.9.5/llvmCore-3425.0.33/lib/Archive/
H A DArchive.cpp121 sys::fs::get_magic(path.str(), magic.capacity(), magic);
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dunistr.h1698 * @param utf32 destination string buffer, can be NULL if capacity==0
1699 * @param capacity the number of UChar32s available at utf32
1708 int32_t toUTF32(UChar32 *utf32, int32_t capacity, UErrorCode &errorCode) const;
1772 * Return the capacity of the internal buffer of the UnicodeString object.
1967 * For as long as the capacity of the buffer is sufficient, write operations
1968 * will directly affect the buffer. When more capacity is necessary, then
2729 * The actual capacity of the string buffer may be larger than minCapacity.
2730 * getCapacity() returns the actual capacity.
2731 * For many operations, the full capacity should be used to avoid reallocations.
2751 * default to the current string capacity i
4278 setArray(UChar *array, int32_t len, int32_t capacity) argument
[all...]
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDDevice.cpp290 // Create an OSSet to store client objects. Initial capacity
1672 UInt32 capacity = 0; local
1683 UInt32 remaining = ULONG_MAX - capacity;
1688 capacity += element->getElementValueSize();
1696 DLOG("Element value capacity %ld\n", capacity);
1700 capacity );
1714 assert ( buffer < (beginning + capacity) ); argument
1716 if(buffer >= (beginning + capacity)) {
/macosx-10.9.5/WebCore-7537.78.1/icu/unicode/
H A Dunistr.h1637 * @param utf32 destination string buffer, can be NULL if capacity==0
1638 * @param capacity the number of UChar32s available at utf32
1647 int32_t toUTF32(UChar32 *utf32, int32_t capacity, UErrorCode &errorCode) const;
1711 * Return the capacity of the internal buffer of the UnicodeString object.
1901 * For as long as the capacity of the buffer is sufficient, write operations
1902 * will directly affect the buffer. When more capacity is necessary, then
2663 * The actual capacity of the string buffer may be larger than minCapacity.
2664 * getCapacity() returns the actual capacity.
2665 * For many operations, the full capacity should be used to avoid reallocations.
2685 * default to the current string capacity i
4189 setArray(UChar *array, int32_t len, int32_t capacity) argument
[all...]

Completed in 379 milliseconds

<<1112131415