HomeSort by relevance Sort by last modified time
    Searched refs:y2 (Results 76 - 100 of 583) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
convolve5x5.fs 34 uint32_t y2 = y;
50 float4 p2 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y2)) * gCoeffs[10]
51 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y2)) * gCoeffs[11]
52 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y2)) * gCoeffs[12]
53 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y2)) * gCoeffs[13]
54 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y2)) * gCoeffs[14];
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
convolve5x5.fs 34 uint32_t y2 = y;
50 float4 p2 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y2)) * gCoeffs[10]
51 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y2)) * gCoeffs[11]
52 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y2)) * gCoeffs[12]
53 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y2)) * gCoeffs[13]
54 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y2)) * gCoeffs[14];
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RasterShape.cpp 131 bool RasterShapeIntervals::getIntervalX1Values(int y1, int y2, int minIntervalWidth, Vector<int>& result) const
133 ASSERT(y1 >= 0 && y2 > y1);
135 for (int y = y1; y < y2; y++) {
141 for (int y = y1 + 1; y < y2; y++) {
181 void RasterShapeIntervals::getIncludedIntervals(int y1, int y2, IntShapeIntervals& result) const
183 ASSERT(y2 >= y1);
185 if (y1 < bounds().y() || y2 > bounds().maxY())
188 for (int y = y1; y < y2; y++) {
194 for (int y = y1 + 1; y < y2 && !result.isEmpty(); y++) {
201 void RasterShapeIntervals::getExcludedIntervals(int y1, int y2, IntShapeIntervals& result) cons
    [all...]
RectangleShape.cpp 83 float y2 = logicalTop + logicalHeight; local
85 if (y2 < bounds.y() || y1 >= bounds.maxY())
95 if (y2 < bounds.y() + marginRadiusY) {
96 float yi = y2 - bounds.y() - marginRadiusY;
118 float y2 = logicalTop + logicalHeight; local
120 if (y1 < bounds.y() || y2 > bounds.maxY())
131 bool y2InterceptsCorner = y2 > bounds.maxY() - paddingRadiusY;
135 if (y1 < bounds.height() + 2 * bounds.y() - y2) {
139 float yi = y2 - (bounds.maxY() - paddingRadiusY);
146 float yi = y2 - (bounds.maxY() - paddingRadiusY)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.c 49 left->y2 = bez->y1 + t * (bez->y2 - bez->y1);
52 left->y3 = bez->y2 + t * (bez->y3 - bez->y2);
58 bez->y2 = left->y3 + t * (bez->y3 - left->y3);
61 left->y3 = left->y2 + t * (left->y3 - left->y2);
64 left->y4 = bez->y1 = left->y3 + t * (bez->y2 - left->y3);
81 c = (bez->y2 + bez->y3) / 2;
82 first_half->y2 = (bez->y1 + bez->y2) * 0.5
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.c 49 left->y2 = bez->y1 + t * (bez->y2 - bez->y1);
52 left->y3 = bez->y2 + t * (bez->y3 - bez->y2);
58 bez->y2 = left->y3 + t * (bez->y3 - left->y3);
61 left->y3 = left->y2 + t * (left->y3 - left->y2);
64 left->y4 = bez->y1 = left->y3 + t * (bez->y2 - left->y3);
81 c = (bez->y2 + bez->y3) / 2;
82 first_half->y2 = (bez->y1 + bez->y2) * 0.5
    [all...]
  /external/pixman/pixman/
pixman-region.c 85 #define GOOD_RECT(rect) ((rect)->x1 < (rect)->x2 && (rect)->y1 < (rect)->y2)
86 #define BAD_RECT(rect) ((rect)->x1 > (rect)->x2 || (rect)->y1 > (rect)->y2)
133 * coordinate (y2). Thus all rectangles in a band differ only in their left
139 * the y1 to y2 area spanned by the band), then the rectangle may be broken
174 ((r1)->y2 <= (r2)->y1) || \
175 ((r1)->y1 >= (r2)->y2) ) )
181 ((r)->y2 > y) && \
189 ((r1)->y2 >= (r2)->y2) )
247 next_rect->y2 = ny2;
575 int y2; \/* Bottom of current band *\/ local
2227 overflow_int_t x1, x2, y1, y2; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
viewrtree.tcl 108 foreach {rowid x1 x2 y1 y2} $cell break
112 if {$y2 > $ymax} {set ymax $y2}
143 foreach {rowid x1 x2 y1 y2} $cell break
144 set total_area [expr {$total_area + ($x2-$x1)*($y2-$y1)}]
148 set y2 [expr {$y2*$yscale + $yoff}]
150 set id [.c create rectangle $x1 $y1 $x2 $y2]
168 foreach {rowid x1 x2 y1 y2} $cell break
169 set cell_area [expr $cell_area+($x2-$x1)*($y2-$y1)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkEdge.cpp 179 SkFDot6 x0, y0, x1, y1, x2, y2; local
189 y2 = int(pts[2].fY * scale);
197 y2 = pts[2].fY >> shift;
202 if (y0 > y2)
205 SkTSwap(y0, y2);
208 SkASSERT(y0 <= y1 && y1 <= y2);
211 int bot = SkFDot6Round(y2);
220 SkFDot6 dy = ((y1 << 1) - y0 - y2) >> 2;
262 A = SkFDot6ToFixedDiv2(y0 - y1 - y1 + y2); // 1/2 the real value
270 fQLastY = SkFDot6ToFixed(y2);
339 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
    [all...]
  /external/skia/src/core/
SkEdge.cpp 179 SkFDot6 x0, y0, x1, y1, x2, y2; local
189 y2 = int(pts[2].fY * scale);
197 y2 = pts[2].fY >> shift;
202 if (y0 > y2)
205 SkTSwap(y0, y2);
208 SkASSERT(y0 <= y1 && y1 <= y2);
211 int bot = SkFDot6Round(y2);
220 SkFDot6 dy = ((y1 << 1) - y0 - y2) >> 2;
262 A = SkFDot6ToFixedDiv2(y0 - y1 - y1 + y2); // 1/2 the real value
270 fQLastY = SkFDot6ToFixed(y2);
339 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
    [all...]
  /external/chromium_org/cc/animation/
timing_function.cc 30 double y2,
61 return eval_bezier(y1, y2, t);
75 double x1, double y1, double x2, double y2) {
76 return make_scoped_ptr(new CubicBezierTimingFunction(x1, y1, x2, y2));
82 double y2)
83 : x1_(x1), y1_(y1), x2_(x2), y2_(y2) {}
  /external/pixman/test/
region-contains-test.c 30 printf (" %d %d %d %d\n", box->x1, box->y1, box->x2, box->y2);
62 end = b->y2;
101 crc32 = compute_crc32_u32 (crc32, box->y2);
121 box.y2 = box.y1 + prng_rand ();
141 r2 = pixman_region32_contains_point (&region, box.x1, box.y2, &rbox);
145 r4 = pixman_region32_contains_point (&region, box.x2, box.y2, &rbox);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionHandles.java 93 int y2 = y1 + h; local
100 y2 -= insets.bottom;
104 int my = (y1 + y2) / 2;
112 mHandles.add(new SelectionHandle(x1, y2, Position.BOTTOM_LEFT));
121 mHandles.add(new SelectionHandle(x2, y2, Position.BOTTOM_RIGHT));
128 mHandles.add(new SelectionHandle(mx, y2, Position.BOTTOM_MIDDLE));
  /external/speex/libspeex/
ltp_arm4.h 101 spx_word32_t y0, y1, y2, y3; local
104 y2=*y++;
173 : "+r" (y0), "+r" (y1), "+r" (y2), "+r" (y3),
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_code.cpp 103 y2[] = filtered innovation vector
144 Word16 y2[] // in : filtered innovation vector
160 scal_y2[i] = shr (y2[i], 1);
231 Word16 y2[], /* i : filtered innovation vector */
240 Word16 *p_y2 = y2;
282 p_y2 = y2;
  /external/ceres-solver/internal/ceres/
partitioned_matrix_view_test.cc 97 Vector y2 = Vector::Zero(m.num_rows()); local
98 A_->RightMultiply(x2.data(), y2.data());
101 EXPECT_NEAR(y1(i), y2(i), kEpsilon);
122 Vector y2 = Vector::Zero(m.num_rows()); local
123 A_->RightMultiply(x2.data(), y2.data());
126 EXPECT_NEAR(y1(i), y2(i), kEpsilon);
143 Vector y2 = Vector::Zero(m.num_cols_f()); local
147 m.LeftMultiplyF(x.data(), y2.data());
151 (i < m.num_cols_e()) ? y1(i) : y2(i - m.num_cols_e()),
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLineElement.h 55 DECLARE_ANIMATED_LENGTH(Y2, y2)
SVGLinearGradientElement.h 53 DECLARE_ANIMATED_LENGTH(Y2, y2)
  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadImplicit.h 21 double y2() const { return fP[kYy_Coeff]; } function in class:SkDQuadImplicit
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_float_animation_curve_impl.h 37 double y2);
web_transform_animation_curve_impl.h 38 double y2);
  /external/clang/test/CXX/stmt.stmt/stmt.dcl/
p3-0x.cpp 39 Y y2; // expected-note{{jump bypasses variable with a non-trivial destructor}} local
  /external/clang/test/CodeGenCXX/
constructor-init.cpp 235 pair2 y2(x2);
236 pair2 y2m(static_cast<pair2&&>(y2));
238 y2 = x2;
239 y2m = static_cast<pair2&&>(y2);
  /external/clang/test/SemaCXX/
default-constructor-initializers.cpp 29 struct Y2 : Y1 {
30 Y2(int);
31 Y2();
34 struct Y3 : public Y2 {
39 Y2 y2; member in struct:Y4
  /external/libvpx/libvpx/vp9/common/
vp9_tapify.py 15 x2,y2 = p2
16 if x1==x2 and y1==y2 :
18 return 1/ math.sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2))

Completed in 1452 milliseconds

1 2 34 5 6 7 8 91011>>