Searched refs:currentSize (Results 1 – 7 of 7) sorted by relevance
/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/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 );
|