Searched refs:totalSize (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/jca/
H A DJCAUtil.java50 * cache efficient. totalSize indicates the total amount of data to
53 public static int getTempArraySize(int totalSize) { argument
54 return Math.min(ARRAY_SIZE, totalSize);
/libcore/ojluni/src/main/java/javax/crypto/
H A DCipherSpi.java736 static int getTempArraySize(int totalSize) { argument
737 return Math.min(4096, totalSize);
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DFileChannelImpl.java838 static volatile long totalSize; field in class:FileChannelImpl.Unmapper
857 totalSize += size;
879 totalSize -= size;
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp1252 int totalSize = arraySize; local
1257 totalSize += length + 1;
1260 char* buffer = new char[totalSize];

Completed in 110 milliseconds