OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:layout_mask
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/
layout-descriptor-inl.h
72
uint32_t
layout_mask
= static_cast<uint32_t>(1) << layout_bit_index;
local
77
value &= ~
layout_mask
;
79
value |=
layout_mask
;
86
value &= ~
layout_mask
;
88
value |=
layout_mask
;
105
uint32_t
layout_mask
= static_cast<uint32_t>(1) << layout_bit_index;
local
109
return (value &
layout_mask
) == 0;
112
return (value &
layout_mask
) == 0;
layout-descriptor.cc
138
uint32_t
layout_mask
= static_cast<uint32_t>(1) << layout_bit_index;
local
144
bool is_tagged = (value &
layout_mask
) == 0;
146
value = value & ~(
layout_mask
- 1); // Clear bits we are not interested in.
Completed in 46 milliseconds