Searched defs:cache_size (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/test/compiler/6724218/
H A DTest.java38 static int cache_size = 0; field in class:Test
50 cache_size = +1;
59 if (cache_size > 0) {
62 cache_size = -1;
/openjdk7/hotspot/src/share/vm/utilities/
H A Dstack.hpp67 size_t cache_size() const { return _cache_size; } // Segments in the cache. function in class:StackBase
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.hpp37 enum { cache_size = 16 }; enumerator in enum:ExceptionCache::__anon198
39 address _pc[cache_size];
40 address _handler[cache_size];
45 void set_pc_at(int index, address a) { assert(index >= 0 && index < cache_size,""); _pc[index] = a; }
47 void set_handler_at(int index, address a) { assert(index >= 0 && index < cache_size,""); _handler[index] = a; }
71 enum { cache_size = 4 }; enumerator in enum:VALUE_OBJ_CLASS_SPEC::__anon199
72 PcDesc* _pc_descs[cache_size]; // last cache_size pc_descs found

Completed in 47 milliseconds