HomeSort by relevance Sort by last modified time
    Searched refs:totalSize (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/webkit/WebCore/xml/
XMLHttpRequestProgressEvent.idl 33 readonly attribute unsigned long totalSize;
XMLHttpRequestProgressEvent.h 49 unsigned totalSize() const { return total(); }
  /dalvik/dx/src/com/android/dx/dex/file/
Statistics.java 119 private int totalSize;
138 this.totalSize = size;
152 totalSize += size;
182 totalSize + " bytes total\n");
187 int average = totalSize / count;
  /external/guava/src/com/google/common/collect/
AbstractMultimap.java 108 private transient int totalSize;
125 totalSize = 0;
128 totalSize += values.size();
165 return totalSize;
169 return totalSize == 0;
197 totalSize++;
221 totalSize--;
249 totalSize += (collection.size() - oldSize);
277 totalSize -= collection.size();
282 totalSize++
    [all...]
  /dalvik/vm/
AllocTracker.c 550 size_t baseSize, totalSize;
553 totalSize = baseSize;
554 totalSize += computeStringTableSize(classNames);
555 totalSize += computeStringTableSize(methodNames);
556 totalSize += computeStringTableSize(fileNames);
557 LOGI("Generated AT, size is %zd/%zd\n", baseSize, totalSize);
564 buffer = (u1*) malloc(totalSize);
570 if (strPtr - buffer != (int)totalSize) {
571 LOGE("size mismatch (%d vs %zd)\n", strPtr - buffer, totalSize);
574 //dvmPrintHexDump(buffer, totalSize);
    [all...]
  /external/opencore/nodes/pvprotocolenginenode/download_protocols/progressive_download/src/
pvmf_protocol_engine_progressive_download.cpp 265 uint32 totalSize = 0, prevTotalSize = 0;
268 prevTotalSize = totalSize;
269 totalSize += aOutputQueue[i].getMemFragSize();
270 if (prevTotalSize <= validSize && validSize < totalSize)
272 if (validSize < totalSize && i < aOutputQueue.size() - 1)
281 aUseAllNewDownloadData = (validSize == totalSize) &
  /external/opencore/protocols/http_parcom/src/
oscl_variablesize_mem_pool.h 199 uint32 totalSize = 0;
202 totalSize += iFreeMemChunkList[i].len;
204 return totalSize;
211 uint32 totalSize = 0;
214 totalSize += iUsedMemChunkList[i].len;
216 return totalSize;
  /external/webkit/WebCore/platform/
Scrollbar.h 64 int totalSize() const { return m_totalSize; }
79 void setProportion(int visibleSize, int totalSize);
  /external/icu4c/common/
rbbirb.cpp 165 int32_t totalSize = headerSize + forwardTableSize + reverseTableSize
169 RBBIDataHeader *data = (RBBIDataHeader *)uprv_malloc(totalSize);
174 uprv_memset(data, 0, totalSize);
182 data->fLength = totalSize;
ucnvsel.cpp 182 int32_t totalSize = 0;
185 totalSize +=
188 // 4-align the totalSize to 4-align the size of the serialized form
189 int32_t encodingStrPadding = totalSize & 3;
193 newSelector->encodingStrLength = totalSize += encodingStrPadding;
194 char* allStrings = (char*) uprv_malloc(totalSize);
316 int32_t totalSize =
322 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize;
323 if (totalSize > bufferCapacity) {
325 return totalSize;
    [all...]
rbbidata.cpp 337 int32_t totalSize = headerSize + breakDataLength;
339 return totalSize;
345 if (length < totalSize) {
446 return totalSize;
triedict.cpp     [all...]
  /frameworks/base/tools/aapt/
StringPool.cpp 251 const size_t totalSize = lenSize + encLenSize +
254 void* dat = (void*)pool->editData(preSize + strPos + totalSize);
276 strPos += totalSize;
298 const size_t totalSize = (N*sizeof(ResStringPool_span))
302 uint8_t* dat = (uint8_t*)pool->editData(preSize + styPos + totalSize);
316 styPos += totalSize;
  /external/webkit/WebKit/win/Interfaces/
IWebScrollBarPrivate.idl 49 HRESULT setProportion([in] int visibleSize, [in] int totalSize);
  /external/webkit/WebKit/win/
WebScrollBar.h 76 /* [in] */ int totalSize);
WebScrollBar.cpp 129 /* [in] */ int totalSize)
131 m_scrollBar->setProportion(visibleSize, totalSize);
  /frameworks/base/include/utils/
BackupHelpers.h 40 int totalSize;
  /frameworks/base/media/libstagefright/
Prefetcher.cpp 68 bool getCacheDurationUs(int64_t *durationUs, size_t *totalSize = NULL);
369 int64_t *durationUs, size_t *totalSize) {
373 if (totalSize != NULL) {
374 *totalSize = mCacheSizeBytes;
  /dalvik/vm/native/
dalvik_system_SamplingProfiler.c 567 int totalSize = 4; // version, # of classes
568 dvmHashForeach(byClass, calculateSnapshotEntrySize, &totalSize);
572 = dvmAllocPrimitiveArray('B', totalSize, ALLOC_DEFAULT);
589 if (actualSize != totalSize) {
590 LOGE("expected: %d, actual: %d", totalSize, actualSize);
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 314 int totalSize = 0;
324 totalSize += 4 + nameBytes.length;
329 totalSize += 4;
332 totalSize += 4 + valueBytes.length;
343 byte[] result = new byte[totalSize];
  /external/webkit/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 149 DWORD totalSize = GetGlyphOutlineW(dc, glyph, GGO_GLYPH_INDEX | GGO_NATIVE,
151 if (totalSize == GDI_ERROR)
155 const char* endGlyph = &buffer[totalSize];
  /dalvik/vm/compiler/
CompilerIR.h 146 int totalSize; // header + code size
  /external/webkit/WebCore/platform/chromium/
ScrollbarThemeChromium.cpp 110 const float percent = static_cast<float>(i->y()) / scrollbar->totalSize();
  /external/webkit/WebCore/platform/network/curl/
ResourceHandleManager.cpp 185 size_t totalSize = size * nmemb;
194 return totalSize;
203 d->client()->didReceiveData(job, static_cast<char*>(ptr), totalSize, 0);
204 return totalSize;
228 size_t totalSize = size * nmemb;
231 String header(static_cast<const char*>(ptr), totalSize);
273 return totalSize;
287 return totalSize;
  /packages/apps/Browser/tests/src/com/android/browser/
WebStorageSizeManagerUnitTests.java 55 public void setTotalSizeBytes(long totalSize) {
56 mTotalSize = totalSize;

Completed in 846 milliseconds

1 2 3