Home
last modified time | relevance | path

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

/external/llvm/test/CodeGen/ARM/
D2010-05-21-BuildVector.ll4 define void @test(float* %fltp, i32 %packedValue, float* %table) nounwind {
9 %3 = shl i32 %packedValue, 16
16 %7 = shl i32 %packedValue, 18
23 %11 = shl i32 %packedValue, 20
30 %15 = shl i32 %packedValue, 22
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsContext3DImagePacking.cpp329 uint16_t packedValue = source[0]; in unpack() local
330 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() local
349 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 …]