HomeSort by relevance Sort by last modified time
    Searched refs:nx (Results 51 - 75 of 265) sorted by null

1 23 4 5 6 7 8 91011

  /packages/apps/Camera2/src/com/android/camera/one/
OneCamera.java 358 * @param nx normalized x coordinate.
361 public void triggerFocusAndMeterAtPoint(float nx, float ny);
  /external/opencv3/modules/core/src/
copy.cpp 840 static bool ocl_repeat(InputArray _src, int ny, int nx, OutputArray _dst)
842 if (ny == 1 && nx == 1)
853 format("-D T=%s -D nx=%d -D ny=%d -D rowsPerWI=%d -D cn=%d",
855 nx, ny, rowsPerWI, kercn));
868 void repeat(InputArray _src, int ny, int nx, OutputArray _dst)
871 CV_Assert( ny > 0 && nx > 0 );
874 _dst.create(ssize.height*ny, ssize.width*nx, _src.type());
878 ocl_repeat(_src, ny, nx, _dst))
897 Mat repeat(const Mat& src, int ny, int nx)
899 if( nx == 1 && ny == 1
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderBuiltinVarTests.cpp 357 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny)
359 return (s[0]*(1.0f-nx-ny)/w[0] + s[1]*ny/w[1] + s[2]*nx/w[2]) / ((1.0f-nx-ny)/w[0] + ny/w[1] + nx/w[2]);
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 396 * Given (nx, ny) \in [0, 1]^2, in the display's portrait coordinate system,
404 float nx, float ny, int sensorOrientation) {
407 return new PointF(nx, ny);
409 return new PointF(ny, 1.0f - nx);
411 return new PointF(1.0f - nx, 1.0f - ny);
413 return new PointF(1.0f - ny, nx);
    [all...]
  /external/pdfium/xfa/src/fxfa/src/app/
xfa_ffwidget.cpp 1149 FX_FLOAT fRadius1, fRadius2, sx, sy, vx, vy, nx, ny, offsetY, offsetX, local
1361 FX_FLOAT fRadius1, fRadius2, sx, sy, vx, vy, nx, ny; local
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 299 float nx = lstPointX + ratio * deltaX; local
301 vector[index] = nx;
305 lstPointX = nx;
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_miptree.c 32 nv50_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz)
34 return nvc0_tex_choose_tile_dims(nx, ny * 2, nz);
  /external/mesa3d/src/mesa/main/
es1_conversion.h 100 _es_Normal3x(GLfixed nx, GLfixed ny, GLfixed nz);
api_loopback.c 366 loopback_Normal3b( GLbyte nx, GLbyte ny, GLbyte nz )
368 NORMAL( BYTE_TO_FLOAT(nx), BYTE_TO_FLOAT(ny), BYTE_TO_FLOAT(nz) );
372 loopback_Normal3d( GLdouble nx, GLdouble ny, GLdouble nz )
374 NORMAL((GLfloat) nx, (GLfloat) ny, (GLfloat) nz);
378 loopback_Normal3i( GLint nx, GLint ny, GLint nz )
380 NORMAL( INT_TO_FLOAT(nx), INT_TO_FLOAT(ny), INT_TO_FLOAT(nz) );
384 loopback_Normal3s( GLshort nx, GLshort ny, GLshort nz )
386 NORMAL( SHORT_TO_FLOAT(nx), SHORT_TO_FLOAT(ny), SHORT_TO_FLOAT(nz) );
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 478 public void glNormal3f(float nx, float ny, float nz) {
479 mgl.glNormal3f(nx, ny, nz);
482 public void glNormal3x(int nx, int ny, int nz) {
483 mgl.glNormal3x(nx, ny, nz);
  /external/icu/icu4c/source/test/perf/utrie2perf/
utrie2perf.cpp 152 unorm_checkFCDUTF8(const uint8_t *src, int32_t srcLength, const UnicodeSet *nx);
  /external/opencv/cv/src/
cvcontourtree.cpp 599 double x13, y13, x12, y12, l_base, nx, ny, qq; local
610 nx = y13 / l_base;
613 *h = nx * x12 + ny * y12;
617 *b = nx * y12 - ny * x12;
cvlinefit.cpp 224 float nx = _line[1], ny = -_line[0];
234 dist[j] = (float) fabs( nx * x + ny * y );
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES10.spec 70 void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
71 void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_tokenize.py 470 >>> dump_tokens("import sys, time\\nx = sys.modules['time'].time()")
512 >>> roundtrip("# Comment \\\\nx = 0")
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_tokenize.py 470 >>> dump_tokens("import sys, time\\nx = sys.modules['time'].time()")
512 >>> roundtrip("# Comment \\\\nx = 0")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 470 >>> dump_tokens("import sys, time\\nx = sys.modules['time'].time()")
512 >>> roundtrip("# Comment \\\\nx = 0")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 470 >>> dump_tokens("import sys, time\\nx = sys.modules['time'].time()")
512 >>> roundtrip("# Comment \\\\nx = 0")
  /external/deqp/modules/gles3/functional/
es3fShaderBuiltinVarTests.cpp 377 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny)
379 return (s[0]*(1.0f-nx-ny)/w[0] + s[1]*ny/w[1] + s[2]*nx/w[2]) / ((1.0f-nx-ny)/w[0] + ny/w[1] + nx/w[2]);
    [all...]
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
gles.cpp 181 void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz)
183 getDispatch()->glNormal3f(nx, ny, nz);
606 void glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz)
608 getDispatch()->glNormal3x(nx, ny, nz);
971 void glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz)
973 getDispatch()->glNormal3xOES(nx, ny, nz);
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_rem_pio2.c 18 * __kernel_rem_pio2(x,y,e0,nx,prec)
19 * double x[],y[]; int e0,nx,prec;
34 * x[] The input value (must be positive) is broken into nx
66 * nx dimension of x[]
92 * jx nx - 1
294 __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec)
304 jx = nx-1;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 518 float nx = (float) (Math.sin(orientation) * Math.sin(tilt)); local
525 float cx = nx * cd;
  /external/opencv3/modules/imgproc/src/
linefit.cpp 206 float nx = _line[1], ny = -_line[0];
216 dist[j] = (float) fabs( nx * x + ny * y );
  /external/opencv3/modules/python/test/
camera_calibration.py 174 nx = (x + stoch_x - 0.5 - w2) / h2
176 self.r[o] = cam.genray(nx, ny)
  /external/v8/test/mjsunit/es6/
string-raw.js 95 assertEquals("\nx\r\ny\r", String.raw(callSiteObj, "x", "y"));

Completed in 1253 milliseconds

1 23 4 5 6 7 8 91011