Searched refs:rightShift (Results 1 - 2 of 2) sorted by relevance

/external/deqp/modules/gles3/functional/
H A Des3fShaderOperatorTests.cpp83 inline deUint32 rightShift (deUint32 value, int amount) { return value >> amount; } function in namespace:deqp::gles3::Functional
84 inline int rightShift (int value, int amount) { return (value >> amount) | (value >= 0 ? 0 : ~(~0U >> amount)); } // \note Arithmetic shift. function in namespace:deqp::gles3::Functional
94 template<typename T, int Size> Vector<T, Size> rightShift (const Vector<T, Size>& value, const Vector<int, Size>& amount) function in namespace:deqp::gles3::Functional
98 result[i] = rightShift(value[i], amount[i]);
103 template<typename T, int Size> Vector<T, Size> rightShiftVecScalar (const Vector<T, Size>& value, int amount) { return rightShift(value, Vector<int, Size>(amount)); }
1090 void eval_rightShift_int (ShaderEvalContext& c) { c.color.x() = (float)rightShift((int)c.in[0].z(), (int)c.in[1].x()); }
1091 DECLARE_BINARY_INT_VEC_FUNCS(rightShift)
1115 DECLARE_UINT_INT_GENTYPE_FUNCS(rightShift)
1652 << operInfoFunc(rightShiftName, rightShiftOp, IGT, Value(IGT, -127.0f, 127.0f), Value(gType, 0.0f, 8.0f), notUsed, 4e-3f, 0.5f, PRECMASK_LOWP_MEDIUMP, INT_GENTYPE_FUNCS(rightShift))
1653 << operInfoFunc(rightShiftName, rightShiftOp, IGT, Value(IGT, -2e9f, 2e9f), Value(gType, 0.0f, 31.0f), notUsed, 5e-10f, 0.5f, PRECMASK_HIGHP, INT_GENTYPE_FUNCS(rightShift))
[all...]
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp3379 bool rightShift = false; local
3527 rightShift = true;
3530 Ops[2] = EmitNeonShiftVector(Ops[2], Ty, rightShift);

Completed in 244 milliseconds