HomeSort by relevance Sort by last modified time
    Searched refs:x1 (Results 351 - 375 of 966) sorted by null

<<11121314151617181920>>

  /external/webkit/WebCore/svg/
SVGLinearGradientElement.cpp 112 startPoint = FloatPoint(attributes.x1().valueAsPercentage(), attributes.y1().valueAsPercentage());
115 startPoint = FloatPoint(attributes.x1().value(this), attributes.y1().value(this));
174 attributes.setX1(linear->x1());
  /external/skia/src/core/
SkMatrix.cpp 1324 SkFixed x0, y0, x1, y1, x2, y2; local
1457 float x0, y0, x1, y1, x2, y2; local
    [all...]
SkPath.cpp 280 void SkPath::quadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) {
289 pts[0].set(x1, y1);
296 void SkPath::rQuadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) {
299 this->quadTo(pt.fX + x1, pt.fY + y1, pt.fX + x2, pt.fY + y2);
302 void SkPath::cubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
311 pts[0].set(x1, y1);
319 void SkPath::rCubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
323 this->cubicTo(pt.fX + x1, pt.fY + y1, pt.fX + x2, pt.fY + y2,
670 void SkPath::arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
678 before.setNormalize(x1 - start.fX, y1 - start.fY)
    [all...]
  /external/kernel-headers/original/asm-x86/
voyager.h 90 #define VOYAGER_READ_CONFIG 0x1
455 #define VOYAGER_DUMP_BUTTON_NMI 0x1
460 #define VOYAGER_IGNORE_DUMP 0x1
469 #define VOYAGER_OS_HAS_SYSINT 0x1
473 #define VOYAGER_SUS_BOOTING 0x1
  /external/libffi/src/sparc/
v9.S 241 .byte 0x1 ! CIE Version
243 .byte 0x1 ! uleb128 0x1; CIE Code Alignment Factor
246 .byte 0x1 ! uleb128 0x1; Augmentation size
  /external/webkit/WebCore/platform/graphics/wince/
FontWince.cpp 320 float x1 = cursorToX(this, components, w, run.rtl(), from); local
322 if (x2 < x1)
323 std::swap(x1, x2);
325 return FloatRect(pt.x() + x1, pt.y(), x2 - x1, h);
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/inc/
OMX_Mp3Dec_Utils.h 86 #define MP3DEC_MAJOR_VER 0x1/* Major number of the component */
87 #define MP3DEC_MINOR_VER 0x1 /* Mnor number of the component */
255 (_s_)->nVersion.s.nVersionMajor = 0x1; \
256 (_s_)->nVersion.s.nVersionMinor = 0x1; \
257 (_s_)->nVersion.s.nRevision = 0x1; \
    [all...]
  /external/srec/srec/cfront/
spec_anl.c 422 float x1, y1, b, c, wscale; local
430 x1 = freqobj->piecewise_start;
437 if (x1 > 1.0 || x1 < 0.5)
442 y1 = x1 < wscale ? (float)x1 / wscale : (float)1.0;
444 b = y1 < 1.0 ? (float)((1.0 - x1) / (1.0 - y1)) : (float)0.0;
  /prebuilt/common/jfreechart/
jfreechart-1.0.9-swt.jar 
  /external/openssl/crypto/ec/
ec2_smpl.c 682 BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t; local
707 x1 = BN_CTX_get(ctx);
726 if (!BN_copy(x1, &b->X)) goto err;
731 if (!EC_POINT_get_affine_coordinates_GF2m(group, b, x1, y1, ctx)) goto err;
735 if (BN_GF2m_cmp(x0, x1))
737 if (!BN_GF2m_add(t, x0, x1)) goto err;
747 if (BN_GF2m_cmp(y0, y1) || BN_is_zero(x1))
753 if (!group->meth->field_div(group, s, y1, x1, ctx)) goto err;
754 if (!BN_GF2m_add(s, s, x1)) goto err;
761 if (!BN_GF2m_add(y2, x1, x2)) goto err
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemvideo.c 878 int x1,x2; local
880 x1 = rects[i].x & ~15;
888 source += x1;
892 destination += x1;
896 x2-x1, rects[i].h,
1235 /* Calculate icon(x1,y1,x2,y2) relative to screen */
1274 int x1,x2; local
1276 x1 = (rect[0]-wind_pxy[0]) & ~15;
1284 src += x1;
1288 dest += x1;
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java 495 float x0, x1, y0, y1;
502 x1 = x0; y1 = level * r.bottom;
506 x1 = level * r.left; y1 = level * r.bottom;
510 x1 = level * r.left; y1 = y0;
514 x1 = level * r.left; y1 = level * r.top;
518 x1 = x0; y1 = level * r.top;
522 x1 = level * r.right; y1 = level * r.top;
526 x1 = level * r.right; y1 = y0;
530 x1 = level * r.right; y1 = level * r.bottom;
534 mFillPaint.setShader(new LinearGradient(x0, y0, x1, y1
    [all...]
  /frameworks/base/libs/rs/
rsScriptC_Lib.cpp 388 static float SC_distf2(float x1, float y1, float x2, float y2)
390 float x = x2 - x1;
395 static float SC_distf3(float x1, float y1, float z1, float x2, float y2, float z2)
397 float x = x2 - x1;
682 static void SC_drawLine(float x1, float y1, float z1,
690 float vtx[] = { x1, y1, z1, x2, y2, z2 };
722 static void SC_drawQuadTexCoords(float x1, float y1, float z1,
737 //LOGE("%4.2f, %4.2f, %4.2f", x1, y1, z1);
742 float vtx[] = {x1,y1,z1, x2,y2,z2, x3,y3,z3, x4,y4,z4};
758 static void SC_drawQuad(float x1, float y1, float z1
    [all...]
  /external/libffi/src/s390/
sysv.S 160 .byte 0x1 # CIE Version
162 .uleb128 0x1 # CIE Code Alignment Factor
165 .uleb128 0x1 # Augmentation size
359 .byte 0x1 # CIE Version
361 .uleb128 0x1 # CIE Code Alignment Factor
364 .uleb128 0x1 # Augmentation size
  /external/libpng/
pngconf.h     [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngconf.h     [all...]
  /frameworks/base/core/jni/android/graphics/
Path.cpp 111 static void quadTo__FFFF(JNIEnv* env, jobject clazz, SkPath* obj, jfloat x1, jfloat y1, jfloat x2, jfloat y2) {
112 SkScalar x1_ = SkFloatToScalar(x1);
127 static void cubicTo__FFFFFF(JNIEnv* env, jobject clazz, SkPath* obj, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) {
128 SkScalar x1_ = SkFloatToScalar(x1);
137 static void rCubicTo(JNIEnv* env, jobject clazz, SkPath* obj, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) {
138 SkScalar x1_ = SkFloatToScalar(x1);
  /external/tremolo/Tremolo/
mdctARM.s 449 ADD r7,r1,r0,LSL #1 @ r7 = x1+4 = x + POINTS
453 LDMDB r7!,{r2,r3,r8,r11} @ r2 = x1[0]
454 @ r3 = x1[1]
455 @ r8 = x1[2]
456 @ r11= x1[3] x1 -= 4
462 SUB r2, r2, r3 @ r2 = s0 = x1[0] - x1[1]
463 ADD r3, r2, r3, LSL #1 @ r3 = x1[0] + x1[1] (-> x1[0]
    [all...]
  /external/bluetooth/glib/glib/
grand.c 382 rand->mt[kk] = rand->mt[kk+M] ^ (y >> 1) ^ mag01[y & 0x1];
386 rand->mt[kk] = rand->mt[kk+(M-N)] ^ (y >> 1) ^ mag01[y & 0x1];
389 rand->mt[N-1] = rand->mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1];
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 165 double x0, x1, y0, y1; local
167 cairo_stroke_extents(cr, &x0, &y0, &x1, &y1);
169 cairo_fill_extents(cr, &x0, &y0, &x1, &y1);
170 FloatRect rect(x0, y0, x1 - x0, y1 - y0);
1091 double x1, y1, x2, y2; local
1092 cairo_clip_extents(cr, &x1, &y1, &x2, &y2);
1093 cairo_rectangle(cr, x1, y1, x2 - x1, y2 - y1);
1126 double x1, y1, x2, y2; local
1127 cairo_clip_extents(cr, &x1, &y1, &x2, &y2)
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/float_to_double/
Test_float_to_double.java 67 double r = 0x1.fffffeP+127d;
  /external/bluetooth/glib/tests/
markup-escape-test.c 90 test_unichar (0x1, TRUE);
  /external/grub/netboot/
smc9000.h 138 #define IM_RCV_INT 0x1
  /external/grub/util/
mbchk.c 110 filename, (mbh->flags & 0x1)? "on" : "off");
  /external/libffi/src/powerpc/
ppc_closure.S 280 .byte 0x1 # CIE Version
286 .uleb128 0x1 # CIE Code Alignment Factor
290 .uleb128 0x1 # Augmentation size
294 .uleb128 0x1

Completed in 624 milliseconds

<<11121314151617181920>>