Searched defs:leftShift (Results 1 - 5 of 5) sorted by relevance

/external/skia/bench/
H A DChartBench.cpp33 // The plots are animated by rotating the data points by leftShift.
38 int leftShift,
49 leftShift %= topData.count();
52 // Account for the leftShift using two loops
53 int shiftToEndCount = topData.count() - leftShift;
54 plot->moveTo(x, topData[leftShift]);
55 fill->moveTo(x, topData[leftShift]);
58 plot->lineTo(x, topData[i + leftShift]);
59 fill->lineTo(x, topData[i + leftShift]);
63 for (int i = 0; i < leftShift;
34 gen_paths(const SkTDArray<SkScalar>& topData, const SkTDArray<SkScalar>* bottomData, SkScalar yBase, SkScalar xLeft, SkScalar xDelta, int leftShift, SkPath* plot, SkPath* fill) argument
[all...]
/external/skia/samplecode/
H A DSampleChart.cpp28 // The plots are animated by rotating the data points by leftShift.
33 int leftShift,
44 leftShift %= topData.count();
47 // Account for the leftShift using two loops
48 int shiftToEndCount = topData.count() - leftShift;
49 plot->moveTo(x, topData[leftShift]);
50 fill->moveTo(x, topData[leftShift]);
53 plot->lineTo(x, topData[i + leftShift]);
54 fill->lineTo(x, topData[i + leftShift]);
58 for (int i = 0; i < leftShift;
29 gen_paths(const SkTDArray<SkScalar>& topData, const SkTDArray<SkScalar>* bottomData, SkScalar yBase, SkScalar xLeft, SkScalar xDelta, int leftShift, SkPath* plot, SkPath* fill) argument
[all...]
/external/protobuf/js/binary/
H A Darith.js99 jspb.arith.UInt64.prototype.leftShift = function() {
242 divisor = divisor.leftShift();
243 unit = unit.leftShift();
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderOperatorTests.cpp66 template<typename T> inline T leftShift (T value, int amount) { return value << amount; } function in namespace:vkt::sr::__anon3910
71 template<typename T, int Size> Vector<T, Size> leftShift (const Vector<T, Size>& value, const Vector<int, Size>& amount) function in namespace:vkt::sr::__anon3910
75 result[i] = leftShift(value[i], amount[i]);
87 template<typename T, int Size> Vector<T, Size> leftShiftVecScalar (const Vector<T, Size>& value, int amount) { return leftShift(value, Vector<int, Size>(amount)); }
1028 void eval_leftShift_int (ShaderEvalContext& c) { c.color.x() = (float)leftShift((int)c.in[0].z(), (int)c.in[1].x()); }
1029 DECLARE_BINARY_INT_VEC_FUNCS(leftShift)
1054 DECLARE_UINT_INT_GENTYPE_FUNCS(leftShift)
1603 << operInfoFunc(leftShiftName, leftShiftOp, IGT, Value(IGT, -7.0f, 7.0f), Value(gType, 0.0f, 4.0f), notUsed, 4e-3f, 0.5f, PRECMASK_MEDIUMP, INT_GENTYPE_FUNCS(leftShift))
1604 << operInfoFunc(leftShiftName, leftShiftOp, IGT, Value(IGT, -7.0f, 7.0f), Value(gType, 0.0f, 27.0f), notUsed, 5e-10f, 0.5f, PRECMASK_HIGHP, INT_GENTYPE_FUNCS(leftShift))
1605 << operInfoFunc(leftShiftName, leftShiftOp, UGT, Value(UGT, 0.0f, 7.0f), Value(gType, 0.0f, 5.0f), notUsed, 4e-3f, 0.0f, PRECMASK_MEDIUMP, UINT_GENTYPE_FUNCS(leftShift))
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderOperatorTests.cpp81 template<typename T> inline T leftShift (T value, int amount) { return value << amount; } function in namespace:deqp::gles3::Functional
86 template<typename T, int Size> Vector<T, Size> leftShift (const Vector<T, Size>& value, const Vector<int, Size>& amount) function in namespace:deqp::gles3::Functional
90 result[i] = leftShift(value[i], amount[i]);
102 template<typename T, int Size> Vector<T, Size> leftShiftVecScalar (const Vector<T, Size>& value, int amount) { return leftShift(value, Vector<int, Size>(amount)); }
1088 void eval_leftShift_int (ShaderEvalContext& c) { c.color.x() = (float)leftShift((int)c.in[0].z(), (int)c.in[1].x()); }
1089 DECLARE_BINARY_INT_VEC_FUNCS(leftShift)
1114 DECLARE_UINT_INT_GENTYPE_FUNCS(leftShift)
1635 << operInfoFunc(leftShiftName, leftShiftOp, IGT, Value(IGT, -7.0f, 7.0f), Value(gType, 0.0f, 4.0f), notUsed, 4e-3f, 0.5f, PRECMASK_LOWP_MEDIUMP, INT_GENTYPE_FUNCS(leftShift))
1636 << operInfoFunc(leftShiftName, leftShiftOp, IGT, Value(IGT, -7.0f, 7.0f), Value(gType, 0.0f, 27.0f), notUsed, 5e-10f, 0.5f, PRECMASK_HIGHP, INT_GENTYPE_FUNCS(leftShift))
1637 << operInfoFunc(leftShiftName, leftShiftOp, UGT, Value(UGT, 0.0f, 7.0f), Value(gType, 0.0f, 5.0f), notUsed, 4e-3f, 0.0f, PRECMASK_LOWP_MEDIUMP, UINT_GENTYPE_FUNCS(leftShift))
[all...]

Completed in 260 milliseconds