Searched defs:totalSize (Results 1 - 25 of 73) sorted by relevance

123

/external/icu/icu4c/source/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));
H A Dswapimpl.cpp118 int32_t totalSize=udata_readInt32(ds, inIndexes[PropNameData::IX_TOTAL_SIZE]); local
120 if(length<totalSize) {
123 (int)length, (int)totalSize);
138 totalSize-numBytesIndexesAndValueMaps);
154 return headerSize+totalSize;
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLHttpRequestProgressEvent.h47 unsigned long long totalSize() const { return total(); } function in class:WebCore::FINAL
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2arrst.h60 size_t totalSize; /* total bytes allocated */ member in struct:CF2_ArrStackRec_
/external/freetype/src/cff/
H A Dcf2arrst.h60 size_t totalSize; /* total bytes allocated */ member in struct:CF2_ArrStackRec_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2arrst.h60 size_t totalSize; /* total bytes allocated */ member in struct:CF2_ArrStackRec_
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayBufferContents.cpp49 unsigned totalSize = numElements * elementByteSize; local
50 if (totalSize / numElements != elementByteSize) {
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DTypes.cpp188 size_t totalSize; local
191 totalSize = structure->objectSize();
193 totalSize = primarySize * secondarySize;
198 if (arraySize > INT_MAX / totalSize)
199 totalSize = INT_MAX;
201 totalSize *= arraySize;
204 return totalSize;
H A DparseConst.cpp181 size_t totalSize = index + size; local
185 for (size_t i = index; i < totalSize; i++) {
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DStatistics.java119 private int totalSize; field in class:Statistics.Data
138 this.totalSize = size;
152 totalSize += size;
182 totalSize + " bytes total\n");
187 int average = totalSize / count;
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebScrollbarImpl.cpp69 int WebScrollbarImpl::totalSize() const function in class:blink::WebScrollbarImpl
71 return m_scrollbar->totalSize();
H A DWebScrollbarThemeClientImpl.cpp174 return totalSize() - maximum();
177 int WebScrollbarThemeClientImpl::totalSize() const function in class:WebCore::WebScrollbarThemeClientImpl
179 return m_scrollbar->totalSize();
/external/chromium_org/third_party/icu/source/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 Drbbidata.cpp337 int32_t totalSize = headerSize + breakDataLength; local
339 return totalSize;
345 if (length < totalSize) {
442 return totalSize;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrMemoryPool.cpp136 size_t totalSize = ptrOffset + block->fFreeSize; local
137 size_t userSize = totalSize - kHeaderSize;
141 SkASSERT(!(totalSize % kAlignment));
/external/icu/icu4c/source/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 Drbbidata.cpp337 int32_t totalSize = headerSize + breakDataLength; local
339 return totalSize;
345 if (length < totalSize) {
442 return totalSize;
/external/skia/src/gpu/
H A DGrMemoryPool.cpp136 size_t totalSize = ptrOffset + block->fFreeSize; local
137 size_t userSize = totalSize - kHeaderSize;
141 SkASSERT(!(totalSize % kAlignment));
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DBitmapImageTest.cpp127 size_t totalSize = decodedSize(); local
133 EXPECT_GE(m_imageObserver.m_lastDecodedSizeChangedDelta, -static_cast<int>(totalSize - size));
144 size_t totalSize = decodedSize(); local
145 EXPECT_GT(totalSize, 0u);
147 EXPECT_EQ(-static_cast<int>(totalSize), m_imageObserver.m_lastDecodedSizeChangedDelta);
/external/icu/icu4c/source/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...]
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCacheTest.cpp328 const unsigned totalSize = lowPrioritySize + highPrioritySize; local
352 ASSERT_EQ(memoryCache()->liveSize(), totalSize);
362 ASSERT_EQ(memoryCache()->liveSize(), totalSize - lowPriorityMockDecodeSize);
368 ASSERT_EQ(memoryCache()->liveSize(), totalSize - lowPriorityMockDecodeSize - highPriorityMockDecodeSize);
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLiteDatabase.cpp196 int64_t SQLiteDatabase::totalSize() function in class:WebCore::SQLiteDatabase
/external/chromium_org/third_party/WebKit/Source/platform/
H A DSharedBuffer.cpp336 unsigned totalSize = size(); local
337 if (position >= totalSize) {
354 unsigned bytesLeft = totalSize - consecutiveSize;
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebApplicationCacheHost.h112 long long totalSize; member in struct:blink::WebApplicationCacheHost::CacheInfo
113 CacheInfo() : creationTime(0), updateTime(0), totalSize(0) { }
/external/lzma/C/
H A DXzIn.c60 ADD_SIZE_CHECH(size, (p->blocks[i].totalSize + 3) & ~(UInt64)3);
104 READ_VARINT_AND_CHECK(buf, pos, size, &block->totalSize);
106 if (block->totalSize == 0)
206 UInt64 totalSize = Xz_GetPackSize(p); local
207 UInt64 sum = XZ_STREAM_HEADER_SIZE + totalSize + indexSize;
208 if (totalSize == XZ_SIZE_OVERFLOW ||
210 totalSize >= ((UInt64)1 << 63))

Completed in 571 milliseconds

123