Searched refs:packedValue (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/llvm/test/CodeGen/ARM/ |
D | 2010-05-21-BuildVector.ll | 4 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/llvm/test/CodeGen/ARM/ |
D | 2010-05-21-BuildVector.ll | 4 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/angle/src/libANGLE/renderer/ |
D | copyvertex.inc.h | 501 GLuint packedValue = *reinterpret_cast<const GLuint *>(input + (i * stride)); in CopyXYZ10W2ToXYZWFloatVertexData() local 505 (packedValue >> redShift) & rgbMask, offsetOutput + (0 * outputComponentSize)); in CopyXYZ10W2ToXYZWFloatVertexData() 507 (packedValue >> greenShift) & rgbMask, offsetOutput + (1 * outputComponentSize)); in CopyXYZ10W2ToXYZWFloatVertexData() 509 (packedValue >> blueShift) & rgbMask, offsetOutput + (2 * outputComponentSize)); in CopyXYZ10W2ToXYZWFloatVertexData() 511 (packedValue >> alphaShift) & alphaMask, offsetOutput + (3 * outputComponentSize)); in CopyXYZ10W2ToXYZWFloatVertexData() 533 GLuint packedValue = *reinterpret_cast<const GLuint *>(input + (i * stride)); in CopyXYZ10ToXYZWFloatVertexData() local 537 (packedValue >> redShift) & rgbMask, offsetOutput + (0 * outputComponentSize)); in CopyXYZ10ToXYZWFloatVertexData() 539 (packedValue >> greenShift) & rgbMask, offsetOutput + (1 * outputComponentSize)); in CopyXYZ10ToXYZWFloatVertexData() 541 (packedValue >> blueShift) & rgbMask, offsetOutput + (2 * outputComponentSize)); in CopyXYZ10ToXYZWFloatVertexData() 566 GLuint packedValue = *reinterpret_cast<const GLuint *>(input + (i * stride)); in CopyW2XYZ10ToXYZWFloatVertexData() local [all …]
|
/external/llvm-project/llvm/test/Transforms/PhaseOrdering/ARM/ |
D | arm_fill_q7.ll | 58 %packedValue = alloca i32, align 4 64 %1 = bitcast i32* %packedValue to i8* 85 store i32 %or11, i32* %packedValue, align 4, !tbaa !8 97 %8 = load i32, i32* %packedValue, align 4, !tbaa !8 127 %15 = bitcast i32* %packedValue to i8*
|
/external/deqp/external/vulkancts/modules/vulkan/robustness/ |
D | vktRobustnessVertexAccessTests.cpp | 941 const deUint32 packedValue = reinterpret_cast<deUint32*>(vertexBuffer)[i]; in isValueWithinVertexBufferOrZero() local 945 unpackedValue = (packedValue >> (10 * scalarIndex)) & 0x3FFu; in isValueWithinVertexBufferOrZero() 947 unpackedValue = (packedValue >> 30) & 0x3u; in isValueWithinVertexBufferOrZero() 998 const deUint32 packedValue = bufferPtr[vertexIndex / 4]; in isExpectedValueFromVertexBuffer() local 1003 normValue = float((packedValue >> (10 * scalarIndex)) & 0x3FFu) / 0x3FFu; in isExpectedValueFromVertexBuffer() 1005 normValue = float(packedValue >> 30) / 0x3u; in isExpectedValueFromVertexBuffer()
|
/external/deqp/modules/glshared/ |
D | glsDrawTest.cpp | 1641 const deUint32 packedValue = (w << 30) | (z << 20) | (y << 10) | (x); in generatePackedArray() local 1643 alignmentSafeAssignment(writePtr, packedValue); in generatePackedArray()
|