Ejemplo n.º 1
0
            public void RunStructFldScenario_Load(BooleanBinaryOpTest__TestNotZAndNotCUInt16 testClass)
            {
                fixed(Vector128 <UInt16> *pFld1 = &_fld1)
                fixed(Vector128 <UInt16> *pFld2 = &_fld2)
                {
                    var result = Sse41.TestNotZAndNotC(
                        Sse2.LoadVector128((UInt16 *)(pFld1)),
                        Sse2.LoadVector128((UInt16 *)(pFld2))
                        );

                    testClass.ValidateResult(_fld1, _fld2, result);
                }
            }
Ejemplo n.º 2
0
            public void RunStructFldScenario(BooleanBinaryOpTest__TestNotZAndNotCUInt16 testClass)
            {
                var result = Sse41.TestNotZAndNotC(_fld1, _fld2);

                testClass.ValidateResult(_fld1, _fld2, result);
            }