/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) {
|
/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/Source/platform/scroll/ |
ScrollbarThemeOverlay.cpp | 61 if (!scrollbar->totalSize()) 65 float proportion = static_cast<float>(scrollbar->currentPos()) / scrollbar->totalSize(); 73 if (!scrollbar->totalSize()) 76 float proportion = static_cast<float>(scrollbar->visibleSize()) / scrollbar->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/chromium_org/third_party/WebKit/Source/web/tests/ |
BitmapImageTest.cpp | 122 size_t totalSize = decodedSize(); 128 EXPECT_GE(m_imageObserver.m_lastDecodedSizeChangedDelta, -static_cast<int>(totalSize - size)); 139 size_t totalSize = decodedSize(); 140 EXPECT_GT(totalSize, 0u); 142 EXPECT_EQ(-static_cast<int>(totalSize), m_imageObserver.m_lastDecodedSizeChangedDelta);
|
/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 | 261 totalSize: function() 291 sizeValue = (size / this.totalSize()) * 100 + "%"; 356 var totalSize = this.totalSize(); 361 from = Math.round(totalSize * from); 369 minMainSize = Math.round(totalSize * minMainSize); 373 var to = totalSize - minMainSize; 381 if (toInPercents && sidebarSize >= from && from < totalSize) 383 if (fromInPercents && sidebarSize <= to && to < totalSize) 411 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/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/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/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/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/platform/exported/ |
WebScrollbarThemeClientImpl.cpp | 174 return totalSize() - maximum(); 177 int WebScrollbarThemeClientImpl::totalSize() const 179 return m_scrollbar->totalSize();
|
WebScrollbarImpl.h | 48 virtual int totalSize() const OVERRIDE;
|
/device/lge/mako/camera/inc/ |
omx_jpeg_ext.h | 53 int totalSize;
|