Lines Matching defs:result

157   bool result = _should_clear_all_soft_refs;
159 return result;
423 bool result = false;
433 result = true;
441 return result;
551 HeapWord* result = NULL;
563 result = gen0->par_allocate(size, is_tlab);
564 if (result != NULL) {
565 assert(gch->is_in_reserved(result), "result not in heap");
566 return result;
580 result = gch->attempt_allocation(size, is_tlab, first_only);
581 if (result != NULL) {
582 assert(gch->is_in_reserved(result), "result not in heap");
583 return result;
592 result = expand_heap_and_allocate(size, is_tlab);
593 // result could be null if we are out of space
594 if (result != NULL) {
595 return result;
629 result = op.result();
631 assert(result == NULL, "must be NULL if gc_locked() is true");
647 if (op.result() != NULL) {
648 CollectedHeap::fill_with_object(op.result(), size);
652 assert(result == NULL || gch->is_in_reserved(result),
653 "result not in heap");
654 return result;
669 HeapWord* result = NULL;
670 for (int i = number_of_generations() - 1; i >= 0 && result == NULL; i--) {
673 result = gen->expand_and_allocate(size, is_tlab);
676 assert(result == NULL || gch->is_in_reserved(result), "result not in heap");
677 return result;
684 HeapWord* result = NULL;
691 result = expand_heap_and_allocate(size, is_tlab);
693 return result; // could be null if we are out of space
716 result = gch->attempt_allocation(size, is_tlab, false /*first_only*/);
718 if (result != NULL) {
719 assert(gch->is_in_reserved(result), "result not in heap");
720 return result;
724 result = expand_heap_and_allocate(size, is_tlab);
725 if (result != NULL) {
726 return result;
744 result = gch->attempt_allocation(size, is_tlab, false /* first_only */);
745 if (result != NULL) {
746 assert(gch->is_in_reserved(result), "result not in heap");
747 return result;