Home
last modified time | relevance | path

Searched refs:currentSize (Results 1 – 16 of 16) sorted by relevance

/external/proguard/src/proguard/evaluation/
DStack.java39 protected int currentSize; field in Stack
108 System.arraycopy(other.values, 0, this.values, 0, other.currentSize); in copy()
111 currentSize = other.currentSize; in copy()
123 if (this.currentSize != other.currentSize) in generalize()
125 …ntException("Stacks have different current sizes ["+this.currentSize+"] and ["+other.currentSize+"… in generalize()
131 for (int index = 0; index < currentSize; index++) in generalize()
168 Arrays.fill(values, 0, currentSize, null); in clear()
170 currentSize = 0; in clear()
180 return currentSize; in size()
216 return values[currentSize - index - 1]; in getTop()
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/util/
DLruCache.java17 private int currentSize = 0; field in LruCache
75 return currentSize; in getCurrentSize()
118 currentSize += getSize(item); in put()
122 currentSize -= getSize(result); in put()
137 currentSize -= getSize(value); in remove()
156 while (currentSize > size) { in trimToSize()
159 currentSize -= getSize(toRemove); in trimToSize()
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
DLruBitmapPool.java29 private int currentSize; field in LruBitmapPool
78 currentSize += size; in put()
119 currentSize -= strategy.getSize(result); in getDirty()
149 while (currentSize > size) { in trimToSize()
152 currentSize -= strategy.getSize(removed); in trimToSize()
165 … + " currentSize=" + currentSize + " maxSize=" + maxSize + "\nStrategy=" + strategy); in dump()
/external/lzma/CPP/Windows/
DRegistry.cpp240 UInt32 currentSize = 0; in QueryValue() local
241 LONG res = RegQueryValueEx(_object, (LPTSTR)name, NULL, &type, NULL, (DWORD *)&currentSize); in QueryValue()
244 res = QueryValue(name, value.GetBuffer(currentSize), currentSize); in QueryValue()
262 UInt32 currentSize = 0; in QueryValue() local
267 res = RegQueryValueExW(_object, name, NULL, &type, NULL, (DWORD *)&currentSize); in QueryValue()
270 res = QueryValue(name, value.GetBuffer(currentSize), currentSize); in QueryValue()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
DSampleList.java143 long currentSize = b.getSize(); in initIsoFile() local
148 mdatEndCache.put((MediaDataBox) b, contentOffset + currentSize); in initIsoFile() local
154 currentOffset += currentSize; in initIsoFile()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/zxing/core/
Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/proguard/lib/
Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/optimize/WriteOnlyFieldFilter.class WriteOnlyFieldFilter ...
/external/sqlite/dist/
Dsqlite3.c44184 i64 currentSize, newSize;
44188 rc = sqlite3OsFileSize(pPager->fd, &currentSize);
44190 if( rc==SQLITE_OK && currentSize!=newSize ){
44191 if( currentSize>newSize ){
44193 }else if( (currentSize+szPage)<=newSize ){
44196 testcase( (newSize-szPage) == currentSize );
44197 testcase( (newSize-szPage) > currentSize );
/external/sqlite/dist/orig/
Dsqlite3.c44166 i64 currentSize, newSize;
44170 rc = sqlite3OsFileSize(pPager->fd, &currentSize);
44172 if( rc==SQLITE_OK && currentSize!=newSize ){
44173 if( currentSize>newSize ){
44175 }else if( (currentSize+szPage)<=newSize ){
44178 testcase( (newSize-szPage) == currentSize );
44179 testcase( (newSize-szPage) > currentSize );