Searched defs:cacheStart (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DMemoryCache.java63 private long cacheStart = 0L; field in class:MemoryCache
71 long blockOffset = blockNum - cacheStart;
160 if (bufIndex < cacheStart) {
182 long currIndex = cacheStart + cache.size() - 1;
344 if (index < cacheStart) {
347 long numBlocks = Math.min(index - cacheStart, cache.size());
351 this.cacheStart = index;
361 cacheStart = 0;
/openjdk7/jdk/src/share/classes/java/util/
H A DSimpleTimeZone.java551 if (cacheStart != 0) {
552 if (date >= cacheStart && date < cacheEnd) {
674 if (cacheStart != 0) {
675 if (time >= cacheStart && time < cacheEnd) {
693 cacheStart = start;
716 cacheStart = start;
1203 * time. When the cache values are valid, cacheStart is the start
1207 * cacheYear has a year value if both cacheStart and cacheEnd are
1209 * cacheStart and cacheEnd are in different years. cacheStart i
1214 private transient long cacheStart; field in class:SimpleTimeZone
[all...]

Completed in 38 milliseconds