/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/ |
H A D | AutoFocusHelper.java | 127 private static MeteringRectangle[] regionsForNormalizedCoord(float nx, float ny, in regionsForNormalizedCoord() argument 139 nx, ny, sensorOrientation); in regionsForNormalizedCoord() 168 public static MeteringRectangle[] afRegionsForNormalizedCoord(float nx, in afRegionsForNormalizedCoord() argument 170 return regionsForNormalizedCoord(nx, ny, Settings3A.getAutoFocusRegionWidth(), in afRegionsForNormalizedCoord() 184 public static MeteringRectangle[] aeRegionsForNormalizedCoord(float nx, in aeRegionsForNormalizedCoord() argument 186 return regionsForNormalizedCoord(nx, ny, Settings3A.getMeteringRegionWidth(), in aeRegionsForNormalizedCoord() 200 public static MeteringRectangle[] gcamAERegionsForNormalizedCoord(float nx, in gcamAERegionsForNormalizedCoord() argument 202 return regionsForNormalizedCoord(nx, ny, Settings3A.getGcamMeteringRegionFraction(), in gcamAERegionsForNormalizedCoord()
|
H A D | OneCameraImpl.java | 698 public void triggerFocusAndMeterAtPoint(float nx, float ny) { in triggerFocusAndMeterAtPoint() argument 701 mAERegions = AutoFocusHelper.aeRegionsForNormalizedCoord(nx, ny, mCropRegion, in triggerFocusAndMeterAtPoint() 703 mAFRegions = AutoFocusHelper.afRegionsForNormalizedCoord(nx, ny, mCropRegion, in triggerFocusAndMeterAtPoint()
|
H A D | OneCameraZslImpl.java | 1083 public void triggerFocusAndMeterAtPoint(float nx, float ny) { in triggerFocusAndMeterAtPoint() argument 1086 … mAERegions = AutoFocusHelper.aeRegionsForNormalizedCoord(nx, ny, mCropRegion, sensorOrientation); in triggerFocusAndMeterAtPoint() 1087 … mAFRegions = AutoFocusHelper.afRegionsForNormalizedCoord(nx, ny, mCropRegion, sensorOrientation); in triggerFocusAndMeterAtPoint()
|
/aosp12/bionic/libm/upstream-freebsd/lib/msun/ld128/ |
H A D | e_rem_pio2l.h | 68 int e0,ex,i,j,nx; in __ieee754_rem_pio2l() local 127 nx = 5; in __ieee754_rem_pio2l() 128 while(tx[nx-1]==zero) nx--; /* skip zero term */ in __ieee754_rem_pio2l() 129 n = __kernel_rem_pio2(tx,ty,e0,nx,3); in __ieee754_rem_pio2l()
|
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
H A D | NinePatchTexture.java | 225 int nx = stretch(divX, divU, chunk.mDivX, tex.getWidth(), width); in NinePatchInstance() local 228 prepareVertexData(divX, divY, divU, divV, nx, ny, chunk.mColor); in NinePatchInstance() 313 int nx, int ny, int[] color) { in prepareVertexData() argument 337 for (int i = 0; i < nx; ++i) { in prepareVertexData() 357 end = nx; in prepareVertexData() 360 start = nx - 1; in prepareVertexData() 366 int k = row * nx + col; in prepareVertexData() 368 int colorIdx = row * (nx - 1) + col; in prepareVertexData() 378 index[idxCount++] = (byte) (k + nx); in prepareVertexData()
|
/aosp12/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/ |
H A D | Point.java | 93 float nx = this.x; in rotated90() local 96 float ox = nx; in rotated90() 97 nx = ny; in rotated90() 100 return new Point(nx, ny); in rotated90()
|
/aosp12/bionic/libm/upstream-freebsd/lib/msun/src/ |
H A D | e_rem_pio2.c | 59 int32_t e0,i,j,nx,n,ix,hx; in __ieee754_rem_pio2() local 175 nx = 3; in __ieee754_rem_pio2() 176 while(tx[nx-1]==zero) nx--; /* skip zero term */ in __ieee754_rem_pio2() 177 n = __kernel_rem_pio2(tx,ty,e0,nx,1); in __ieee754_rem_pio2()
|
H A D | k_rem_pio2.c | 294 __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec) in __kernel_rem_pio2() argument 304 jx = nx-1; in __kernel_rem_pio2()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/initialization/ |
H A D | DeferredManualAutoFocus.java | 37 public void triggerFocusAndMeterAtPoint(float nx, float ny) { in triggerFocusAndMeterAtPoint() argument 41 af.triggerFocusAndMeterAtPoint(nx, ny); in triggerFocusAndMeterAtPoint()
|
H A D | GenericOneCameraImpl.java | 92 public void triggerFocusAndMeterAtPoint(float nx, float ny) { in triggerFocusAndMeterAtPoint() argument 93 mManualAutoFocus.triggerFocusAndMeterAtPoint(nx, ny); in triggerFocusAndMeterAtPoint()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/autofocus/ |
H A D | ManualAutoFocusImpl.java | 45 public void triggerFocusAndMeterAtPoint(float nx, float ny) { in triggerFocusAndMeterAtPoint() argument 46 PointF point = new PointF(nx, ny); in triggerFocusAndMeterAtPoint()
|
H A D | ManualAutoFocus.java | 25 void triggerFocusAndMeterAtPoint(float nx, float ny); in triggerFocusAndMeterAtPoint() argument
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
H A D | valuetest.cpp | 386 Value nx(-1234); in TEST() local 387 EXPECT_EQ(-1234, nx.GetInt()); in TEST() 389 EXPECT_TRUE(nx.IsInt()); in TEST() 390 EXPECT_TRUE(nx.IsInt64()); in TEST() 391 EXPECT_FALSE(nx.IsUint()); in TEST() 392 EXPECT_FALSE(nx.IsUint64()); in TEST() 472 Value nx(int64_t(-1234LL)); in TEST() local 475 EXPECT_TRUE(nx.IsInt()); in TEST() 476 EXPECT_TRUE(nx.IsInt64()); in TEST() 477 EXPECT_FALSE(nx.IsUint()); in TEST() [all …]
|
/aosp12/frameworks/rs/driver/runtime/ |
H A D | rs_sample.c | 319 int lx, int ly, int nx, int ny, in getBilinearSample2D() argument 327 return getSample_RGBA(p, stride, lx, ly, nx, ny, w0, w1, w2, w3); in getBilinearSample2D() 329 return getSample_A(p, stride, lx, ly, nx, ny, w0, w1, w2, w3); in getBilinearSample2D() 331 return getSample_LA(p, stride, lx, ly, nx, ny, w0, w1, w2, w3); in getBilinearSample2D() 334 return getSample_565(p, stride, lx, ly, nx, ny, w0, w1, w2, w3); in getBilinearSample2D() 336 return getSample_RGB(p, stride, lx, ly, nx, ny, w0, w1, w2, w3); in getBilinearSample2D() 338 return getSample_L(p, stride, lx, ly, nx, ny, w0, w1, w2, w3); in getBilinearSample2D() 500 int nx = wrapI(wrapS, iPixelU + 1, sourceW); in sample_LOD_LinearPixel() local 505 return getBilinearSample2D(alloc, w0, w1, w2, w3, lx, ly, nx, ny, dk, dt, lod); in sample_LOD_LinearPixel()
|
/aosp12/frameworks/base/core/java/android/text/method/ |
H A D | Touch.java | 153 int nx = widget.getScrollX() + (int) dx; in onTouchEvent() local 165 scrollTo(widget, layout, nx, ny); in onTouchEvent()
|
/aosp12/frameworks/av/services/camera/libcameraservice/device3/ |
H A D | RotateAndCropMapper.cpp | 322 int32_t nx = std::round(transformMat[0] * x0 + transformMat[1] * y0 + xShift + ox); in transformPoints() local 325 pts[i] = std::min(std::max(nx, 0), mArrayWidth); in transformPoints()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/util/ |
H A D | CameraUtil.java | 404 float nx, float ny, int sensorOrientation) { in normalizedSensorCoordsForNormalizedDisplayCoords() argument 407 return new PointF(nx, ny); in normalizedSensorCoordsForNormalizedDisplayCoords() 409 return new PointF(ny, 1.0f - nx); in normalizedSensorCoordsForNormalizedDisplayCoords() 411 return new PointF(1.0f - nx, 1.0f - ny); in normalizedSensorCoordsForNormalizedDisplayCoords() 413 return new PointF(1.0f - ny, nx); in normalizedSensorCoordsForNormalizedDisplayCoords()
|
/aosp12/frameworks/base/core/java/android/gesture/ |
H A D | GestureUtils.java | 299 float nx = lstPointX + ratio * deltaX; in temporalSampling() local 301 vector[index] = nx; in temporalSampling() 305 lstPointX = nx; in temporalSampling()
|
/aosp12/frameworks/native/opengl/tools/glgen/specs/gles11/ |
H A D | GLES10.spec | 70 void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) 71 void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
|
/aosp12/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
H A D | GL10.java | 728 float nx, in glNormal3f() argument 734 int nx, in glNormal3x() argument
|
/aosp12/frameworks/native/opengl/libs/GLES_CM/ |
H A D | gl_api.in | 76 void API_ENTRY(glNormal3f)(GLfloat nx, GLfloat ny, GLfloat nz) { 77 CALL_GL_API(glNormal3f, nx, ny, nz); 331 void API_ENTRY(glNormal3x)(GLfixed nx, GLfixed ny, GLfixed nz) { 332 CALL_GL_API(glNormal3x, nx, ny, nz);
|
/aosp12/frameworks/native/opengl/tools/glgen/specs/jsr239/ |
H A D | glspec-1.0 | 70 void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) 71 void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
|
/aosp12/packages/apps/Camera2/src/com/android/camera/one/ |
H A D | OneCamera.java | 361 public void triggerFocusAndMeterAtPoint(float nx, float ny); in triggerFocusAndMeterAtPoint() argument
|
/aosp12/frameworks/base/opengl/java/android/opengl/ |
H A D | GLES10.java | 932 float nx, in glNormal3f() argument 940 int nx, in glNormal3x() argument
|
/aosp12/frameworks/native/opengl/tests/angeles/include/GLES/ |
H A D | gl.h | 542 GLAPI void APIENTRY glNormal3f (GLfloat nx, GLfloat ny, GLfloat nz); 543 GLAPI void APIENTRY glNormal3x (GLfixed nx, GLfixed ny, GLfixed nz);
|