Home
last modified time | relevance | path

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

/external/opencore/codecs_v2/utilities/colorconvert/src/
Dcczoomrotation16.cpp5324 int32 prgb1; in cc16sc_rotate() local
5517 prgb1 = 0; in cc16sc_rotate()
5580 … *(pDst + dst_pitch) = (((((prgb1 & 0x1F) + (rgb & 0x1F)) / 2) & 0x1F) in cc16sc_rotate()
5581 … | ((((((prgb1 >> 5) & 0x3F) + ((rgb >> 5) & 0x3F)) / 2) & 0x3F) << 5) in cc16sc_rotate()
5582 … | ((((((prgb1 >> 11) & 0x1F) + ((rgb >> 11) & 0x1F)) / 2) & 0x1F) << 11)); in cc16sc_rotate()
5602 … *(pDst + dst_pitch) = (((((prgb1 & 0x1F) + (rgb & 0x1F) * 2) / 3) & 0x1F) in cc16sc_rotate()
5603 … | ((((((prgb1 >> 5) & 0x3F) + ((rgb >> 5) & 0x3F) * 2) / 3) & 0x3F) << 5) in cc16sc_rotate()
5604 … | ((((((prgb1 >> 11) & 0x1F) + ((rgb >> 11) & 0x1F) * 2) / 3) & 0x1F) << 11)); in cc16sc_rotate()
5606 … *((pDst + dst_pitch + dst_inc)) = (((((prgb1 & 0x1F) * 2 + (rgb & 0x1F)) / 3) & 0x1F) in cc16sc_rotate()
5607 … | ((((((prgb1 >> 5) & 0x3F) * 2 + ((rgb >> 5) & 0x3F)) / 3) & 0x3F) << 5) in cc16sc_rotate()
[all …]