Searched defs:_a (Results 1 - 3 of 3) sorted by relevance
/openjdk7/hotspot/test/runtime/6626217/ |
H A D | You_Have_Been_P0wned.java | 5 int _a; field in class:You_Have_Been_P0wned
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | phaseX.hpp | 55 Arena *_a; // Arena to allocate in member in class:NodeHash 123 Arena *_a; // Arena to allocate in 131 Type_Array(Arena *a) : _a(a), _max(0), _types(0) {} 132 Type_Array(Type_Array *ta) : _a(ta->_a), _max(ta->_max), _types(ta->_types) { }
|
H A D | node.hpp | 1300 Arena *_a; // Arena to allocate in member in class:Node_Array 1305 Node_Array(Arena *a) : _a(a), _max(OptoNodeListSize) { 1312 Node_Array(Node_Array *na) : _a(na->_a), _max(na->_max), _nodes(na->_nodes) {} 1413 Arena *_a; // Arena to allocate in member in class:Node_Stack 1418 _a = Thread::current()->resource_area(); 1419 _inodes = NEW_ARENA_ARRAY( _a, INode, max ); 1424 Node_Stack(Arena *a, int size) : _a(a) { 1426 _inodes = NEW_ARENA_ARRAY( _a, INode, max );
|
Completed in 343 milliseconds