Home
last modified time | relevance | path

Searched refs:floatCache (Results 1 – 3 of 3) sorted by relevance

/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/codegen/
H A DConstantPool.java47 protected FloatCache floatCache; field in ConstantPool
522 if (this.floatCache == null) { in literalIndex()
523 this.floatCache = new FloatCache(FLOAT_INITIAL_SIZE); in literalIndex()
525 if ((index = this.floatCache.putIfAbsent(key, this.currentIndex)) < 0) { in literalIndex()
1108 if (this.floatCache != null) this.floatCache.clear(); in reset()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/codegen/
H A DConstantPool.java52 protected FloatCache floatCache; field in ConstantPool
536 if (this.floatCache == null) { in literalIndex()
537 this.floatCache = new FloatCache(FLOAT_INITIAL_SIZE); in literalIndex()
539 if ((index = this.floatCache.putIfAbsent(key, this.currentIndex)) < 0) { in literalIndex()
1262 if (this.floatCache != null) this.floatCache.clear(); in reset()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Compiler/src/org/eclipse/jdt/internal/compiler/codegen/
H A DConstantPool.java37 protected FloatCache floatCache; field in ConstantPool
910 if (floatCache == null) { in literalIndex()
911 floatCache = new FloatCache(FLOAT_INITIAL_SIZE); in literalIndex()
913 if ((index = floatCache.get(key)) < 0) { in literalIndex()
914 index = floatCache.put(key, currentIndex++); in literalIndex()