Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dmarking.h311 INLINE(static void BlackToWhite(MarkBit markbit)) { in INLINE() argument
312 DCHECK(IsBlack(markbit)); in INLINE()
313 markbit.Clear(); in INLINE()
314 markbit.Next().Clear(); in INLINE()
317 INLINE(static void GreyToWhite(MarkBit markbit)) { in INLINE() argument
318 DCHECK(IsGrey(markbit)); in INLINE()
319 markbit.Clear(); in INLINE()
320 markbit.Next().Clear(); in INLINE()
323 INLINE(static void BlackToGrey(MarkBit markbit)) { in INLINE() argument
324 DCHECK(IsBlack(markbit)); in INLINE()
[all …]
Dmark-compact.h75 MarkBit markbit = MarkBitFrom(obj); in BlackToWhite() local
76 Marking::BlackToWhite(markbit); in BlackToWhite()
87 MarkBit markbit = MarkBitFrom(obj); in BlackToGrey() local
88 Marking::BlackToGrey(markbit); in BlackToGrey()
99 MarkBit markbit = MarkBitFrom(obj); in WhiteToBlack() local
100 Marking::WhiteToBlack(markbit); in WhiteToBlack()
106 MarkBit markbit = MarkBitFrom(obj); in GreyToBlack() local
107 Marking::GreyToBlack(markbit); in GreyToBlack()
112 MarkBit markbit = MarkBitFrom(obj); in AnyToGrey() local
113 if (Marking::IsBlack(markbit)) { in AnyToGrey()
[all …]