HomeSort by relevance Sort by last modified time
    Searched refs:y2 (Results 101 - 125 of 564) sorted by null

1 2 3 45 6 7 8 91011>>

  /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()),
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
q_gain2.c 66 Word16 y2[], /* (i) Q9 : Filtered innovative vector. */
132 * coeff[2] = y2 y2 *
133 * coeff[3] = -2 xn y2 *
134 * coeff[4] = 2 y1 y2 *
145 /* Compute scalar product <y2[],y2[]> */
147 coeff[2] = extract_h(Dot_product12_asm(y2, y2, L_subfr, &exp));
149 coeff[2] = extract_h(Dot_product12(y2, y2, L_subfr, &exp))
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_comp.cpp 1126 ULong x1, x2, x1m, x2m, y1, y2, y1m, y2m; \/* new way *\/ local
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_graphics_2d_host_unittest.cc 30 int y2; member in struct:content::__anon10455
76 gfx::Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
  /external/chromium_org/third_party/skia/src/animator/
SkPathParts.cpp 118 SK_MEMBER(y2, Float)
125 SkQuadTo::SkQuadTo() : x1(0), y1(0), x2(0), y2(0) {
129 fPath->fPath.quadTo(x1, y1, x2, y2);
146 fPath->fPath.rQuadTo(x1, y1, x2, y2);
159 SK_MEMBER(y2, Float),
167 SkCubicTo::SkCubicTo() : x1(0), y1(0), x2(0), y2(0), x3(0), y3(0) {
171 fPath->fPath.cubicTo(x1, y1, x2, y2, x3, y3);
188 fPath->fPath.rCubicTo(x1, y1, x2, y2, x3, y3);
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_float_animation_curve_impl.cc 40 double y2) {
44 cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2)
web_transform_animation_curve_impl.cc 44 double y2) {
51 cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2)
  /external/jmonkeyengine/engine/src/desktop/com/jme3/texture/plugins/
AWTLoader.java 82 int y2 = 0; local
84 y2 = height - y1 - 1;
86 System.arraycopy(img, y2 * scSz, img, y1 * scSz, scSz);
87 System.arraycopy(sln, 0, img, y2 * scSz, scSz);
95 int y2 = 0; local
97 y2 = height - y1 - 1;
99 System.arraycopy(img, y2 * scSz, img, y1 * scSz, scSz);
100 System.arraycopy(sln, 0, img, y2 * scSz, scSz);
  /external/opencv/cvaux/src/
decomppoly.cpp 152 int x1, y1, x2, y2, x3, y3;
188 y2 = contour[ index2 ].y;
195 dy1 = y2 - y1;
197 dy2 = y3 - y2;
246 y2 = y3;
268 y1 = y2;
271 y2 = y3;
297 y1 = y2;
300 y2 = y3;
339 int x1_left = 0, y1_left = 0, x1_right = 0, y1_right = 0, x2, y2;
    [all...]
  /external/qemu/android/skin/
rect.h 61 int x2, y2; member in struct:__anon26526
64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
  /external/skia/src/animator/
SkPathParts.cpp 118 SK_MEMBER(y2, Float)
125 SkQuadTo::SkQuadTo() : x1(0), y1(0), x2(0), y2(0) {
129 fPath->fPath.quadTo(x1, y1, x2, y2);
146 fPath->fPath.rQuadTo(x1, y1, x2, y2);
159 SK_MEMBER(y2, Float),
167 SkCubicTo::SkCubicTo() : x1(0), y1(0), x2(0), y2(0), x3(0), y3(0) {
171 fPath->fPath.cubicTo(x1, y1, x2, y2, x3, y3);
188 fPath->fPath.rCubicTo(x1, y1, x2, y2, x3, y3);
  /frameworks/av/media/libeffects/testlibs/
AudioBiquadFilter.cpp 155 audio_sample_t y2 = mDelays[0][3]; local
168 acc = mac_coef_sample(a2, y2, acc);
170 y2 = y1;
179 mDelays[0][3] = y2;
213 audio_sample_t y2 = mDelays[ch][3]; local
221 acc = mac_coef_sample(a2, y2, acc);
223 y2 = y1;
234 mDelays[ch][3] = y2;
  /frameworks/base/libs/hwui/
Patch.h 64 float y1, float y2, float v1, float v2, float stretchX, float rescaleX,
66 void generateQuad(TextureVertex*& vertex, float x1, float y1, float x2, float y2,
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
grain.fs 47 uint32_t y2 = (y+1) & gHMask;
55 uint p20 = 56 * rsGetElementAt_uchar(gBlendSource, x1, y2);
56 uint p21 = 114 * rsGetElementAt_uchar(gBlendSource, x, y2);
57 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
grain.fs 47 uint32_t y2 = (y+1) & gHMask;
55 uint p20 = 56 * rsGetElementAt_uchar(gBlendSource, x1, y2);
56 uint p21 = 114 * rsGetElementAt_uchar(gBlendSource, x, y2);
57 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
grain.fs 47 uint32_t y2 = (y+1) & gHMask;
55 uint p20 = 56 * rsGetElementAt_uchar(gBlendSource, x1, y2);
56 uint p21 = 114 * rsGetElementAt_uchar(gBlendSource, x, y2);
57 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
  /external/chromium_org/chrome/browser/profiles/
profile_info_util.cc 84 int y2 = y1 + length; local
92 canvas.DrawLine(gfx::Point(x1, y2 - 1), gfx::Point(x2, y2 - 1),
97 canvas.DrawLine(gfx::Point(x1, y1 + 1), gfx::Point(x1, y2 - 1), shadow_color);
99 canvas.DrawLine(gfx::Point(x2 - 1, y1 + 1), gfx::Point(x2 - 1, y2 - 1),
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
TimingFunction.h 100 static PassRefPtr<CubicBezierTimingFunction> create(double x1, double y1, double x2, double y2)
102 return adoptRef(new CubicBezierTimingFunction(Custom, x1, y1, x2, y2));
156 double y2() const { return m_y2; } function in class:WebCore::CubicBezierTimingFunction
161 explicit CubicBezierTimingFunction(TimingFunctionPreset preset, double x1, double y1, double x2, double y2)
166 , m_y2(y2)
  /external/pixman/pixman/
pixman.c 177 if (rbox->y2 > (v = cbox->y2 + dy))
178 rbox->y2 = v;
179 if (rbox->x1 >= rbox->x2 || rbox->y1 >= rbox->y2)
244 region->extents.y2 = dest_y + height;
249 region->extents.y2 = MIN (region->extents.y2, dest_image->bits.height);
255 region->extents.y1 >= region->extents.y2)
260 region->extents.y2 = 0;
333 pixman_fixed_48_16_t y2; member in struct:__anon26207
342 pixman_fixed_t x1, y1, x2, y2; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/wscons/
SDL_wsconsvideo.c 477 int x1, y1, x2, y2; local
488 y2 = y1 + rects[i].h;
505 if (y2 < 0) {
506 y2 = 0;
507 } else if (y2 > height) {
508 y2 = height;
510 if (x2 <= x1 || y2 <= y1) {
519 scr_y2 = y2;
526 scr_x2 = y2;
535 scr_y1 = height - y2;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridLayoutPainter.java 71 gc.drawLine(x, b.y, x, b.y2());
91 int y2 = b.y2() - MARGIN_SIZE; local
92 for (int y = y1; y < y2; y += GRID_SIZE) {
193 int y2; local
196 y2 = rowMatch.matchedLine - rowMatch.margin;
200 y2 = rowMatch.matchedLine + rowMatch.margin;
203 gc.drawLine(b.x, y2, b.x2(), y2);
205 centerX - 3, y1 + (y2 - y1 - 16) / 2)
    [all...]
  /external/jmonkeyengine/engine/src/android/jme3tools/android/
Fixed.java 315 public static int hyp(int x1, int y1, int x2, int y2) {
319 if ((y2 -= y1) < 0) {
320 y2 = -y2;
322 return x2 + y2 - (((x2 > y2) ? y2 : x2) >> 1);
  /external/chromium/chrome/browser/ui/gtk/
nine_box.cc 120 int y2 = images_[6] ? dst_height - gdk_pixbuf_get_height(images_[6]) : y1; local
122 if (x2 < x1 || y2 < y1)
149 TileImage(cr, images_[3], 0, y1, x1, y2 - y1, opacity);
151 TileImage(cr, images_[4], x1, y1, x2 - x1, y2 - y1, opacity);
153 TileImage(cr, images_[5], x2, y1, dst_width - x2, y2 - y1, opacity);
157 DrawPixbuf(cr, images_[6], 0, y2, opacity);
159 TileImage(cr, images_[7], x1, y2, x2 - x1, dst_height - y2, opacity);
161 DrawPixbuf(cr, images_[8], x2, y2, opacity);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypot.c 33 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
35 * y1= y with lower 32 bits chopped, y2 = y-y1.
57 double a,b,t1,t2,y1,y2,w; local
114 y2 = b - y1;
118 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
e_hypotf.c 25 float a,b,t1,t2,y1,y2,w; local
74 y2 = b - y1;
77 w = __ieee754_sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b)));

Completed in 462 milliseconds

1 2 3 45 6 7 8 91011>>