Searched refs:totalSize (Results 1 - 25 of 76) sorted by relevance

1234

/external/webkit/Source/WebCore/xml/
H A DXMLHttpRequestProgressEvent.idl33 readonly attribute unsigned long long totalSize;
H A DXMLHttpRequestProgressEvent.h47 unsigned long long totalSize() const { return total(); } function in class:WebCore::XMLHttpRequestProgressEvent
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DDynamicArray.java63 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) {
/external/webkit/Source/WebKit/chromium/public/mac/
H A DWebThemeEngine.h70 int totalSize; member in struct:WebKit::WebThemeEngine::ScrollbarInfo
/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/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DDDSLoader.java433 * @param totalSize Total size of the image in bytes including the mipmaps
437 public ByteBuffer readGrayscale2D(boolean flip, int totalSize) throws IOException { argument
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 { argument
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 { argument
541 ByteBuffer buffer = BufferUtils.createByteBuffer(totalSize);
571 * @param totalSize Tota
575 readGrayscale3D(boolean flip, int totalSize) argument
613 readRGB3D(boolean flip, int totalSize) argument
681 readDXT3D(boolean flip, int totalSize) argument
[all...]
/external/webkit/Source/WebCore/html/canvas/
H A DArrayBuffer.cpp90 unsigned totalSize = numElements * elementByteSize; local
91 if (totalSize / numElements != elementByteSize)
/external/webkit/Source/WebKit/chromium/public/
H A DWebApplicationCacheHost.h103 long long totalSize; member in struct:WebKit::WebApplicationCacheHost::CacheInfo
104 CacheInfo() : creationTime(0), updateTime(0), totalSize(0) { }
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMultimap.java109 private transient int totalSize; field in class:AbstractMultimap
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...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DTerrainQuad.java96 protected int totalSize; // the size of this entire terrain tree (on one side) field in class:TerrainQuad
98 protected int size; // size of this quad, can be between totalSize and patchSize
144 * @param totalSize the size of this entire terrain tree (on one side)
148 public TerrainQuad(String name, int patchSize, int totalSize, float[] heightMap) { argument
149 this(name, patchSize, totalSize, Vector3f.UNIT_XYZ, heightMap);
158 * @param totalSize the size of this entire terrain tree (on one side)
162 public TerrainQuad(String name, int patchSize, int quadSize, int totalSize, float[] heightMap) { argument
163 this(name, patchSize, totalSize, quadSize, Vector3f.UNIT_XYZ, heightMap);
171 * @param size size of this quad, can be between totalSize and patchSize
188 * @param totalSize th
194 TerrainQuad(String name, int patchSize, int totalSize, int quadSize, Vector3f scale, float[] heightMap) argument
201 TerrainQuad(String name, int patchSize, int quadSize, Vector3f scale, float[] heightMap, int totalSize, Vector2f offset, float offsetAmount) argument
[all...]
H A DTerrainPatch.java90 protected int totalSize; field in class:TerrainPatch
160 * @param totalSize
169 float[] heightMap, Vector3f origin, int totalSize,
174 this.totalSize = totalSize;
181 Mesh m = geomap.createMesh(stepScale, new Vector2f(1,1), offset, offsetAmount, totalSize, false);
631 return totalSize;
684 * @param totalSize
687 public void setTotalSize(int totalSize) { argument
688 this.totalSize
168 TerrainPatch(String name, int size, Vector3f stepScale, float[] heightMap, Vector3f origin, int totalSize, Vector2f offset, float offsetAmount) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DTilingData.cpp45 static int computeNumTiles(int maxTextureSize, int totalSize, int borderTexels) argument
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/jmonkeyengine/engine/src/desktop/jme3tools/converters/
H A DMipMapGenerator.java90 int totalSize = 0;
97 totalSize += converted.getData(0).capacity();
111 ByteBuffer combinedData = BufferUtils.createByteBuffer(totalSize);
/external/skia/src/gpu/
H A DGrMemoryPool.cpp136 size_t totalSize = ptrOffset + block->fFreeSize; local
137 size_t userSize = totalSize - kHeaderSize;
141 GrAssert(!(totalSize % kAlignment));
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DTypes.h174 int totalSize; local
177 totalSize = getStructSize();
179 totalSize = size * size;
181 totalSize = size;
184 totalSize *= std::max(getArraySize(), getMaxArraySize());
186 return totalSize;
H A DparseConst.cpp172 int totalSize = index + size; local
176 for (int i = index; i < totalSize; i++) {
190 for (int i = index; i < totalSize; i++) {
/external/webkit/Source/WebCore/platform/
H A DScrollbar.h67 int totalSize() const { return m_totalSize; } function in class:WebCore::Scrollbar
81 void setProportion(int visibleSize, int totalSize);
/external/icu4c/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 Ducnvsel.cpp183 int32_t totalSize = 0; local
186 totalSize +=
189 // 4-align the totalSize to 4-align the size of the serialized form
190 int32_t encodingStrPadding = totalSize & 3;
194 newSelector->encodingStrLength = totalSize += encodingStrPadding;
195 char* allStrings = (char*) uprv_malloc(totalSize);
315 int32_t totalSize = local
321 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize;
322 if (totalSize > bufferCapacity) {
324 return totalSize;
506 int32_t totalSize = ucnvsel_swap(ds, p, -1, NULL, status); local
[all...]
H A Drbbidata.cpp337 int32_t totalSize = headerSize + breakDataLength; local
339 return totalSize;
345 if (length < totalSize) {
442 return totalSize;
/external/webkit/Source/WebCore/platform/sql/
H A DSQLiteDatabase.h93 int64_t totalSize();
/external/webkit/Source/WebCore/platform/efl/
H A DScrollbarEfl.cpp86 value = messageFloat->val * (that->totalSize() - that->visibleSize());
159 int tSize = totalSize();
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceHandleManager.cpp188 size_t totalSize = size * nmemb; local
197 return totalSize;
206 d->client()->didReceiveData(job, static_cast<char*>(ptr), totalSize, 0);
207 return totalSize;
231 size_t totalSize = size * nmemb; local
234 String header(static_cast<const char*>(ptr), totalSize); local
276 return totalSize;
290 return totalSize;
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebScrollBarPrivate.idl49 HRESULT setProportion([in] int visibleSize, [in] int totalSize);
/external/webkit/Source/WebCore/inspector/front-end/
H A DCookiesTable.js134 var totalSize = 0;
136 totalSize += cookies[i].size;
137 return totalSize;

Completed in 7743 milliseconds

1234