Lines Matching refs:result
52 Address result = position_;
57 result = NewExpand(size_with_redzone);
62 Address redzone_position = result + size;
67 // Check that the result has the proper alignment and return it.
68 DCHECK(IsAligned(result, kAlignmentInBytes));
69 return reinterpret_cast<void*>(result);
181 Address result = RoundUp(segment->start(), kAlignmentInBytes);
182 position_ = result + size;
186 DCHECK(position_ >= result);
189 return result;