OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_BITS
(Results
1 - 3
of
3
) sorted by null
/system/extras/libpagemap/include/pagemap/
pagemap.h
156
#define
_BITS
(x, offset, bits) (((x) >> offset) & ((1LL << (bits)) - 1))
158
#define PM_PAGEMAP_PRESENT(x) (
_BITS
(x, 63, 1))
159
#define PM_PAGEMAP_SWAPPED(x) (
_BITS
(x, 62, 1))
160
#define PM_PAGEMAP_SHIFT(x) (
_BITS
(x, 55, 6))
161
#define PM_PAGEMAP_PFN(x) (
_BITS
(x, 0, 55))
162
#define PM_PAGEMAP_SWAP_OFFSET(x) (
_BITS
(x, 5, 50))
163
#define PM_PAGEMAP_SWAP_TYPE(x) (
_BITS
(x, 0, 5))
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
shaders_cache.h
55
((id) & (((1 << _SHADERS_ ## stage ##
_BITS
) - 1) << SHADERS_ ## stage ## _SHIFT))
/external/mesa3d/src/gallium/state_trackers/vega/
shaders_cache.h
55
((id) & (((1 << _SHADERS_ ## stage ##
_BITS
) - 1) << SHADERS_ ## stage ## _SHIFT))
Completed in 900 milliseconds