Searched defs:_limit (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciCallProfile.hpp42 int _limit; // number of receivers have been determined member in class:ciCallProfile
50 _limit = 0;
62 bool has_receiver(int i) const { return _limit > i; }
67 assert(i < _limit, "out of Call Profile MorphismLimit");
71 assert(i < _limit, "out of Call Profile MorphismLimit");
75 assert(i < _limit, "out of Call Profile MorphismLimit");
79 assert(i < _limit, "out of Call Profile MorphismLimit");
H A DciExceptionHandler.hpp44 int _limit; member in class:ciExceptionHandler
57 _limit = limit;
64 int limit() { return _limit; }
/openjdk7/hotspot/src/share/vm/oops/
H A DfieldStreams.hpp44 int _limit; member in class:FieldStreamBase
85 _limit = num_fields;
87 _limit = limit;
95 _limit = init_generic_signature_start_slot();
103 _limit = klass->java_fields_count();
110 _limit = klass->java_fields_count();
124 bool done() const { return _index >= _limit; }
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp89 address _limit; // last possible (allocated) end address member in class:VALUE_OBJ_CLASS_SPEC
105 _limit = NULL;
127 _limit = start + size;
140 _limit = cs->_limit;
148 address limit() const { return _limit; }
152 csize_t capacity() const { return (csize_t)(_limit - _start); }
153 csize_t remaining() const { return (csize_t)(_limit - _end); }
175 bool allocates(address pc) const { return pc >= _start && pc < _limit; }
176 bool allocates2(address pc) const { return pc >= _start && pc <= _limit; }
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.hpp532 address _limit; // stop producing relocations after this _addr member in class:RelocIterator
594 if (_limit != NULL && _addr >= _limit) {
604 address limit() const { return _limit; }
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp1728 HeapWord* _limit;// the address at or above which the sweep should stop member in class:SweepClosure
1779 // premptive flush if crossing over _limit.

Completed in 45 milliseconds