Searched refs:packedValue (Results 1 – 2 of 2) sorted by relevance
4 define void @test(float* %fltp, i32 %packedValue, float* %table) nounwind {9 %3 = shl i32 %packedValue, 1616 %7 = shl i32 %packedValue, 1823 %11 = shl i32 %packedValue, 2030 %15 = shl i32 %packedValue, 22
329 uint16_t packedValue = source[0]; in unpack() local330 uint8_t r = packedValue >> 11; in unpack()331 uint8_t g = (packedValue >> 6) & 0x1F; in unpack()332 uint8_t b = (packedValue >> 1) & 0x1F; in unpack()336 destination[3] = (packedValue & 0x1) ? 0xFF : 0x0; in unpack()348 uint16_t packedValue = source[0]; in unpack() local349 uint8_t r = packedValue >> 12; in unpack()350 uint8_t g = (packedValue >> 8) & 0x0F; in unpack()351 uint8_t b = (packedValue >> 4) & 0x0F; in unpack()352 uint8_t a = packedValue & 0x0F; in unpack()[all …]