HomeSort by relevance Sort by last modified time
    Searched refs:totalSize (Results 1 - 25 of 447) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/sun/security/jca/
JCAUtil.java 56 * cache efficient. totalSize indicates the total amount of data to
59 public static int getTempArraySize(int totalSize) {
60 return Math.min(ARRAY_SIZE, totalSize);
  /external/icu/icu4c/source/i18n/
collationdatawriter.cpp 222 int32_t totalSize = indexesLength * 4;
230 indexes[CollationDataReader::IX_REORDER_CODES_OFFSET] = totalSize;
231 totalSize += reorderCodesLength * 4;
233 indexes[CollationDataReader::IX_REORDER_TABLE_OFFSET] = totalSize;
235 totalSize += 256;
238 indexes[CollationDataReader::IX_TRIE_OFFSET] = totalSize;
242 if(totalSize < capacity) {
243 length = utrie2_serialize(data.trie, dest + totalSize,
244 capacity - totalSize, &errorCode2);
255 totalSize += length
    [all...]
  /device/generic/goldfish-opengl/system/GLESv2_enc/
gl2_enc.cpp 33 const size_t totalSize = sizeWithoutChecksum + checksumSize;
34 buf = stream->alloc(totalSize);
37 memcpy(ptr, &totalSize, 4); ptr += 4;
58 const size_t totalSize = sizeWithoutChecksum + checksumSize;
59 buf = stream->alloc(totalSize);
62 memcpy(ptr, &totalSize, 4); ptr += 4;
85 const size_t totalSize = sizeWithoutChecksum + checksumSize;
86 buf = stream->alloc(totalSize);
89 memcpy(ptr, &totalSize, 4); ptr += 4;
113 const size_t totalSize = sizeWithoutChecksum + checksumSize
    [all...]
  /external/lzma/CPP/Windows/
FileSystem.h 23 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
FileSystem.cpp 86 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize)
99 totalSize = totalSize2.QuadPart;
114 totalSize = totalSize2.QuadPart;
123 totalSize = clusterSize * (UInt64)numClusters;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DictionaryData.java 63 int totalSize = indexes[IX_TOTAL_SIZE] - offset;
67 byte[] data = new byte[totalSize];
71 Assert.assrt(totalSize % 2 == 0);
72 String data = ICUBinary.getString(bytes, totalSize / 2, totalSize & 1);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DictionaryData.java 62 int totalSize = indexes[IX_TOTAL_SIZE] - offset;
66 byte[] data = new byte[totalSize];
70 Assert.assrt(totalSize % 2 == 0);
71 String data = ICUBinary.getString(bytes, totalSize / 2, totalSize & 1);
  /packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
FetchDownloadsLoader.java 80 result.totalSize += currentFile.length();
93 public long totalSize;
101 public DownloadsResult(long totalSize, long youngestLastModified, ArrayList<File> files) {
102 this.totalSize = totalSize;
  /device/generic/goldfish-opengl/system/renderControl_enc/
renderControl_enc.cpp 33 const size_t totalSize = sizeWithoutChecksum + checksumSize;
34 buf = stream->alloc(totalSize);
37 memcpy(ptr, &totalSize, 4); ptr += 4;
74 const size_t totalSize = sizeWithoutChecksum + checksumSize;
75 buf = stream->alloc(totalSize);
78 memcpy(ptr, &totalSize, 4); ptr += 4;
120 const size_t totalSize = sizeWithoutChecksum + checksumSize;
121 buf = stream->alloc(totalSize);
124 memcpy(ptr, &totalSize, 4); ptr += 4;
165 const size_t totalSize = sizeWithoutChecksum + checksumSize
    [all...]
  /device/generic/goldfish-opengl/system/GLESv1_enc/
gl_enc.cpp 33 const size_t totalSize = sizeWithoutChecksum + checksumSize;
34 buf = stream->alloc(totalSize);
37 memcpy(ptr, &totalSize, 4); ptr += 4;
59 const size_t totalSize = sizeWithoutChecksum + checksumSize;
60 buf = stream->alloc(totalSize);
63 memcpy(ptr, &totalSize, 4); ptr += 4;
87 const size_t totalSize = sizeWithoutChecksum + checksumSize;
88 buf = stream->alloc(totalSize);
91 memcpy(ptr, &totalSize, 4); ptr += 4;
113 const size_t totalSize = sizeWithoutChecksum + checksumSize
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
EnumDirItems.h 17 virtual HRESULT ScanProgress(UInt64 numFolders, UInt64 numFiles, UInt64 totalSize, const wchar_t *path, bool isDir) = 0;
  /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;
  /frameworks/base/libs/hwui/
GpuMemoryTracker.cpp 42 int totalSize = 0;
52 gObjectStats[static_cast<int>(mType)].totalSize += delta;
96 stream << " is using " << SizePrinter{stats.totalSize};
107 return gObjectStats[static_cast<int>(type)].totalSize;
116 ATRACE_INT(buf, stats.totalSize);
  /packages/apps/StorageManager/tests/unit/src/com/android/storagemanager/deletionhelper/
FetchDownloadsLoaderTest.java 44 assertEquals(0, result.totalSize);
56 assertEquals(0, result.totalSize);
70 assertEquals(0, result.totalSize);
93 assertEquals(9, result.totalSize);
106 assertEquals(0, result.totalSize);
  /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);
  /art/tools/ahat/src/
OverviewHandler.java 55 long totalSize = 0;
57 totalSize += alloc.size;
63 DocString.format("%,14d", totalSize));
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
Allocation.java 43 long totalSize = 0;
45 totalSize += allocation.size;
47 return totalSize;
  /external/freetype/src/cff/
