/external/proguard/src/proguard/evaluation/ |
D | Stack.java | 39 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/ |
D | LruCache.java | 17 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/ |
D | LruBitmapPool.java | 29 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/ |
D | Registry.cpp | 240 UInt32 currentSize = 0; in QueryValue() local 241 LONG res = RegQueryValueEx(_object, (LPTSTR)name, NULL, &type, NULL, (DWORD *)¤tSize); 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 *)¤tSize); in QueryValue() 270 res = QueryValue(name, value.GetBuffer(currentSize), currentSize); in QueryValue()
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/ |
D | SampleList.java | 143 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/ |
D | org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.equinox.registry_3.5.0.v20100503.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.jface_3.6.1.M20100825-0800.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/zxing/core/ |
D | core.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/proguard/lib/ |
D | proguard.jar | META-INF/
META-INF/MANIFEST.MF
proguard/optimize/WriteOnlyFieldFilter.class
WriteOnlyFieldFilter ... |
/external/sqlite/dist/ |
D | sqlite3.c | 44184 i64 currentSize, newSize; 44188 rc = sqlite3OsFileSize(pPager->fd, ¤tSize); 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/ |
D | sqlite3.c | 44166 i64 currentSize, newSize; 44170 rc = sqlite3OsFileSize(pPager->fd, ¤tSize); 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 );
|