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/webkit/Source/WebCore/platform/graphics/
DGraphicsContext3D.cpp467 uint16_t packedValue = source[0]; in unpackRGBA5551ToRGBA8() local
468 uint8_t r = packedValue >> 11; in unpackRGBA5551ToRGBA8()
469 uint8_t g = (packedValue >> 6) & 0x1F; in unpackRGBA5551ToRGBA8()
470 uint8_t b = (packedValue >> 1) & 0x1F; in unpackRGBA5551ToRGBA8()
474 destination[3] = (packedValue & 0x1) ? 0xFF : 0x0; in unpackRGBA5551ToRGBA8()
479 uint16_t packedValue = source[0]; in unpackRGBA4444ToRGBA8() local
480 uint8_t r = packedValue >> 12; in unpackRGBA4444ToRGBA8()
481 uint8_t g = (packedValue >> 8) & 0x0F; in unpackRGBA4444ToRGBA8()
482 uint8_t b = (packedValue >> 4) & 0x0F; in unpackRGBA4444ToRGBA8()
483 uint8_t a = packedValue & 0x0F; in unpackRGBA4444ToRGBA8()
[all …]