Searched refs:_claimed (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Dworkgroup.cpp435 assert(_claimed == 0 || _threads_completed == _n_threads,
446 _claimed = 0;
460 assert(_claimed < _n_tasks, "Too many tasks claimed; missing clear?");
461 Atomic::inc((volatile jint*) &_claimed);
529 _sz(sz), _mon(mon), _hd(0), _waiters(0), _index(-1), _claimed(0)
572 tty->print("claim_par_id[%d]: sz = %d, claimed = %d\n", tslf, _sz, _claimed);
580 tslf, _waiters, _claimed);
595 _claimed++;
598 tslf, res, _claimed);
617 _claimed
[all...]
H A Dworkgroup.hpp416 volatile uint _claimed; member in class:SubTasksDone
520 int _claimed; member in class:FreeIdSet
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegion.hpp281 jint _claimed; member in class:HeapRegion
730 jint claim_value() { return _claimed; }
732 void set_claim_value(int claimValue) { _claimed = claimValue; }
H A DheapRegion.cpp367 _claimed = InitialClaimValue;
446 jint current = _claimed;
448 jint res = Atomic::cmpxchg(claimValue, &_claimed, current);
496 _claimed(InitialClaimValue), _evacuation_failed(false),
H A DconcurrentMark.hpp968 bool _claimed; member in class:CMTask
1153 bool claimed() { return _claimed; }
H A DconcurrentMark.cpp3949 assert(!_claimed,
3953 // possible for two threads to set the _claimed flag at the same
3956 _claimed = true;
4334 _claimed = false;
4345 _claimed(false),

Completed in 1690 milliseconds