Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Dcopyvertex.inc.h501 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 …]
/third_party/cmsis/CMSIS/DSP/Source/SupportFunctions/
Darm_fill_q15.c89 q31_t packedValue; /* value packed to 32 bits */ in arm_fill_q15() local
92 packedValue = __PKHBT(value, value, 16U); in arm_fill_q15()
102 write_q15x2_ia (&pDst, packedValue); in arm_fill_q15()
103 write_q15x2_ia (&pDst, packedValue); in arm_fill_q15()
Darm_fill_q7.c89 q31_t packedValue; /* value packed to 32 bits */ in arm_fill_q7() local
92 packedValue = __PACKq7(value, value, value, value); in arm_fill_q7()
102 write_q7x4_ia (&pDst, packedValue); in arm_fill_q7()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/
Dcopyvertex.inc.h465 GLuint packedValue = *reinterpret_cast<const GLuint *>(input + (i * stride)); in CopyXYZ10W2ToXYZW32FVertexData() local
469 (packedValue >> redShift) & rgbMask, offsetOutput + (0 * outputComponentSize)); in CopyXYZ10W2ToXYZW32FVertexData()
471 (packedValue >> greenShift) & rgbMask, offsetOutput + (1 * outputComponentSize)); in CopyXYZ10W2ToXYZW32FVertexData()
473 (packedValue >> blueShift) & rgbMask, offsetOutput + (2 * outputComponentSize)); in CopyXYZ10W2ToXYZW32FVertexData()
475 (packedValue >> alphaShift) & alphaMask, offsetOutput + (3 * outputComponentSize)); in CopyXYZ10W2ToXYZW32FVertexData()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/robustness/
DvktRobustnessVertexAccessTests.cpp998 const deUint32 packedValue = reinterpret_cast<deUint32*>(vertexBuffer)[i]; in isValueWithinVertexBufferOrZero() local
1002 unpackedValue = (packedValue >> (10 * scalarIndex)) & 0x3FFu; in isValueWithinVertexBufferOrZero()
1004 unpackedValue = (packedValue >> 30) & 0x3u; in isValueWithinVertexBufferOrZero()
1055 const deUint32 packedValue = bufferPtr[vertexIndex / 4]; in isExpectedValueFromVertexBuffer() local
1060 normValue = float((packedValue >> (10 * scalarIndex)) & 0x3FFu) / 0x3FFu; in isExpectedValueFromVertexBuffer()
1062 normValue = float(packedValue >> 30) / 0x3u; in isExpectedValueFromVertexBuffer()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/
DvktRobustnessVertexAccessTests.cpp998 const deUint32 packedValue = reinterpret_cast<deUint32*>(vertexBuffer)[i]; in isValueWithinVertexBufferOrZero() local
1002 unpackedValue = (packedValue >> (10 * scalarIndex)) & 0x3FFu; in isValueWithinVertexBufferOrZero()
1004 unpackedValue = (packedValue >> 30) & 0x3u; in isValueWithinVertexBufferOrZero()
1055 const deUint32 packedValue = bufferPtr[vertexIndex / 4]; in isExpectedValueFromVertexBuffer() local
1060 normValue = float((packedValue >> (10 * scalarIndex)) & 0x3FFu) / 0x3FFu; in isExpectedValueFromVertexBuffer()
1062 normValue = float(packedValue >> 30) / 0x3u; in isExpectedValueFromVertexBuffer()
/third_party/vk-gl-cts/modules/glshared/
DglsDrawTest.cpp1660 const deUint32 packedValue = (w << 30) | (z << 20) | (y << 10) | (x); in generatePackedArray() local
1662 alignmentSafeAssignment(writePtr, packedValue); in generatePackedArray()