/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XMLHttpRequestProgressEvent.h | 48 unsigned long long totalSize() const { return total(); }
|
/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/wtf/ |
ArrayBufferContents.cpp | 48 unsigned totalSize = numElements * elementByteSize; 49 if (totalSize / numElements != elementByteSize) {
|
/external/chromium_org/third_party/freetype/src/cff/ |
cf2arrst.h | 60 size_t totalSize; /* total bytes allocated */
|
/external/freetype/src/cff/ |
cf2arrst.h | 60 size_t totalSize; /* total bytes allocated */
|
/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/icu/source/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;
|
rbbidata.cpp | 337 int32_t totalSize = headerSize + breakDataLength; 339 return totalSize; 345 if (length < totalSize) { 442 return totalSize;
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrMemoryPool.cpp | 136 size_t totalSize = ptrOffset + block->fFreeSize; 137 size_t userSize = totalSize - kHeaderSize; 141 SkASSERT(!(totalSize % kAlignment));
|
/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;
|
rbbidata.cpp | 337 int32_t totalSize = headerSize + breakDataLength; 339 return totalSize; 345 if (length < totalSize) { 442 return totalSize;
|
/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) {
|
/external/skia/src/gpu/ |
GrMemoryPool.cpp | 136 size_t totalSize = ptrOffset + block->fFreeSize; 137 size_t userSize = totalSize - kHeaderSize; 141 SkASSERT(!(totalSize % kAlignment));
|
/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);
|
AH263Assembler.cpp | 159 size_t totalSize = 0; 164 totalSize += unit->size(); 168 sp<ABuffer> accessUnit = new ABuffer(totalSize);
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebScrollbarImpl.cpp | 69 int WebScrollbarImpl::totalSize() const 71 return m_scrollbar->totalSize();
|
WebScrollbarThemeClientImpl.cpp | 174 return totalSize() - maximum(); 177 int WebScrollbarThemeClientImpl::totalSize() const 179 return m_scrollbar->totalSize();
|
/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/chromium_org/third_party/WebKit/public/platform/mac/ |
WebThemeEngine.h | 70 int totalSize;
|
/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;
|
parseConst.cpp | 179 size_t totalSize = index + size; 183 for (size_t i = index; i < totalSize; i++) { 197 for (size_t i = index; i < totalSize; i++) {
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/ |
TerrainQuad.java | 96 protected int totalSize; // the size of this entire terrain tree (on one side)
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) {
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) {
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 the size of this entire terrain tree (on one side) [all...] |
/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;
|