Searched refs:_cache (Results 1 - 14 of 14) sorted by relevance

/openjdk9/hotspot/src/share/vm/gc/g1/
H A Dg1FromCardCache.hpp40 static int** _cache; member in class:G1FromCardCache
64 return _cache[region_idx][worker_id];
68 _cache[region_idx][worker_id] = val;
H A Dg1FromCardCache.cpp31 int** G1FromCardCache::_cache = NULL; member in class:G1FromCardCache
37 guarantee(_cache == NULL, "Should not call this multiple times");
40 _cache = Padded2DArray<int, mtGC>::create_unfreeable(_max_regions,
/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/marlin/
H A DMarlinTileGenerator.java187 final MarlinCache _cache = this.cache;
188 final long[] rowAAChunkIndex = _cache.rowAAChunkIndex;
189 final int[] rowAAx0 = _cache.rowAAx0;
190 final int[] rowAAx1 = _cache.rowAAx1;
193 final int x1 = FloatMath.min(x0 + TILE_SIZE, _cache.bboxX1);
197 final int y1 = FloatMath.min(this.y + TILE_SIZE, _cache.bboxY1) - this.y;
206 final long addr_rowAA = _cache.rowAAChunk.address;
294 final MarlinCache _cache = this.cache;
295 final long[] rowAAChunkIndex = _cache.rowAAChunkIndex;
296 final int[] rowAAx0 = _cache
[all...]
H A DRenderer.java759 final MarlinCache _cache = cache;
1336 _cache.clearAARow(lastY);
1357 _cache.clearAARow(y);
/openjdk9/hotspot/src/share/vm/prims/
H A DjvmtiImpl.hpp86 address *_cache; member in class:VALUE_OBJ_CLASS_SPEC
88 // Listener for changes to the _cache field.
89 // Called whenever the _cache field has it's value changed
138 GrowableCache _cache; member in class:JvmtiBreakpointCache
145 _cache.initialize(this_obj,listener_fun);
148 int length() { return _cache.length(); }
149 JvmtiBreakpoint& at(int index) { return (JvmtiBreakpoint&) *(_cache.at(index)); }
150 int find(JvmtiBreakpoint& e) { return _cache.find((GrowableElement *) &e); }
151 void append(JvmtiBreakpoint& e) { _cache.append((GrowableElement *) &e); }
152 void remove (int index) { _cache
[all...]
H A DjvmtiImpl.cpp94 FREE_C_HEAP_ARRAY(address, _cache);
95 _cache = NEW_C_HEAP_ARRAY(address,len+1, mtInternal);
98 _cache[i] = _elements->at(i)->getCacheValue();
105 if (_cache[i] == NULL) {
111 _cache[len] = NULL;
113 _listener_fun(_this_obj,_cache);
132 _cache = NULL;
138 FREE_C_HEAP_ARRAY(address, _cache);
228 _cache[i] = _elements->at(i)->getCacheValue();
/openjdk9/hotspot/src/share/vm/utilities/
H A Dstack.inline.hpp84 if (clear_cache) free_segments(_cache);
155 next = _cache;
156 _cache = get_link(_cache);
177 _cache = set_link(_cur_seg, _cache);
209 _cache = NULL;
223 assert((_cache == NULL) == (this->cache_size() == 0), "mismatch");
H A Dstack.hpp165 E* _cache; // Segment cache to avoid ping-ponging. member in class:Stack
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/parsers/
H A DBug6573786.java45 String _cache = ""; field in class:Bug6573786
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/transform/
H A DBug6551616.java48 String _cache = ""; field in class:Bug6551616
/openjdk9/hotspot/src/share/vm/code/
H A DoopRecorder.hpp108 int _cache[_cache_size]; member in class:ValueRecorder::IndexCache
116 return &_cache[ cache_index(handle) ];
H A DoopRecorder.cpp49 Copy::zero_to_bytes(&_cache[0], sizeof(_cache));
/openjdk9/hotspot/src/share/vm/oops/
H A DconstantPool.hpp82 ConstantPoolCache* _cache; // the cache holding interpreter runtime information member in class:ConstantPool
184 ConstantPoolCache* cache() const { return _cache; }
185 void set_cache(ConstantPoolCache* cache){ _cache = cache; }
224 static int cache_offset_in_bytes() { return offset_of(ConstantPool, _cache); }
/openjdk9/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp236 nonstatic_field(ConstantPool, _cache, ConstantPoolCache*) \

Completed in 102 milliseconds