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

1 2 3 4 5 6 7

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequestProgressEvent.idl 29 readonly attribute unsigned long long totalSize;
XMLHttpRequestProgressEvent.h 48 unsigned long long totalSize() const { return total(); }
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
DynamicArray.java 63 int totalSize = 1;
68 totalSize *= size;
70 this.array = (T[]) new Object[totalSize];
82 int totalSize = 1;
87 totalSize *= size;
89 if (totalSize != data.length) {
  /system/extras/tests/bionic/libc/common/
bench_stdio.c 55 int totalSize = sizeof(buffer);
56 for ( ; totalSize > 0; totalSize -= chunkSize) {
63 int totalSize = sizeof(buffer);
64 for ( ; totalSize > 0; totalSize -= chunkSize) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ScrollbarThemeChromiumOverlay.cpp 55 if (!scrollbar->totalSize())
59 float proportion = static_cast<float>(scrollbar->currentPos()) / scrollbar->totalSize();
67 if (!scrollbar->totalSize())
70 float proportion = (float)scrollbar->visibleSize() / scrollbar->totalSize();
  /dalvik/vm/
DvmDex.cpp 54 u4 totalSize = sizeof(DvmDex) +
57 u1 *blob = (u1 *)dvmAllocRegion(totalSize,
184 u4 totalSize;
191 totalSize = pDvmDex->pHeader->stringIdsSize * sizeof(struct StringObject*);
192 totalSize += pDvmDex->pHeader->typeIdsSize * sizeof(struct ClassObject*);
193 totalSize += pDvmDex->pHeader->methodIdsSize * sizeof(struct Method*);
194 totalSize += pDvmDex->pHeader->fieldIdsSize * sizeof(struct Field*);
195 totalSize += sizeof(DvmDex);
202 munmap(pDvmDex, totalSize);
  /external/chromium_org/third_party/WebKit/public/platform/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 118 private int totalSize;
137 this.totalSize = size;
151 totalSize += size;
181 totalSize + " bytes total\n");
186 int average = totalSize / count;
  /external/dexmaker/src/dx/java/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;
  /frameworks/av/media/libmedia/
ICrypto.cpp 121 size_t totalSize = 0;
123 totalSize += subSamples[i].mNumBytesOfEncryptedData;
124 totalSize += subSamples[i].mNumBytesOfClearData;
127 data.writeInt32(totalSize);
128 data.write(srcPtr, totalSize);
237 size_t totalSize = data.readInt32();
238 void *srcData = malloc(totalSize);
239 data.read(srcData, totalSize);
254 dstPtr = malloc(totalSize);
277 CHECK_LE(result, static_cast<ssize_t>(totalSize));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SplitView.js 258 totalSize: function()
288 sizeValue = (size / this.totalSize()) * 100 + "%";
360 var totalSize = this.totalSize();
365 from = Math.round(totalSize * from);
373 minMainSize = Math.round(totalSize * minMainSize);
377 var to = totalSize - minMainSize;
385 if (toInPercents && sidebarSize >= from && from < totalSize)
387 if (fromInPercents && sidebarSize <= to && to < totalSize)
415 this._dragOffset = (this._secondIsSidebar ? this.totalSize() - this._sidebarSize : this._sidebarSize) - (this._isVertical ? event.pageX : event.pageY)
    [all...]
ShowMoreDataGridNode.js 83 var totalSize = this._endPosition - this._startPosition;
84 if (totalSize > this._chunkSize) {
91 this.showAll.textContent = WebInspector.UIString("Show all %d", totalSize);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDSLoader.java 433 * @param totalSize Total size of the image in bytes including the mipmaps
437 public ByteBuffer readGrayscale2D(boolean flip, int totalSize) throws IOException {
438 ByteBuffer buffer = BufferUtils.createByteBuffer(totalSize);
468 * @param totalSize Size of the image in bytes including mipmaps
472 public ByteBuffer readRGB2D(boolean flip, int totalSize) throws IOException {
489 ByteBuffer dataBuffer = BufferUtils.createByteBuffer(totalSize);
534 * @param totalSize Total size of the image in bytes, including mipmaps
538 public ByteBuffer readDXT2D(boolean flip, int totalSize) throws IOException {
541 ByteBuffer buffer = BufferUtils.createByteBuffer(totalSize);
571 * @param totalSize Total size of the image in bytes including the mipmap
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPAssembler.cpp 77 size_t totalSize = 0;
81 totalSize += (*it)->size() + 7;
84 sp<ABuffer> accessUnit = new ABuffer(totalSize);
124 size_t totalSize = 0;
127 totalSize += (*it)->size();
130 sp<ABuffer> accessUnit = new ABuffer(totalSize);
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollbarThemeClient.h 71 virtual int totalSize() const = 0;
  /external/freetype/src/cff/
cf2arrst.c 70 arrstack->totalSize = 0;
85 arrstack->totalSize = 0;
113 if ( !FT_REALLOC( arrstack->ptr, arrstack->totalSize, newSize ) )
116 arrstack->totalSize = newSize;
  /external/skia/src/utils/
SkFrontBufferedStream.cpp 54 SkDEBUGCODE(const size_t totalSize = size;)
84 SkASSERT(size + readSoFar == totalSize);
114 SkASSERT(totalSize == readSoFar || fStream->isAtEnd());
122 SkASSERT(size + readSoFar == totalSize);
  /external/chromium_org/third_party/WebKit/public/web/
WebApplicationCacheHost.h 102 long long totalSize;
103 CacheInfo() : creationTime(0), updateTime(0), totalSize(0) { }
  /external/chromium_org/third_party/angle_dx11/src/compiler/
SymbolTable.cpp 63 size_t totalSize = 0;
66 totalSize = structure->objectSize();
68 totalSize = size * size;
70 totalSize = size;
74 if (arraySize > INT_MAX / totalSize)
75 totalSize = INT_MAX;
77 totalSize *= arraySize;
80 return totalSize;
  /external/guava/guava/src/com/google/common/collect/
AbstractMultimap.java 109 private transient int totalSize;
126 totalSize = 0;
129 totalSize += values.size();
167 return totalSize;
172 return totalSize == 0;
204 totalSize++;
229 totalSize--;
257 totalSize += (collection.size() - oldSize);
287 totalSize -= collection.size();
292 totalSize++
    [all...]
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 46 size_t totalSize() const {
297 mSource->reconnectAtOffset(mCacheOffset + mCache->totalSize());
317 mCacheOffset + mCache->totalSize(), page->mData, kPageSize);
373 if (mFetching && mCache->totalSize() >= mHighwaterThresholdBytes) {
442 && mCacheOffset + mCache->totalSize() - mLastAccessPos
460 ALOGI("restarting prefetcher, totalSize = %d", mCache->totalSize());
474 && offset + size <= mCacheOffset + mCache->totalSize()) {
509 return mCacheOffset + mCache->totalSize();
525 off64_t lastBytePosCached = mCacheOffset + mCache->totalSize();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebScrollbarThemeClientImpl.cpp 168 return totalSize() - maximum();
171 int WebScrollbarThemeClientImpl::totalSize() const
173 return m_scrollbar->totalSize();
  /device/lge/mako/camera/inc/
omx_jpeg_ext.h 53 int totalSize;
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
MemoryCacheTest.cpp 152 const unsigned totalSize = lowPrioritySize + highPrioritySize;
176 ASSERT_EQ(memoryCache()->liveSize(), totalSize);
186 ASSERT_EQ(memoryCache()->liveSize(), totalSize - lowPriorityMockDecodeSize);
192 ASSERT_EQ(memoryCache()->liveSize(), totalSize - lowPriorityMockDecodeSize - highPriorityMockDecodeSize);

Completed in 1329 milliseconds

1 2 3 4 5 6 7