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

1 2 3 4

  /external/webkit/Source/WebCore/xml/
XMLHttpRequestProgressEvent.idl 33 readonly attribute unsigned long long totalSize;
XMLHttpRequestProgressEvent.h 47 unsigned long long totalSize() const { return total(); }
  /external/webkit/Source/WebKit/chromium/public/mac/
WebThemeEngine.h 70 int totalSize;
  /dalvik/dexgen/src/com/android/dexgen/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;
  /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;
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageVolumePreferenceCategory.java 138 final long totalSize = bundle.getLong(StorageMeasurement.TOTAL_SIZE);
140 updateApproximate(totalSize, availSize);
145 final long totalSize = bundle.getLong(StorageMeasurement.TOTAL_SIZE);
151 updateExact(totalSize, availSize, appsUsed, downloadsSize, miscSize,
291 public void updateApproximate(long totalSize, long availSize) {
292 mPreferences[TOTAL_SIZE].setSummary(formatSize(totalSize));
295 final long usedSize = totalSize - availSize;
298 mUsageBarPreference.addEntry(usedSize / (float) totalSize, android.graphics.Color.GRAY);
304 public void updateExact(long totalSize, long availSize, long appsSize, long downloadsSize,
308 mPreferences[TOTAL_SIZE].setSummary(formatSize(totalSize));
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
ArrayBuffer.cpp 90 unsigned totalSize = numElements * elementByteSize;
91 if (totalSize / numElements != elementByteSize)
  /external/webkit/Source/WebKit/chromium/public/
WebApplicationCacheHost.h 103 long long totalSize;
104 CacheInfo() : creationTime(0), updateTime(0), totalSize(0) { }
  /frameworks/base/media/libstagefright/
NuCachedSource2.cpp 46 size_t totalSize() const {
297 mSource->reconnectAtOffset(mCacheOffset + mCache->totalSize());
315 mCacheOffset + mCache->totalSize(), page->mData, kPageSize);
365 if (mFetching && mCache->totalSize() >= mHighwaterThresholdBytes) {
433 && mCacheOffset + mCache->totalSize() - mLastAccessPos
451 LOGI("restarting prefetcher, totalSize = %d", mCache->totalSize());
465 && offset + size <= mCacheOffset + mCache->totalSize()) {
500 return mCacheOffset + mCache->totalSize();
516 off64_t lastBytePosCached = mCacheOffset + mCache->totalSize();
    [all...]
  /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...]
  /frameworks/base/media/libstagefright/rtsp/
AAVCAssembler.cpp 208 size_t totalSize = size - 2;
253 totalSize += size - 2;
276 // Leave room for the header. So far totalSize did not include the
278 ++totalSize;
280 sp<ABuffer> unit = new ABuffer(totalSize);
301 unit->setRange(0, totalSize);
315 size_t totalSize = 0;
318 totalSize += 4 + (*it)->size();
321 sp<ABuffer> accessUnit = new ABuffer(totalSize);
AH263Assembler.cpp 131 size_t totalSize = 0;
136 totalSize += unit->size();
140 sp<ABuffer> accessUnit = new ABuffer(totalSize);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeHeapLabelProvider.java 107 public void setTotalSize(long totalSize) {
108 mTotalSize = totalSize;
NativeHeapDataImporter.java 142 int totalSize = sc.nextInt();
143 if (totalSize != size * allocations) {
  /dalvik/vm/
AllocTracker.cpp 551 size_t baseSize, totalSize;
554 totalSize = baseSize;
555 totalSize += computeStringTableSize(classNames);
556 totalSize += computeStringTableSize(methodNames);
557 totalSize += computeStringTableSize(fileNames);
558 LOGI("Generated AT, size is %zd/%zd", baseSize, totalSize);
565 buffer = (u1*) malloc(totalSize);
571 if (strPtr - buffer != (int)totalSize) {
572 LOGE("size mismatch (%d vs %zd)", strPtr - buffer, totalSize);
575 //dvmPrintHexDump(buffer, totalSize);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
TilingData.cpp 45 static int computeNumTiles(int maxTextureSize, int totalSize, int borderTexels)
48 return totalSize > 0 && maxTextureSize >= totalSize ? 1 : 0;
50 int numTiles = max(1, 1 + (totalSize - 1 - 2 * borderTexels) / (maxTextureSize - 2 * borderTexels));
51 return totalSize > 0 ? numTiles : 0;
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Types.h 174 int totalSize;
177 totalSize = getStructSize();
179 totalSize = size * size;
181 totalSize = size;
184 totalSize *= std::max(getArraySize(), getMaxArraySize());
186 return totalSize;
  /external/webkit/Source/WebCore/platform/
Scrollbar.h 67 int totalSize() const { return m_totalSize; }
81 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 181 int32_t totalSize = 0;
184 totalSize +=
187 // 4-align the totalSize to 4-align the size of the serialized form
188 int32_t encodingStrPadding = totalSize & 3;
192 newSelector->encodingStrLength = totalSize += encodingStrPadding;
193 char* allStrings = (char*) uprv_malloc(totalSize);
313 int32_t totalSize =
319 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize;
320 if (totalSize > bufferCapacity) {
322 return totalSize;
    [all...]
  /external/webkit/Source/WebCore/platform/sql/
SQLiteDatabase.h 93 int64_t totalSize();
  /frameworks/base/tools/aapt/
StringPool.cpp 259 const size_t totalSize = lenSize + encLenSize +
262 void* dat = (void*)pool->editData(preSize + strPos + totalSize);
284 strPos += totalSize;
306 const size_t totalSize = (N*sizeof(ResStringPool_span))
310 uint8_t* dat = (uint8_t*)pool->editData(preSize + styPos + totalSize);
324 styPos += totalSize;
  /external/webkit/Source/WebCore/platform/efl/
ScrollbarEfl.cpp 86 value = messageFloat->val * (that->totalSize() - that->visibleSize());
159 int tSize = totalSize();
  /external/webkit/Source/WebCore/platform/network/curl/
ResourceHandleManager.cpp 188 size_t totalSize = size * nmemb;
197 return totalSize;
206 d->client()->didReceiveData(job, static_cast<char*>(ptr), totalSize, 0);
207 return totalSize;
231 size_t totalSize = size * nmemb;
234 String header(static_cast<const char*>(ptr), totalSize);
276 return totalSize;
290 return totalSize;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebScrollBarPrivate.idl 49 HRESULT setProportion([in] int visibleSize, [in] int totalSize);

Completed in 2873 milliseconds

1 2 3 4