Home
last modified time | relevance | path

Searched refs:next2_ (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/codegen/
Daligned-slot-allocator.cc16 if (n <= 2 && IsValid(next2_)) return next2_; in NextSlot()
25 DCHECK_IMPLIES(IsValid(next2_), (next2_ & 1) == 0); in Allocate()
39 } else if (IsValid(next2_)) { in Allocate()
40 result = next2_; in Allocate()
42 next2_ = kInvalidSlot; in Allocate()
46 next2_ = result + 2; in Allocate()
52 if (IsValid(next2_)) { in Allocate()
53 result = next2_; in Allocate()
54 next2_ = kInvalidSlot; in Allocate()
57 next2_ = result + 2; in Allocate()
[all …]
Daligned-slot-allocator.h61 int next2_ = kInvalidSlot; variable