/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
InstAlloc.c | 32 pms->TotalSize = 3; 56 pms->TotalSize += Size; 73 if (pms->TotalSize > 3) 75 return(pms->TotalSize); 91 pms[0].TotalSize = 3; 97 pms[1].TotalSize = 3; 103 pms[2].TotalSize = 3; 109 pms[3].TotalSize = 3; 125 pms[0].TotalSize = 3; 129 pms[1].TotalSize = 3 [all...] |
/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); 150 reply.read(dstPtr, totalSize); 241 size_t totalSize = data.readInt32(); 242 void *srcData = malloc(totalSize); 243 data.read(srcData, totalSize); 258 dstPtr = malloc(totalSize); [all...] |
/frameworks/av/media/libstagefright/rtsp/ |
ARTPAssembler.cpp | 83 size_t totalSize = 0; 87 totalSize += (*it)->size() + 7; 90 sp<ABuffer> accessUnit = new ABuffer(totalSize); 130 size_t totalSize = 0; 133 totalSize += (*it)->size(); 136 sp<ABuffer> accessUnit = new ABuffer(totalSize);
|
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 | 133 size_t totalSize = 0; 138 totalSize += unit->size(); 142 sp<ABuffer> accessUnit = new ABuffer(totalSize);
|
/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/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...] |
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
StorageVolumePreferenceCategory.java | 142 final long totalSize = bundle.getLong(StorageMeasurement.TOTAL_SIZE); 144 updateApproximate(totalSize, availSize); 149 final long totalSize = bundle.getLong(StorageMeasurement.TOTAL_SIZE); 155 updateExact(totalSize, availSize, appsUsed, downloadsSize, miscSize, 310 public void updateApproximate(long totalSize, long availSize) { 311 mPreferences[TOTAL_SIZE].setSummary(formatSize(totalSize)); 314 final long usedSize = totalSize - availSize; 317 mUsageBarPreference.addEntry(usedSize / (float) totalSize, android.graphics.Color.GRAY); 323 public void updateExact(long totalSize, long availSize, long appsSize, long downloadsSize, 327 mPreferences[TOTAL_SIZE].setSummary(formatSize(totalSize)); [all...] |
/frameworks/av/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) { 434 && mCacheOffset + mCache->totalSize() - mLastAccessPos 452 ALOGI("restarting prefetcher, totalSize = %d", mCache->totalSize()); 466 && offset + size <= mCacheOffset + mCache->totalSize()) { 501 return mCacheOffset + mCache->totalSize(); 517 off64_t lastBytePosCached = mCacheOffset + mCache->totalSize(); [all...] |
/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/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...] |
/dalvik/vm/ |
DvmDex.cpp | 54 u4 totalSize = sizeof(DvmDex) + 57 u1 *blob = (u1 *)dvmAllocRegion(totalSize, 182 u4 totalSize; 187 totalSize = pDvmDex->pHeader->stringIdsSize * sizeof(struct StringObject*); 188 totalSize += pDvmDex->pHeader->typeIdsSize * sizeof(struct ClassObject*); 189 totalSize += pDvmDex->pHeader->methodIdsSize * sizeof(struct Method*); 190 totalSize += pDvmDex->pHeader->fieldIdsSize * sizeof(struct Field*); 191 totalSize += sizeof(DvmDex); 198 munmap(pDvmDex, 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;
|
/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;
|
/external/jmonkeyengine/engine/src/desktop/jme3tools/converters/ |
MipMapGenerator.java | 90 int totalSize = 0; 97 totalSize += converted.getData(0).capacity(); 111 ByteBuffer combinedData = BufferUtils.createByteBuffer(totalSize);
|
/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/html/canvas/ |
ArrayBuffer.cpp | 90 unsigned totalSize = numElements * elementByteSize; 91 if (totalSize / numElements != elementByteSize)
|
/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...] |
TerrainPatch.java | 90 protected int totalSize;
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) {
688 this.totalSize = totalSize; [all...] |
/external/webkit/Source/WebCore/xml/ |
XMLHttpRequestProgressEvent.idl | 33 readonly attribute unsigned long long totalSize;
|
/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/icu4c/common/ |
ucnvsel.cpp | 183 int32_t totalSize = 0; 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 = 321 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize; 322 if (totalSize > bufferCapacity) { 324 return totalSize; [all...] |
/external/webkit/Source/WebKit/chromium/public/ |
WebApplicationCacheHost.h | 103 long long totalSize; 104 CacheInfo() : creationTime(0), updateTime(0), totalSize(0) { }
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/ |
NativeHeapLabelProvider.java | 109 public void setTotalSize(long totalSize) { 110 mTotalSize = totalSize;
|