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

/external/chromium_org/third_party/skia/bench/
H A DChartBench.cpp31 // The plots are animated by rotating the data points by leftShift.
36 int leftShift,
47 leftShift %= topData.count();
50 // Account for the leftShift using two loops
51 int shiftToEndCount = topData.count() - leftShift;
52 plot->moveTo(x, topData[leftShift]);
53 fill->moveTo(x, topData[leftShift]);
56 plot->lineTo(x, topData[i + leftShift]);
57 fill->lineTo(x, topData[i + leftShift]);
61 for (int i = 0; i < leftShift;
32 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/chromium_org/third_party/skia/samplecode/
H A DSampleChart.cpp27 // The plots are animated by rotating the data points by leftShift.
32 int leftShift,
43 leftShift %= topData.count();
46 // Account for the leftShift using two loops
47 int shiftToEndCount = topData.count() - leftShift;
48 plot->moveTo(x, topData[leftShift]);
49 fill->moveTo(x, topData[leftShift]);
52 plot->lineTo(x, topData[i + leftShift]);
53 fill->lineTo(x, topData[i + leftShift]);
57 for (int i = 0; i < leftShift;
28 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/bench/
H A DChartBench.cpp31 // The plots are animated by rotating the data points by leftShift.
36 int leftShift,
47 leftShift %= topData.count();
50 // Account for the leftShift using two loops
51 int shiftToEndCount = topData.count() - leftShift;
52 plot->moveTo(x, topData[leftShift]);
53 fill->moveTo(x, topData[leftShift]);
56 plot->lineTo(x, topData[i + leftShift]);
57 fill->lineTo(x, topData[i + leftShift]);
61 for (int i = 0; i < leftShift;
32 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.cpp27 // The plots are animated by rotating the data points by leftShift.
32 int leftShift,
43 leftShift %= topData.count();
46 // Account for the leftShift using two loops
47 int shiftToEndCount = topData.count() - leftShift;
48 plot->moveTo(x, topData[leftShift]);
49 fill->moveTo(x, topData[leftShift]);
52 plot->lineTo(x, topData[i + leftShift]);
53 fill->lineTo(x, topData[i + leftShift]);
57 for (int i = 0; i < leftShift;
28 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/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 122 milliseconds