Lines Matching defs:value
43 unsigned int value:24;
66 uint32_t value)
68 value &= 0xff;
70 value = (value << 8) | value;
72 value = value >> (16 - comp->length);
73 /* Shift back up to where the value should be */
74 return value << comp->offset;
79 uint32_t value)
81 value &= 0x3ff;
83 value = (value << 6) | (value >> 4);
85 value = value >> (16 - comp->length);
86 /* Shift back up to where the value should be */
87 return value << comp->offset;
92 uint64_t value)
94 value &= 0xffff;
96 value = value >> (16 - comp->length);
97 /* Shift back up to where the value should be */
98 return value << comp->offset;
114 { .value = MAKE_RGBA(rgb, r, g, b, 0) }
1121 uint32_t value = MAKE_RGBA10(rgb, j & 0x3ff, j & 0x3ff, j & 0x3ff, 0);
1122 row[2*j] = row[2*j+1] = value;
1131 uint32_t value = MAKE_RGBA10(rgb, j & 0x3fc, j & 0x3fc, j & 0x3fc, 0);
1132 row[2*j] = row[2*j+1] = value;
1149 uint64_t value = MAKE_RGBA10FP16(rgb, j & 0x3ff, j & 0x3ff, j & 0x3ff, 0);
1150 row[2*j] = row[2*j+1] = value;
1159 uint64_t value = MAKE_RGBA10FP16(rgb, j & 0x3fc, j & 0x3fc, j & 0x3fc, 0);
1160 row[2*j] = row[2*j+1] = value;