Searched refs:capacity (Results 126 - 150 of 372) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/icu/unicode/
H A Duscript.h229 * If required capacity is greater than capacity of the destination buffer then the error code
230 * is set to U_BUFFER_OVERFLOW_ERROR and the required capacity is returned
238 * @param capacity the capacity (size) fo UScriptCode buffer passed in.
244 uscript_getCode(const char* nameOrAbbrOrLocale,UScriptCode* fillIn,int32_t capacity,UErrorCode *err);
304 * If there are more than capacity script codes to be written, then
312 * @param capacity capacity of the scripts array
318 * written to scripts unless U_BUFFER_OVERFLOW_ERROR indicates insufficient capacity
[all...]
H A Dbytestream.h70 * Returns a writable buffer for appending and writes the buffer's capacity to
83 * int32_t capacity;
84 * char* buffer = sink->GetAppendBuffer(..., &capacity);
85 * ... Write n bytes into buffer, with n <= capacity.
91 * If a caller cannot provide a reasonable guess at the desired capacity,
100 * @param min_capacity required minimum capacity of the returned buffer;
102 * @param desired_capacity_hint desired capacity of the returned buffer;
105 * @param scratch_capacity capacity of the scratch buffer
107 * capacity of the returned buffer
137 * This sink will not write more than capacity byte
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/icu/unicode/
H A Dunorm2.h202 * @param capacity number of UChars that can be written to dest
213 UChar *dest, int32_t capacity,
270 * @param capacity number of UChars that can be written to decomposition
280 UChar32 c, UChar *decomposition, int32_t capacity,
H A Duscript.h229 * If required capacity is greater than capacity of the destination buffer then the error code
230 * is set to U_BUFFER_OVERFLOW_ERROR and the required capacity is returned
238 * @param capacity the capacity (size) fo UScriptCode buffer passed in.
244 uscript_getCode(const char* nameOrAbbrOrLocale,UScriptCode* fillIn,int32_t capacity,UErrorCode *err);
304 * If there are more than capacity script codes to be written, then
312 * @param capacity capacity of the scripts array
318 * written to scripts unless U_BUFFER_OVERFLOW_ERROR indicates insufficient capacity
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebBackForwardList.idl128 @method capacity
131 - (int)capacity;
133 HRESULT capacity([out, retval] int* result);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A Draw_ostream.cpp706 // capacity. This allows raw_ostream to write directly into the correct place,
715 SetBuffer(OS.end(), OS.capacity() - OS.size());
729 if (OS.capacity() - OS.size() < 64)
730 OS.reserve(OS.capacity() * 2);
731 SetBuffer(OS.end(), OS.capacity() - OS.size());
739 assert(OS.size() + Size <= OS.capacity() && "Invalid write_impl() call!");
749 if (OS.capacity() - OS.size() < 64)
750 OS.reserve(OS.capacity() * 2);
753 SetBuffer(OS.end(), OS.capacity() - OS.size());
/macosx-10.9.5/objc4-551.1/runtime/
H A Dhashtable2.h76 OBJC_EXPORT NXHashTable *NXCreateHashTableFromZone (NXHashTablePrototype prototype, unsigned capacity, const void *info, void *z) OBJC_HASH_AVAILABILITY;
77 OBJC_EXPORT NXHashTable *NXCreateHashTable (NXHashTablePrototype prototype, unsigned capacity, const void *info) OBJC_HASH_AVAILABILITY;
81 /* capacity is only a hint; 0 creates a small table */
88 /* does not deallocate table nor data; keeps current capacity */
91 /* frees each entry; keeps current capacity */
H A Dobjc-sel-set.mm110 // create a set with given starting capacity, will resize as needed
147 uint32_t idx, capacity = sset->_count + 1;
148 for (idx = 0; __objc_sel_set_capacities[idx] < capacity; idx++);
/macosx-10.9.5/xnu-2422.115.4/libkern/kxld/
H A Dkxld_array.c43 static KXLDArrayPool * pool_create(size_t capacity);
44 static void pool_destroy(KXLDArrayPool *pool, size_t capacity);
176 pool_create(size_t capacity) argument
183 pool->buffer = kxld_page_alloc(capacity);
185 bzero(pool->buffer, capacity);
191 if (pool) pool_destroy(pool, capacity);
198 pool_destroy(KXLDArrayPool *pool, size_t capacity) argument
201 if (pool->buffer) kxld_page_free(pool->buffer, capacity);
/macosx-10.9.5/CF-855.17/
H A DCFArray.c46 CF_INLINE CFIndex __CFArrayDequeRoundUpCapacity(CFIndex capacity) { argument
47 if (capacity < 4) return 4;
48 return __CFMin((1 << flsl(capacity)), __CF_MAX_BUCKETS_PER_DEQUE);
366 static CFArrayRef __CFArrayInit(CFAllocatorRef allocator, UInt32 flags, CFIndex capacity, const CFArrayCallBacks *callBacks) { argument
385 size += capacity * sizeof(struct __CFArrayBucket);
470 CF_PRIVATE CFMutableArrayRef __CFArrayCreateMutable0(CFAllocatorRef allocator, CFIndex capacity, const CFArrayCallBacks *callBacks) { argument
471 CFAssert2(0 <= capacity, __kCFLogAssertion, "%s(): capacity (%d) cannot be less than zero", __PRETTY_FUNCTION__, capacity);
472 CFAssert2(capacity <
506 __CFArrayCreateMutableCopy0(CFAllocatorRef allocator, CFIndex capacity, CFArrayRef array) argument
535 CFArrayCreateMutable(CFAllocatorRef allocator, CFIndex capacity, const CFArrayCallBacks *callBacks) argument
543 CFArrayCreateMutableCopy(CFAllocatorRef allocator, CFIndex capacity, CFArrayRef array) argument
798 CFIndex capacity = __CFArrayDequeRoundUpCapacity(futureCnt + wiggle); local
885 CFIndex capacity = __CFArrayDequeRoundUpCapacity(cap); local
966 CFIndex capacity = __CFArrayDequeRoundUpCapacity(futureCnt); local
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DgiantIntegers.c94 sprintf(printbuf2, "sign=%d cap=%d n[]=", x->sign, x->capacity);
106 sprintf(printbuf4, "sign=%d cap=%d n[]=", x->sign, x->capacity);
199 unsigned numDigits; // capacity of giants in this stack
361 unsigned cap = g->capacity;
378 * capacity and stack's giant size.
473 result->capacity = numDigits;
481 giant result = newGiant(x->capacity);
488 ((x->capacity - 1) * GIANT_BYTES_PER_DIGIT);
606 if (destgiant->capacity < abs(srcgiant->sign))
669 if (g->sign > (int)g->capacity) CKRais
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DgiantIntegers.c94 sprintf(printbuf2, "sign=%d cap=%d n[]=", x->sign, x->capacity);
106 sprintf(printbuf4, "sign=%d cap=%d n[]=", x->sign, x->capacity);
199 unsigned numDigits; // capacity of giants in this stack
361 unsigned cap = g->capacity;
378 * capacity and stack's giant size.
473 result->capacity = numDigits;
481 giant result = newGiant(x->capacity);
488 ((x->capacity - 1) * GIANT_BYTES_PER_DIGIT);
606 if (destgiant->capacity < abs(srcgiant->sign))
669 if (g->sign > (int)g->capacity) CKRais
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DMultipleKeyNIODataEntry.java74 if(this.data_nio.capacity() < 16)
H A DMultipleRecnoNIODataEntry.java78 if(this.data_nio.capacity() < 12)
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dbytestream.h70 * Returns a writable buffer for appending and writes the buffer's capacity to
83 * int32_t capacity;
84 * char* buffer = sink->GetAppendBuffer(..., &capacity);
85 * ... Write n bytes into buffer, with n <= capacity.
91 * If a caller cannot provide a reasonable guess at the desired capacity,
100 * @param min_capacity required minimum capacity of the returned buffer;
102 * @param desired_capacity_hint desired capacity of the returned buffer;
105 * @param scratch_capacity capacity of the scratch buffer
107 * capacity of the returned buffer
137 * This sink will not write more than capacity byte
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Duniset_closure.cpp51 len(0), capacity(START_EXTRA), list(0), bmpSet(0), buffer(0),
56 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity);
72 len(0), capacity(START_EXTRA), list(0), bmpSet(0), buffer(0),
77 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity);
H A Dunisetspan.cpp57 OffsetList() : list(staticList), capacity(0), length(0), start(0) {}
68 capacity=(int32_t)sizeof(staticList);
73 capacity=maxLength;
76 uprv_memset(list, 0, capacity);
80 uprv_memset(list, 0, capacity);
95 if(i>=capacity) {
96 i-=capacity;
109 if(i>=capacity) {
110 i-=capacity;
119 if(i>=capacity) {
157 int32_t capacity; member in class:OffsetList
181 appendUTF8(const UChar *s, int32_t length, uint8_t *t, int32_t capacity) argument
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/io/
H A Dufile.h39 int32_t capacity; /* Capacity of buffer */ member in struct:__anon1203
/macosx-10.9.5/IONetworkingFamily-100/
H A DIONetworkUserClient.h145 @abstract Get the capacity of an IONetworkData object, described
148 @param capacity A pointer to the capacity value returned by this
154 uint64_t * capacity);
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/TestTools/AppleSCSIHBAEmulator/
H A DAppleSCSIEmulatorAdapterUC.h81 UInt64 capacity; member in struct:EmulatorLUNParamsStruct
H A DAppleSCSITargetEmulator.h93 UInt64 capacity,
/macosx-10.9.5/WebCore-7537.78.1/history/
H A DPageCache.h49 int capacity() { return m_capacity; } function in class:WebCore::PageCache
51 void add(PassRefPtr<HistoryItem>, Page*); // Prunes if capacity() is exceeded.
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DWKCAImageQueue.h69 WKCAImageQueue(uint32_t width, uint32_t height, uint32_t capacity);
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DQtTestSupport.cpp53 int pageCapacity = WebCore::pageCache()->capacity();
/macosx-10.9.5/swig-10/Lib/php/
H A Dstd_vector.i25 size_type capacity() const;
67 size_type capacity() const;

Completed in 385 milliseconds

1234567891011>>