cf2arrst.c 70 arrstack->totalSize = 0;
85 arrstack->totalSize = 0;
113 if ( !FT_REALLOC( arrstack->ptr, arrstack->totalSize, newSize ) )
116 arrstack->totalSize = newSize;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/
cf2arrst.c 70 arrstack->totalSize = 0;
85 arrstack->totalSize = 0;
113 if ( !FT_REALLOC( arrstack->ptr, arrstack->totalSize, newSize ) )
116 arrstack->totalSize = newSize;
  /external/pdfium/third_party/freetype/src/cff/
cf2arrst.c 70 arrstack->totalSize = 0;
85 arrstack->totalSize = 0;
113 if ( !FT_REALLOC( arrstack->ptr, arrstack->totalSize, newSize ) )
116 arrstack->totalSize = newSize;
  /external/opencv3/modules/cudaimgproc/src/cuda/
build_point_list.cu 89 int totalSize = 0;
92 s_globStart[i] = totalSize;
93 totalSize += s_qsize[i];
97 const int globalOffset = atomicAdd(&g_counter, totalSize);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MultidimensionalCounter.java 61 private final int totalSize;
186 totalSize = tS;
217 index >= totalSize) {
218 throw new OutOfRangeException(index, 0, totalSize);
280 return totalSize;
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 48 size_t totalSize() const {
339 mSource->reconnectAtOffset(mCacheOffset + mCache->totalSize());
363 mCacheOffset + mCache->totalSize(), page->mData, kPageSize);
419 if (mFetching && mCache->totalSize() >= mHighwaterThresholdBytes) {
492 && mCacheOffset + mCache->totalSize() - mLastAccessPos
510 ALOGI("restarting prefetcher, totalSize = %zu", mCache->totalSize());
527 && offset + size <= mCacheOffset + mCache->totalSize()) {
567 return mCacheOffset + mCache->totalSize();
583 off64_t lastBytePosCached = mCacheOffset + mCache->totalSize();
    [all...]

Completed in 865 milliseconds

1 2 3 4 5 6 7 8 91011>>