Searched refs:fourcc_code (Results 1 – 1 of 1) sorted by relevance
/bionic/libc/kernel/uapi/drm/ |
D | drm_fourcc.h | 25 #define fourcc_code(a,b,c,d) ((__u32) (a) | ((__u32) (b) << 8) | ((__u32) (c) << 16) | ((__u32) (d)… macro 28 #define DRM_FORMAT_C1 fourcc_code('C', '1', ' ', ' ') 29 #define DRM_FORMAT_C2 fourcc_code('C', '2', ' ', ' ') 30 #define DRM_FORMAT_C4 fourcc_code('C', '4', ' ', ' ') 31 #define DRM_FORMAT_C8 fourcc_code('C', '8', ' ', ' ') 32 #define DRM_FORMAT_D1 fourcc_code('D', '1', ' ', ' ') 33 #define DRM_FORMAT_D2 fourcc_code('D', '2', ' ', ' ') 34 #define DRM_FORMAT_D4 fourcc_code('D', '4', ' ', ' ') 35 #define DRM_FORMAT_D8 fourcc_code('D', '8', ' ', ' ') 36 #define DRM_FORMAT_R1 fourcc_code('R', '1', ' ', ' ') [all …]
|