Lines Matching refs:temp
230 PoolObject<T> temp(label_base);
231 temp.RestrictRange(reference->min_object_location_,
233 temp.RestrictAlignment(reference->object_alignment_);
235 temp.RestrictRange(existing_object->min_location_,
237 temp.RestrictAlignment(existing_object->alignment_);
242 T last_reachable = AlignDown(temp.max_location_, temp.alignment_);
261 // Will temp be the last object in objects_?
262 if (PoolObjectLessThan(last, temp)) {
263 checkpoint = UpdateCheckpointForObject(checkpoint, &temp);
264 if (checkpoint < temp.min_location_) return true;
270 if (temp_not_placed_yet && PoolObjectLessThan(current, temp)) {
271 checkpoint = UpdateCheckpointForObject(checkpoint, &temp);
272 if (checkpoint < temp.min_location_) return true;
281 // temp is the object with the smallest max_location_.
283 checkpoint = UpdateCheckpointForObject(checkpoint, &temp);
284 if (checkpoint < temp.min_location_) return true;