Searched refs:totalSize (Results 1 - 25 of 65) sorted by relevance

123

/macosx-10.10/WebCore-7600.1.25/xml/
H A DXMLHttpRequestProgressEvent.idl31 readonly attribute unsigned long long totalSize;
H A DXMLHttpRequestProgressEvent.h48 unsigned long long totalSize() const { return total(); } function in class:WebCore::XMLHttpRequestProgressEvent
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcollationdatawriter.cpp205 int32_t totalSize = indexesLength * 4; local
213 indexes[CollationDataReader::IX_REORDER_CODES_OFFSET] = totalSize;
214 totalSize += settings.reorderCodesLength * 4;
216 indexes[CollationDataReader::IX_REORDER_TABLE_OFFSET] = totalSize;
218 totalSize += 256;
221 indexes[CollationDataReader::IX_TRIE_OFFSET] = totalSize;
225 if(totalSize < capacity) {
226 length = utrie2_serialize(data.trie, dest + totalSize,
227 capacity - totalSize, &errorCode2);
238 totalSize
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gpu/
H A DTilingData.cpp41 static int computeNumTiles(int maxTextureSize, int totalSize, int borderTexels) argument
44 return totalSize > 0 && maxTextureSize >= totalSize ? 1 : 0;
46 int numTiles = std::max(1, 1 + (totalSize - 1 - 2 * borderTexels) / (maxTextureSize - 2 * borderTexels));
47 return totalSize > 0 ? numTiles : 0;
50 TilingData::TilingData(const IntSize& maxTextureSize, const IntSize& totalSize, bool hasBorderTexels) argument
52 , m_totalSize(totalSize)
58 void TilingData::setTotalSize(const IntSize& totalSize) argument
60 m_totalSize = totalSize;
H A DTilingData.h45 TilingData(const IntSize& maxTextureSize, const IntSize& totalSize, bool hasBorderTexels);
48 const IntSize& totalSize() const { return m_totalSize; } function in class:WebCore::TilingData
H A DTexture.cpp153 updateSubRect(pixels, IntRect(0, 0, m_tiles.totalSize().width(), m_tiles.totalSize().height()));
159 updateRectSanitized.intersect(IntRect(0, 0, m_tiles.totalSize().width(), m_tiles.totalSize().height()));
196 tempBuff.get(), updateRectIntersected.width(), updateRectIntersected.height(), m_tiles.totalSize().width());
200 tempBuff.get(), updateRectIntersected.width(), updateRectIntersected.height(), m_tiles.totalSize().width());
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOConfigEntry.h42 unsigned int totalSize();
H A DIOConfigEntry.cpp120 // totalSize
124 unsigned int IOConfigEntry::totalSize() function in class:IOConfigEntry
153 size += entry->totalSize();
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DButterflyInlines.h41 size_t size = totalSize(preCapacity, propertyCapacity, hasIndexingHeader, indexingPayloadSizeInBytes);
66 size_t size = totalSize(preCapacity, propertyCapacity, hasIndexingHeader, indexingPayloadSizeInBytes);
93 totalSize(0, oldPropertyCapacity, hasIndexingHeader, indexingPayloadSizeInBytes));
120 size_t oldSize = totalSize(0, propertyCapacity, hadIndexingHeader, oldIndexingPayloadSizeInBytes);
121 size_t newSize = totalSize(0, propertyCapacity, true, newIndexingPayloadSizeInBytes);
151 totalSize(0, propertyCapacity, oldHasIndexingHeader, oldIndexingPayloadSizeInBytes),
152 totalSize(0, propertyCapacity, newHasIndexingHeader, newIndexingPayloadSizeInBytes));
H A DArrayBuffer.h257 unsigned totalSize = numElements * elementByteSize; local
258 if (totalSize / numElements != elementByteSize
259 || totalSize > static_cast<unsigned>(std::numeric_limits<int32_t>::max())) {
/macosx-10.10/ICU-531.30/icuSources/tools/toolutil/
H A Dcollationinfo.cpp27 int32_t totalSize = indexes[CollationDataReader::IX_TOTAL_SIZE]; local
28 if(sizeWithHeader > totalSize) {
29 printf(" header size: %6ld\n", (long)(sizeWithHeader - totalSize));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cg/
H A DIOSurfacePool.cpp330 size_t totalSize = 0; local
347 totalSize += queueSize;
359 totalSize += inUseSize;
363 ASSERT(m_bytesCached == totalSize);
366 WTFLogAlways(" TOTAL: %d surfaces for %zd KB (%zd KB purgeable)\n", totalSurfaces, totalSize / 1024, totalPurgeableSize / 1024);
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_utilities/
H A Dcontext.cpp127 size_t totalSize = vectorSize + sizer; local
128 attributes = reinterpret_cast<Attr *>(allocator.malloc(totalSize));
131 return totalSize;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_utilities/lib/
H A Dcontext.cpp127 size_t totalSize = vectorSize + sizer; local
128 attributes = reinterpret_cast<Attr *>(allocator.malloc(totalSize));
131 return totalSize;
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A Dslcrep.cpp59 if (mCache.totalSize() >= mCache.mapSize() + sizeof(BlobCore)) {
61 if (mCache.totalSize() >= mCache.mapSize() + blob->length()) // entire blob fits in file
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dalloc.cpp139 size_t totalSize = size + sizeof(Allocator *); local
140 void *addr = alloc->malloc(totalSize);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dslcrep.cpp59 if (mCache.totalSize() >= mCache.mapSize() + sizeof(BlobCore)) {
61 if (mCache.totalSize() >= mCache.mapSize() + blob->length()) // entire blob fits in file
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dalloc.cpp139 size_t totalSize = size + sizeof(Allocator *); local
140 void *addr = alloc->malloc(totalSize);
/macosx-10.10/ICU-531.30/icuSources/common/
H A Drbbirb.cpp165 int32_t totalSize = headerSize + forwardTableSize + reverseTableSize local
169 RBBIDataHeader *data = (RBBIDataHeader *)uprv_malloc(totalSize);
174 uprv_memset(data, 0, totalSize);
182 data->fLength = totalSize;
H A Ducnvsel.cpp183 int32_t totalSize = 0; local
186 totalSize +=
189 // 4-align the totalSize to 4-align the size of the serialized form
190 int32_t encodingStrPadding = totalSize & 3;
194 newSelector->encodingStrLength = totalSize += encodingStrPadding;
195 char* allStrings = (char*) uprv_malloc(totalSize);
315 int32_t totalSize = local
321 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize;
322 if (totalSize > bufferCapacity) {
324 return totalSize;
506 int32_t totalSize = ucnvsel_swap(ds, p, -1, NULL, status); local
[all...]
H A Drbbidata.cpp337 int32_t totalSize = headerSize + breakDataLength; local
339 return totalSize;
345 if (length < totalSize) {
442 return totalSize;
/macosx-10.10/WebCore-7600.1.25/platform/
H A DScrollbarThemeClient.h70 virtual int totalSize() const = 0;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/
H A DTextureMapperTiledBackingStore.cpp136 void TextureMapperTiledBackingStore::updateContents(TextureMapper* textureMapper, Image* image, const FloatSize& totalSize, const IntRect& dirtyRect, BitmapTexture::UpdateContentsFlag updateContentsFlag) argument
138 createOrDestroyTilesIfNeeded(totalSize, textureMapper->maxTextureSize(), !image->currentFrameKnownToBeOpaque());
143 void TextureMapperTiledBackingStore::updateContents(TextureMapper* textureMapper, GraphicsLayer* sourceLayer, const FloatSize& totalSize, const IntRect& dirtyRect, BitmapTexture::UpdateContentsFlag updateContentsFlag) argument
145 createOrDestroyTilesIfNeeded(totalSize, textureMapper->maxTextureSize(), true);
/macosx-10.10/WebCore-7600.1.25/platform/network/curl/
H A DCurlDownload.cpp458 size_t totalSize = size * nmemb; local
462 download->didReceiveData(ptr, totalSize);
464 return totalSize;
469 size_t totalSize = size * nmemb; local
472 String header = String::fromUTF8WithLatin1Fallback(static_cast<const char*>(ptr), totalSize);
477 return totalSize;
/macosx-10.10/WebCore-7600.1.25/platform/sql/
H A DSQLiteDatabase.h98 int64_t totalSize();

Completed in 195 milliseconds

123