Searched refs:DISPLAY_MASK (Results 1 – 2 of 2) sorted by relevance
| /system/dev/display/astro-display/ |
| A D | common.h | 8 #define DISPLAY_MASK(start, count) (((1 << (count)) - 1) << (start)) macro 10 ((mask & ~DISPLAY_MASK(start, count)) | \ 11 (((value) << (start)) & DISPLAY_MASK(start, count))) 14 WRITE32_##x##_REG(dest, (READ32_##x##_REG(dest) & ~DISPLAY_MASK(start, count)) | \ 15 (((value) << (start)) & DISPLAY_MASK(start, count)))
|
| /system/dev/display/vim-display/ |
| A D | hdmitx.h | 23 #define DISPLAY_MASK(start, count) (((1 << (count)) - 1) << (start)) macro 25 ((mask & ~DISPLAY_MASK(start, count)) | \ 26 (((value) << (start)) & DISPLAY_MASK(start, count))) 47 WRITE32_##x##_REG(dest, (READ32_##x##_REG(dest) & ~DISPLAY_MASK(start, count)) | \ 48 (((value) << (start)) & DISPLAY_MASK(start, count)))
|
Completed in 6 milliseconds