HomeSort by relevance Sort by last modified time
    Searched defs:totalSize (Results 51 - 75 of 121) sorted by null

1 23 4 5

  /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...]
WAVExtractor.cpp 149 size_t totalSize = U32_LE_AT(&header[4]);
152 size_t remainingSize = totalSize;
OggExtractor.cpp 430 size_t totalSize = 0;;
432 totalSize += page->mLace[i];
447 return sizeof(header) + page->mNumSegments + totalSize;
  /frameworks/base/tools/aapt/
StringPool.cpp 432 const size_t totalSize = lenSize + encLenSize +
435 void* dat = (void*)pool->editData(preSize + strPos + totalSize);
457 strPos += totalSize;
479 const size_t totalSize = (N*sizeof(ResStringPool_span))
483 uint8_t* dat = (uint8_t*)pool->editData(preSize + styPos + totalSize);
497 styPos += totalSize;
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
AttachmentsView.java 188 long totalSize = 0;
190 totalSize += attachment.size;
192 return totalSize;
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg.c 540 int32_t totalSize = 0;
554 totalSize = p_src_buf->buf_size;
563 CDBG_HIGH("%s:%d] yOffset = %d, cbcrOffset = (%d %d), totalSize = %d,"
568 totalSize,
600 int32_t totalSize = 0;
    [all...]
  /external/lzma/C/
Xz.h 102 UInt64 totalSize;
  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.cpp 540 size_t totalSize = 0;
576 size_t auSize = 4 * nals.size() + totalSize;
636 totalSize += nalSize;
  /hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg.c 538 int32_t totalSize = 0;
552 totalSize = p_src_buf->buf_size;
561 CDBG_HIGH("%s:%d] yOffset = %d, cbcrOffset = (%d %d), totalSize = %d,"
566 totalSize,
598 int32_t totalSize = 0;
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
SuperFloppyFormatter.java 366 final int totalSize = bps * nbTotalSectors;
367 if (totalSize >= MAX_DIRECTORY * 5 * 32) {
370 return totalSize / (5 * 32);
  /external/chromium_org/third_party/icu/source/tools/gennorm2/
n2builder.cpp     [all...]
  /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...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetNavigationTester.java 456 private int totalSize(Iterable<? extends Entry<?>> entries) {
533 assertEquals(totalSize(expected), subMultiset.size());
  /external/icu4c/tools/gennorm2/
n2builder.cpp     [all...]
  /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...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
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...]
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp     [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageMeasurement.java 99 public long totalSize;
147 public void updateApproximate(StorageMeasurement meas, long totalSize, long availSize);
402 details.totalSize = mTotalSize;
  /dalvik/vm/compiler/
CompilerIR.h 218 int totalSize; // header + code size
  /external/chromium_org/third_party/icu/source/common/
triedict.cpp     [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.cpp 52 return (copyCoderSpec->TotalSize == size ? S_OK : E_FAIL);
1044 UInt64 totalSize = 0;
1051 totalSize += ui.Size;
1052 if (totalSize > options.NumSolidBytes)
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp 975 size_t totalSize = (size_t)bufferSize * numThreads;
976 if (totalSize / numThreads != bufferSize)
978 if (!buffer.Alloc(totalSize))
1025 UInt64 size = (UInt64)numCycles * totalSize;
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 734 int totalSize = 0;
763 totalSize += INTEGER_BYTE_COUNT + keyBytes.length;
767 totalSize += INTEGER_BYTE_COUNT + valueBytes.length;
778 byte[] result = new byte[totalSize];
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 702 int totalSize = 0;
705 totalSize += media.getMediaSize();
709 Log.v(TAG, "finalResize: new message size: " + totalSize);
712 if (totalSize > MmsConfig.getMaxMessageSize()) {
715 setCurrentMessageSize(totalSize);
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_mac.cpp     [all...]

Completed in 1771 milliseconds

1 23 4 5