HomeSort by relevance Sort by last modified time
    Searched defs:x2 (Results 276 - 300 of 617) sorted by null

<<11121314151617181920>>

  /external/opencv/cv/src/
cvtemplmatch.cpp 208 int x1 = MAX( 0, x0 ), y1 = MAX( 0, y0 ), x2, y2; local
213 x2 = MIN( img->cols, x0 + isz.width );
221 src = cvGetSubRect( img, &sstub, cvRect(x1,y1,x2-x1,y2-y1) );
226 if( x2 - x1 < isz.width || y2 - y1 < isz.height )
228 cvRect( x1 - x0, y1 - y0, x2 - x1, y2 - y1 ));
234 planes[i] = cvInitMatHeader( &temp, y2 - y1, x2 - x1, depth, _buf );
cvundistort.cpp 67 float x = (u - u0)*ifx, x2 = x*x, r2 = x2 + y2, _2xy = 2*x*y; local
69 float _x = fx*(x*kr + p1*_2xy + p2*(r2 + 2*x2)) + x0;
246 float x = (u - u0)*ifx, x2 = x*x, r2 = x2 + y2, _2xy = 2*x*y; local
248 double _x = fx*(x*kr + p1*_2xy + p2*(r2 + 2*x2)) + x0;
356 double x2 = x*x, y2 = y*y; local
357 double r2 = x2 + y2, _2xy = 2*x*y;
359 double u = fx*(x*kr + p1*_2xy + p2*(r2 + 2*x2)) + u0;
  /external/pixman/pixman/
pixman-matrix.c 592 int x1, y1, x2, y2; local
598 v[1].vector[0] = F (b->x2);
602 v[2].vector[0] = F (b->x2);
617 x2 = pixman_fixed_to_int (pixman_fixed_ceil (v[i].vector[0]));
624 b->x2 = x2;
631 if (x2 > b->x2) b->x2 = x2;
1019 int x1, y1, x2, y2; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemvideo.c 719 short x2,y2,w2,h2; local
740 if (!wind_calc(WC_BORDER, GEM_win_type, 0,0,width,height, &x2,&y2,&w2,&h2)) {
747 x2 = (GEM_desk_w-w2)>>1;
749 if (x2<0) {
750 x2 = 0;
755 x2 += GEM_desk_x;
765 GEM_handle=wind_create(GEM_win_type, x2,y2,w2,h2);
781 wind_open(GEM_handle,x2,y2,w2,h2);
784 wind_get (GEM_handle, WF_WORKXYWH, &x2,&y2,&w2,&h2);
785 if (wind_calc(WC_BORDER, GEM_win_type, x2,y2,width,height, &x2,&y2,&w2,&h2))
875 int x1,x2; local
1271 int x1,x2; local
    [all...]
  /external/skia/src/effects/
SkBlurMask.cpp 662 float x2 = x*x; local
663 float x3 = x2*x;
666 return 0.5625f - (x3 / 6.0f - 3.0f * x2 * 0.25f + 1.125f * x);
671 return 0.4375f + (-x3 / 6.0f - 3.0f * x2 * 0.25f - 1.125f * x);
    [all...]
  /external/svox/pico/compat/jni/
com_android_tts_compat_SynthProxy.cpp 59 static double x2; // x[n-2] variable
95 x2 = 0.0f;
107 out0 = (m_fa*x0) + (m_fb*x1) + (m_fc*x2) + (m_fd*out1) + (m_fe*out2);
109 x2 = x1;
  /packages/apps/Camera/jni/feature_stab/src/dbreg/
dbreg.h 554 double x0,x1,x2,mult; local
559 x2=H[6]*x[0]+H[7]*x[1]+H[8];
560 mult=1.0/((x2!=0.0)?x2:1.0);
  /packages/apps/Camera2/jni/feature_stab/src/dbreg/
dbreg.h 554 double x0,x1,x2,mult; local
559 x2=H[6]*x[0]+H[7]*x[1]+H[8];
560 mult=1.0/((x2!=0.0)?x2:1.0);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
Spline.java 184 double x2 = next.x; local
190 double delta = (x2 - x1);
278 double x2 = points[i + 1].x; local
282 for (double x = x1; x < x2; x += 20) {
285 double delta = (x2 - x1);
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 271 final float x2 = from.left + offsetX; local
294 float x = (1f - t) * (1f - t) * (x1 - x1o) + 2 * (1f - t) * t * (x2 - x1o) +
  /packages/apps/Launcher3/src/com/android/launcher3/
DeleteDropTarget.java 368 final float x2 = from.left + offsetX; local
391 float x = (1f - t) * (1f - t) * (x1 - x1o) + 2 * (1f - t) * t * (x2 - x1o) +
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbreg.h 554 double x0,x1,x2,mult; local
559 x2=H[6]*x[0]+H[7]*x[1]+H[8];
560 mult=1.0/((x2!=0.0)?x2:1.0);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
DividedImageCanvas.java 355 int x1 = width / 2, y1 = 0, x2 = width/2, y2 = height; local
357 mCanvas.drawLine(x1, y1, x2, y2, sPaint);
360 protected void drawHorizontalDivider(int x1, int y1, int x2, int y2) {
362 mCanvas.drawLine(x1, y1, x2, y2, sPaint);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 98 int x2 = x1 + w; local
101 if (x2 < bounds.x || y2 < bounds.y || x1 > bounds.x2() || y1 > bounds.y2()) {
111 addRightSideMatch(x2, columnMatches, max);
112 addCenterColumnMatch(bounds, x1, y1, x2, y2, columnMatches, max);
126 addColumnGapMatch(bounds, x1, x2, columnMatches, max);
135 x2 = x1 + w;
199 if (x1 >= bounds.x2()) {
274 private void addRightSideMatch(int x2, List<GridMatch> columnMatches, int max) {
277 int columnRight = (mGrid.getViewCount() == 0) ? 0 : mGrid.getClosestColumn(x2);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintPainter.java 328 int x1, y1, x2, y2; local
340 x2 = targetBounds.x + 1 * targetBounds.w / 4;
342 x2 = targetBounds.x + 3 * targetBounds.w / 4;
351 graphics.drawArrow(x1, y1, x2, y2, ARROW_SIZE);
399 targetBounds.x2(), targetY + PARENT_RECT_SIZE / 2);
416 int minRight = Math.min(sourceBounds.x2(), targetBounds.x2());
419 if (center > sourceBounds.x && center < sourceBounds.x2()) {
445 graphics.drawLine(targetBounds.x, sharedY, targetBounds.x2(), sharedY);
460 graphics.drawLine(targetBounds.x, sharedY, targetBounds.x2(), sharedY)
    [all...]
  /developers/build/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-Basic/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-ListPopupMenu/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-Styled/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActivityInstrumentation/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AdvancedImmersiveMode/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AppRestrictions/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/BasicAccessibility/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/gradle/wrapper/
gradle-wrapper.jar 

Completed in 311 milliseconds

<<11121314151617181920>>