Searched refs:x1 (Results 126 - 150 of 348) sorted by relevance

1234567891011>>

/frameworks/base/core/jni/include/android_runtime/
H A Dandroid_view_Surface.h39 RGBA_8888 = 0x1,
/frameworks/base/libs/hwui/
H A DPatch.h64 void generateQuad(TextureVertex*& vertex, float x1, float y1, float x2, float y2,
/frameworks/native/opengl/libagl/arch-mips/
H A Dfixed_asm.S46 andi $t4,$v0,0x1
/frameworks/native/opengl/tests/gl_perfapp/jni/
H A Dgl_code.cpp41 int texSize = ((stateClock >> 1) & 0x1) + 1;
/frameworks/wilhelm/src/
H A Dtrace.h22 #define SL_TRACE_ENTER 0x1
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java265 /*package*/ static void nQuadTo(long nPath, float x1, float y1, float x2, float y2) { argument
271 pathDelegate.quadTo(x1, y1, x2, y2);
285 /*package*/ static void nCubicTo(long nPath, float x1, float y1, argument
292 pathDelegate.cubicTo(x1, y1, x2, y2, x3, y3);
296 /*package*/ static void nRCubicTo(long nPath, float x1, float y1, argument
303 pathDelegate.rCubicTo(x1, y1, x2, y2, x3, y3);
704 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
707 * @param x1 The x-coordinate of the control point on a quadratic curve
712 public void quadTo(float x1, float y1, float x2, float y2) { argument
713 mPath.quadTo(x1, y
753 cubicTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
[all...]
/frameworks/base/services/core/java/com/android/server/power/
H A DWirelessChargerDetector.java352 private static boolean hasMoved(float x1, float y1, float z1, argument
354 final double dotProduct = (x1 * x2) + (y1 * y2) + (z1 * z2);
355 final double mag1 = Math.sqrt((x1 * x1) + (y1 * y1) + (z1 * z1));
367 + ", x1=" + x1 + ", y1=" + y1 + ", z1=" + z1
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvop.cpp416 // video->displayWidth += (video->displayWidth & 0x1); /* displayed image should be even size */
426 // video->displayHeight += (video->displayHeight & 0x1); /* displayed image should be even size */
914 if ((currVol->complexity.text_1 >> 3) & 0x1) /* intra */
916 if (currVol->complexity.text_1 & 0x1) /* not_coded */
918 if ((currVol->complexity.text_2 >> 3) & 0x1) /* dct_coefs */
920 if ((currVol->complexity.text_2 >> 2) & 0x1) /* dct_lines */
922 if ((currVol->complexity.text_2 >> 1) & 0x1) /* vlc_symbols */
924 if (currVol->complexity.text_2 & 0x1) /* vlc_bits */
929 if ((currVol->complexity.text_1 >> 2) & 0x1) /* inter */
931 if ((currVol->complexity.text_1 >> 1) & 0x1) /* inter_4
[all...]
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java215 private void sendSwipe(int inputSource, float x1, float y1, float x2, float y2, int duration) { argument
220 injectMotionEvent(inputSource, MotionEvent.ACTION_DOWN, now, x1, y1, 1.0f);
226 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, lerp(x1, x2, alpha),
233 private void sendDragAndDrop(int inputSource, float x1, float y1, float x2, float y2, argument
239 injectMotionEvent(inputSource, MotionEvent.ACTION_DOWN, now, x1, y1, 1.0f);
251 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, lerp(x1, x2, alpha),
334 System.err.println(" swipe <x1> <y1> <x2> <y2> [duration(ms)]"
336 System.err.println(" draganddrop <x1> <y1> <x2> <y2> [duration(ms)]"
/frameworks/native/services/sensorservice/
H A DFusion.cpp188 x1 = 0;
222 x1 = 0;
335 w_dummy = x1; //bias
409 return x1;
432 const vec3_t b = x1;
537 x1 += db;
/frameworks/av/media/libstagefright/webm/
H A DWebmConstants.h136 kVideoType = 0x1,
146 kVideoTrackNum = 0x1,
/frameworks/base/libs/hwui/font/
H A DCacheTexture.h161 inline void addQuad(float x1, float y1, float u1, float v1, argument
168 TextureVertex::set(mesh++, x1, y1, u1, v1);
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
H A DQuad.java75 float x1 = Collections.max(xs);
77 return new Rectangle(x0, y0, x1 - x0, y1 - y0);
/frameworks/base/media/mca/filterfw/jni/
H A Djni_shader_program.h68 jfloat x1,
80 jfloat x1,
H A Djni_shader_program.cpp140 jfloat x1,
148 program->SetSourceRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
158 jfloat x1,
166 program->SetTargetRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
136 Java_android_filterfw_core_ShaderProgram_setSourceRegion(JNIEnv* env, jobject thiz, jfloat x0, jfloat y0, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) argument
154 Java_android_filterfw_core_ShaderProgram_setTargetRegion(JNIEnv* env, jobject thiz, jfloat x0, jfloat y0, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) argument
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DRotateFilter.java142 Point x1 = new Point(0.5f * (cosTheta + sinTheta + 1f),
148 Quad quad = new Quad(x0, x1, x2, x3);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPathInterpolatorBuilder.java50 private void initCubic(float x1, float y1, float x2, float y2) { argument
53 path.cubicTo(x1, y1, x2, y2, 1f, 1f);
/frameworks/rs/cpu_ref/
H A DrsCpuCore.h37 typedef void (*ReduceAccumulatorFunc_t)(const RsExpandKernelDriverInfo *info, uint32_t x1, uint32_t x2, uint8_t *accum);
41 typedef void (*ForEachFunc_t)(const RsExpandKernelDriverInfo *info, uint32_t x1, uint32_t x2, uint32_t outStride);
/frameworks/av/include/media/
H A DIMediaPlayerService.h69 kBatteryDataTrackAudio = 0x1,
/frameworks/av/media/libmedia/include/media/
H A DIMediaPlayerService.h69 kBatteryDataTrackAudio = 0x1,
/frameworks/av/media/libstagefright/codec2/include/
H A DC2Config.h67 kParamIndexStructStart = 0x1,
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_MotionEstimationMB.c550 if((dstMV16x16.dx & 0x1) && (dstMV16x16.dy & 0x1))
554 else if(dstMV16x16.dx & 0x1)
558 else if(dstMV16x16.dy & 0x1)
/frameworks/base/media/java/android/media/
H A DAudioFormat.java608 public final static int AUDIO_FORMAT_HAS_PROPERTY_ENCODING = 0x1 << 0;
610 public final static int AUDIO_FORMAT_HAS_PROPERTY_SAMPLE_RATE = 0x1 << 1;
612 public final static int AUDIO_FORMAT_HAS_PROPERTY_CHANNEL_MASK = 0x1 << 2;
614 public final static int AUDIO_FORMAT_HAS_PROPERTY_CHANNEL_INDEX_MASK = 0x1 << 3;
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMToARMStub.cpp66 if ((pTargetSymValue & 0x1) == 0x0) {
H A DARMToTHMStub.cpp68 if ((pTargetSymValue & 0x1) != 0x0) {

Completed in 549 milliseconds

1234567891011>>