Searched defs:_begin (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DstubCodeGenerator.hpp48 address _begin; // points to the first byte of the stub code (included) member in class:StubCodeDesc
52 assert(_begin <= end, "begin & end not properly ordered");
57 assert(begin >= _begin, "begin may not decrease");
59 _begin = begin;
76 _begin = begin;
84 address begin() const { return _begin; }
86 int size_in_bytes() const { return _end - _begin; }
87 bool contains(address pc) const { return _begin <= pc && pc < _end; }
H A Dsignature.hpp353 int _begin; member in class:SignatureStream
371 _begin = _end;
372 int t = sig->byte_at(_begin);
399 const jbyte* raw_bytes() { return _signature->bytes() + _begin; }
400 int raw_length() { return _end - _begin; }
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableRS.cpp364 HeapWord* _begin; member in class:VerifyCleanCardClosure
369 assert(jp >= _begin && jp < _end,
371 "[_begin, _end) = [" PTR_FORMAT "," PTR_FORMAT ")",
372 jp, _begin, _end));
382 _boundary(b), _begin(begin), _end(end) {
/openjdk7/hotspot/src/share/vm/opto/
H A Dstringopts.cpp44 AllocateNode* _begin; // The allocation the begins the pattern member in class:StringConcat
68 _begin(NULL),
104 _begin = alloc;
193 AllocateNode* begin() { return _begin; }
207 JVMState* p = _begin->jvms();
290 assert(result->_control.contains(_begin), "what?");
303 result->set_allocation(other->_begin);
716 if (Compile::current()->too_many_traps(_begin->jvms()->method(), _begin->jvms()->bci(),
730 assert(_control.contains(_begin), "missin
[all...]

Completed in 423 milliseconds