Searched refs:x1 (Results 101 - 125 of 278) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tests/gl_perfapp/jni/
H A Dgl_code.cpp43 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.java258 /*package*/ static void native_quadTo(long nPath, float x1, float y1, float x2, float y2) { argument
264 pathDelegate.quadTo(x1, y1, x2, y2);
278 /*package*/ static void native_cubicTo(long nPath, float x1, float y1, argument
285 pathDelegate.cubicTo(x1, y1, x2, y2, x3, y3);
289 /*package*/ static void native_rCubicTo(long nPath, float x1, float y1, argument
296 pathDelegate.rCubicTo(x1, y1, x2, y2, x3, y3);
638 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
641 * @param x1 The x-coordinate of the control point on a quadratic curve
646 private void quadTo(float x1, float y1, float x2, float y2) { argument
647 mPath.quadTo(x1, y
687 cubicTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvop.cpp414 // video->displayWidth += (video->displayWidth & 0x1); /* displayed image should be even size */
424 // video->displayHeight += (video->displayHeight & 0x1); /* displayed image should be even size */
912 if ((currVol->complexity.text_1 >> 3) & 0x1) /* intra */
914 if (currVol->complexity.text_1 & 0x1) /* not_coded */
916 if ((currVol->complexity.text_2 >> 3) & 0x1) /* dct_coefs */
918 if ((currVol->complexity.text_2 >> 2) & 0x1) /* dct_lines */
920 if ((currVol->complexity.text_2 >> 1) & 0x1) /* vlc_symbols */
922 if (currVol->complexity.text_2 & 0x1) /* vlc_bits */
927 if ((currVol->complexity.text_1 >> 2) & 0x1) /* inter */
929 if ((currVol->complexity.text_1 >> 1) & 0x1) /* inter_4
[all...]
/frameworks/base/libs/hwui/font/
H A DCacheTexture.h157 inline void addQuad(float x1, float y1, float u1, float v1, argument
164 TextureVertex::set(mesh++, x1, y1, u1, v1);
/frameworks/base/media/java/android/media/audiopolicy/
H A DAudioMixingRule.java53 public static final int RULE_MATCH_ATTRIBUTE_USAGE = 0x1;
58 public static final int RULE_MATCH_ATTRIBUTE_CAPTURE_PRESET = 0x1 << 1;
/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.cpp147 jfloat x1,
155 program->SetSourceRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
165 jfloat x1,
173 program->SetTargetRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
143 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
161 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/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/compile/mclinker/lib/Target/ARM/
H A DARMToARMStub.cpp70 if ((pTargetSymValue & 0x1) == 0x0) {
H A DARMToTHMStub.cpp72 if ((pTargetSymValue & 0x1) != 0x0) {
/frameworks/native/services/surfaceflinger/
H A DMessageQueue.h65 eventMaskInvalidate = 0x1,
H A DTransform.h56 TRANSLATE = 0x1,
/frameworks/base/libs/hwui/
H A DFontRenderer.h162 void appendMeshQuadNoClip(float x1, float y1, float u1, float v1,
166 void appendMeshQuad(float x1, float y1, float u1, float v1,
170 void appendRotatedMeshQuad(float x1, float y1, float u1, float v1,
H A DShadowTessellator.cpp157 double x1 = poly[p1].x; local
161 double a = (x1 * y2 - x2 * y1);
162 sumx += (x1 + x2) * a;
H A DFontRenderer.cpp378 cacheBuffer[cacheY * cacheWidth + cacheX++] = COLORS[(b >> mask) & 0x1];
537 void FontRenderer::appendMeshQuadNoClip(float x1, float y1, float u1, float v1, argument
545 mCurrentCacheTexture->addQuad(x1, y1, u1, v1, x2, y2, u2, v2,
549 void FontRenderer::appendMeshQuad(float x1, float y1, float u1, float v1, argument
554 (x1 > mClip->right || y1 < mClip->top || x2 < mClip->left || y4 > mClip->bottom)) {
558 appendMeshQuadNoClip(x1, y1, u1, v1, x2, y2, u2, v2, x3, y3, u3, v3, x4, y4, u4, v4, texture);
561 mBounds->left = fmin(mBounds->left, x1);
572 void FontRenderer::appendRotatedMeshQuad(float x1, float y1, float u1, float v1, argument
576 appendMeshQuadNoClip(x1, y1, u1, v1, x2, y2, u2, v2, x3, y3, u3, v3, x4, y4, u4, v4, texture);
579 mBounds->left = fmin(mBounds->left, fmin(x1, fmi
[all...]
/frameworks/base/media/java/android/media/
H A DAudioFormat.java292 public final static int AUDIO_FORMAT_HAS_PROPERTY_ENCODING = 0x1 << 0;
294 public final static int AUDIO_FORMAT_HAS_PROPERTY_SAMPLE_RATE = 0x1 << 1;
296 public final static int AUDIO_FORMAT_HAS_PROPERTY_CHANNEL_MASK = 0x1 << 2;
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DDisplayModifier.java33 protected final static int SWEEP_STROKE_WIDTH_BIT = 0x1 << 0;
34 protected final static int SWEEP_STROKE_CAP_BIT = 0x1 << 1;
35 protected final static int SWEEP_STROKE_JOIN_BIT = 0x1 << 2;
37 protected final static int SWEEP_SHADER_BIT = 0x1 << 3; // only allow non-simple shaders to use rectangle drawing
38 protected final static int SWEEP_TRANSFORM_BIT = 0x1 << 4; // only sweep over specified transforms
/frameworks/native/services/sensorservice/
H A DFusion.cpp171 x1 = 0;
192 x1 = 0;
351 return x1;
374 const vec3_t b = x1;
473 x1 += db;
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_math_agree.java113 ucv[i] = (short)rand.nextInt(0x1 << 8);
119 sv[i] = (short)rand.nextInt(0x1 << 16);
125 usv[i] = rand.nextInt(0x1 << 16);
302 short rand_uc1_0 = (short)rand.nextInt(0x1 << 8);
306 short rand_uc1_1 = (short)rand.nextInt(0x1 << 8);
310 short rand_ss1_0 = (short)rand.nextInt(0x1 << 16);
314 short rand_ss1_1 = (short)rand.nextInt(0x1 << 16);
318 int rand_us1_0 = rand.nextInt(0x1 << 16);
322 int rand_us1_1 = rand.nextInt(0x1 << 16);
350 byte rand_sc1_0 = (byte)rand.nextInt(0x1 <<
[all...]
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUT_math_agree.java113 ucv[i] = (short)rand.nextInt(0x1 << 8);
119 sv[i] = (short)rand.nextInt(0x1 << 16);
125 usv[i] = rand.nextInt(0x1 << 16);
302 short rand_uc1_0 = (short)rand.nextInt(0x1 << 8);
306 short rand_uc1_1 = (short)rand.nextInt(0x1 << 8);
310 short rand_ss1_0 = (short)rand.nextInt(0x1 << 16);
314 short rand_ss1_1 = (short)rand.nextInt(0x1 << 16);
318 int rand_us1_0 = rand.nextInt(0x1 << 16);
322 int rand_us1_1 = rand.nextInt(0x1 << 16);
350 byte rand_sc1_0 = (byte)rand.nextInt(0x1 <<
[all...]
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java201 private void sendSwipe(int inputSource, float x1, float y1, float x2, float y2, int duration) { argument
206 injectMotionEvent(inputSource, MotionEvent.ACTION_DOWN, now, x1, y1, 1.0f);
212 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, lerp(x1, x2, alpha),
284 System.err.println(" swipe <x1> <y1> <x2> <y2> [duration(ms)]"
/frameworks/av/include/media/
H A DIMediaPlayerService.h84 kBatteryDataTrackAudio = 0x1,

Completed in 1298 milliseconds

1234567891011>>