HomeSort by relevance Sort by last modified time
    Searched full:totalsize (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /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);
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...]
  /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);
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);
  /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...]
  /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/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,
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);
  /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/skia/src/gpu/
GrMemoryPool.cpp 136 size_t totalSize = ptrOffset + block->fFreeSize;
137 size_t userSize = totalSize - kHeaderSize;
141 GrAssert(!(totalSize % kAlignment));
  /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) { }
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageVolumePreferenceCategory.java 296 public void updateApproximate(long totalSize, long availSize) {
297 mItemTotal.setSummary(formatSize(totalSize));
300 mTotalSize = totalSize;
302 final long usedSize = totalSize - availSize;
305 mUsageBarPreference.addEntry(0, usedSize / (float) totalSize, android.graphics.Color.GRAY);
326 mItemTotal.setSummary(formatSize(details.totalSize));
404 public void updateApproximate(StorageMeasurement meas, long totalSize, long availSize) {
406 totalSize, availSize }).sendToTarget();
  /external/oprofile/libopagent/
jitdump.h 44 u32 totalsize; member in struct:jitheader

Completed in 1194 milliseconds

1 2 3 4 5 6 7