Home
last modified time | relevance | path

Searched refs:x (Results 1 – 25 of 93) sorted by relevance

1234

/device/sample/skins/WVGAMedDpi/
Dlayout17 x 0
29 x 56
34 x 0
39 x 112
44 x 77
49 x 77
54 x 53
59 x 123
64 x 77
69 x 0
[all …]
/device/generic/goldfish/opengl/system/renderControl_enc/
DrenderControl.types1 uint32_t 32 0x%08x false
2 EGLint 32 0x%08x false
3 GLint 32 0x%08x false
4 GLuint 32 0x%08x false
5 GLenum 32 0x%08x false
6 EGLenum 32 0x%08x false
7 uint32_t* 32 0x%08x true
8 EGLint* 32 0x%08x true
9 GLint* 32 0x%08x true
10 GLuint* 32 0x%08x true
[all …]
/device/moto/shamu/camera/QCamera/stack/mm-camera-test/src/
Dmm_qcamera_display.c111 overlayp->src_rect.x = e->src_rect.x; in overlay_set_params()
116 overlayp->dst_rect.x = e->dst_rect.x; in overlay_set_params()
137 overlayp->src_rect.x, overlayp->src_rect.y, overlayp->src_rect.w, overlayp->src_rect.h, in overlay_set_params()
138 overlayp->dst_rect.x, overlayp->dst_rect.y, overlayp->dst_rect.w, overlayp->dst_rect.h in overlay_set_params()
204 e->src_rect.x = (crop->out2_w - crop->in2_w + 1) / 2 - 1; in test_app_camframe_callback()
211 CDBG("e->src_rect.x = %d\n", e->src_rect.x); in test_app_camframe_callback()
216 e->dst_rect.x = 0; in test_app_camframe_callback()
221 e->src_rect.x = 0; in test_app_camframe_callback()
226 e->dst_rect.x = 0; in test_app_camframe_callback()
405 int x, int y, int dx, int dy) in draw_rect() argument
[all …]
/device/moto/shamu/camera/QCamera/HAL/core/src/
DQCameraParameters.cpp343 void QCameraParameters::setTouchIndexAec(int x, int y) in setTouchIndexAec() argument
346 snprintf(str, sizeof(str), "%dx%d", x, y); in setTouchIndexAec()
350 void QCameraParameters::getTouchIndexAec(int *x, int *y) const in getTouchIndexAec() argument
352 *x = -1; in getTouchIndexAec()
362 *x = tempX; in getTouchIndexAec()
367 void QCameraParameters::setTouchIndexAf(int x, int y) in setTouchIndexAf() argument
370 snprintf(str, sizeof(str), "%dx%d", x, y); in setTouchIndexAf()
374 void QCameraParameters::getTouchIndexAf(int *x, int *y) const in getTouchIndexAf() argument
376 *x = -1; in getTouchIndexAf()
386 *x = tempX; in getTouchIndexAf()
[all …]
/device/lge/bullhead/power/
Dmetadata-defs.h37 #define MIN(x,y) (((x)>(y))?(y):(x)) argument
/device/huawei/angler/power/
Dmetadata-defs.h37 #define MIN(x,y) (((x)>(y))?(y):(x)) argument
/device/moto/shamu/camera/
DQCameraParameters.h247 void setTouchIndexAec(int x, int y);
248 void getTouchIndexAec(int *x, int *y) const;
249 void setTouchIndexAf(int x, int y);
250 void getTouchIndexAf(int *x, int *y) const;
251 void getMeteringAreaCenter(int * x, int *y) const;
/device/asus/flo/camera/
DQCameraParameters.h247 void setTouchIndexAec(int x, int y);
248 void getTouchIndexAec(int *x, int *y) const;
249 void setTouchIndexAf(int x, int y);
250 void getTouchIndexAf(int *x, int *y) const;
251 void getMeteringAreaCenter(int * x, int *y) const;
/device/lge/hammerhead/camera/
DQCameraParameters.h247 void setTouchIndexAec(int x, int y);
248 void getTouchIndexAec(int *x, int *y) const;
249 void setTouchIndexAf(int x, int y);
250 void getTouchIndexAf(int *x, int *y) const;
251 void getMeteringAreaCenter(int * x, int *y) const;
/device/moto/shamu/camera/QCamera/HAL2/core/inc/
DQCameraParameters.h244 void setTouchIndexAec(int x, int y);
245 void getTouchIndexAec(int *x, int *y) const;
246 void setTouchIndexAf(int x, int y);
247 void getTouchIndexAf(int *x, int *y) const;
248 void getMeteringAreaCenter(int * x, int *y) const;
/device/generic/goldfish/camera/fake-pipeline2/
DSensor.cpp409 for (unsigned int x = 0; x < kResolution[0]; x++) { in captureRaw() local
411 electronCount = mScene.getPixelElectrons()[bayerRow[x & 0x1]]; in captureRaw()
448 for (unsigned int x = 0; x < kResolution[0]; x+=inc) { in captureRGBA() local
478 for (unsigned int x = 0; x < kResolution[0]; x += inc) { in captureRGB() local
562 for (unsigned int x = 0; x < kResolution[0]; x += inc) { in captureDepth() local
589 for (size_t x = 0; x < 4; x++, i++) { in captureDepthCloud() local
599 cloud->xyzc_points[i * FLOATS_PER_POINT + 0] = x - 1.5f + randSampleX; in captureDepthCloud()
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/
DJoystickView.java34 public void setPosition(int x, int y) { in setPosition() argument
35 fX = x; in setPosition()
72 int x = w / 2 - 4 + fX; in onDraw() local
74 Utilities.centerAround(x, y, indicator); in onDraw()
76 canvas.drawText(mLabelText, x + 12, y + 8, mLabelPaint); in onDraw()
DColorWheel.java116 private int floatToByte(float x) { in floatToByte() argument
117 int n = java.lang.Math.round(x); in floatToByte()
185 float x = event.getX() - CENTER_X; in onTouchEvent() local
187 boolean inCenter = java.lang.Math.sqrt(x*x + y*y) <= CENTER_RADIUS; in onTouchEvent()
204 float angle = (float)java.lang.Math.atan2(y, x); in onTouchEvent()
DUtilities.java6 static void centerAround(int x, int y, Drawable d) { in centerAround() argument
9 int left = x - w / 2; in centerAround()
DInputController.java77 public void joystickMoved(int x, int y) { in joystickMoved() argument
78 mJoystickView.setPosition(x, y); in joystickMoved()
97 public void onStickMoved(int x, int y) { in onStickMoved() argument
98 joystickMoved(x, y); in onStickMoved()
/device/generic/goldfish/camera/
DEmulatedQemuCamera.cpp103 const int x = atoi(first_dim); in Initialize() local
105 mParameters.setPreviewSize(x, y); in Initialize()
106 mParameters.setPictureSize(x, y); in Initialize()
109 __FUNCTION__, device_name, x, y); in Initialize()
DConverters.cpp40 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB565() local
70 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB32() local
DEmulatedFakeCameraDevice.cpp272 for(int x = 0; x < mFrameWidth; x += 2) { in drawCheckerboard() local
313 void EmulatedFakeCameraDevice::drawSquare(int x, in drawSquare() argument
318 const int square_xstop = min(mFrameWidth, x + size); in drawSquare()
320 uint8_t* Y_pos = mCurrentFrame + y * mFrameWidth + x; in drawSquare()
327 const int iUV = (y / 2) * mUVInRow + (x / 2) * mUVStep; in drawSquare()
331 for (int i = x; i < square_xstop; i += 2) { in drawSquare()
/device/generic/goldfish/opengl/system/GLESv2_enc/
Dgl2_entry.cpp32 …void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei…
33 …void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint …
101 …void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLv…
105 void glScissor(GLint x, GLint y, GLsizei width, GLsizei height);
120 void glUniform1f(GLint location, GLfloat x);
122 void glUniform1i(GLint location, GLint x);
124 void glUniform2f(GLint location, GLfloat x, GLfloat y);
126 void glUniform2i(GLint location, GLint x, GLint y);
128 void glUniform3f(GLint location, GLfloat x, GLfloat y, GLfloat z);
130 void glUniform3i(GLint location, GLint x, GLint y, GLint z);
[all …]
/device/generic/goldfish/opengl/tests/gles_android_wrapper/
Dgles.cpp211 void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) in glRotatef() argument
213 getDispatch()->glRotatef(angle, x, y, z); in glRotatef()
216 void glScalef(GLfloat x, GLfloat y, GLfloat z) in glScalef() argument
218 getDispatch()->glScalef(x, y, z); in glScalef()
241 void glTranslatef(GLfloat x, GLfloat y, GLfloat z) in glTranslatef() argument
243 getDispatch()->glTranslatef(x, y, z); in glTranslatef()
341 void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei … in glCopyTexImage2D() argument
343 getDispatch()->glCopyTexImage2D(target, level, internalformat, x, y, width, height, border); in glCopyTexImage2D()
346 void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y… in glCopyTexSubImage2D() argument
348 getDispatch()->glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height); in glCopyTexSubImage2D()
[all …]
/device/generic/goldfish/opengl/tests/ut_rendercontrol_enc/
Dut_rendercontrol.types1 uint32_t 32 0x%08x false
/device/generic/goldfish/opengl/system/egl/
DClientAPIExts.in172 (GLshort x, GLshort y, GLshort z, GLshort width, GLshort height),
173 (x, y, z, width, height))
176 (GLint x, GLint y, GLint z, GLint width, GLint height),
177 (x, y, z, width, height))
180 (GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height),
181 (x, y, z, width, height))
184 (GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height),
185 (x, y, z, width, height))
/device/asus/fugu/kernel-headers/linux/
Dkct.h85 #define __KCT_ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument
86 #define __KCT_ALIGN(x, a) __KCT_ALIGN_MASK(x, (typeof(x))(a) - 1) argument
87 #define KCT_ALIGN(x, a) __KCT_ALIGN((x), (a)) argument
/device/asus/fugu/original-kernel-headers/linux/
Dkct.h77 # define __KCT_ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument
78 # define __KCT_ALIGN(x, a) __KCT_ALIGN_MASK(x, (typeof(x))(a) - 1) argument
79 # define KCT_ALIGN(x, a) __KCT_ALIGN((x), (a)) argument
/device/generic/goldfish/opengl/system/GLESv1_enc/
Dgl_entry.cpp40 void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
41 void glScalef(GLfloat x, GLfloat y, GLfloat z);
46 void glTranslatef(GLfloat x, GLfloat y, GLfloat z);
65 …void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei…
66 …void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint …
128 …void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLv…
129 void glRotatex(GLfixed angle, GLfixed x, GLfixed y, GLfixed z);
132 void glScalex(GLfixed x, GLfixed y, GLfixed z);
133 void glScissor(GLint x, GLint y, GLsizei width, GLsizei height);
149 void glTranslatex(GLfixed x, GLfixed y, GLfixed z);
[all …]

1234