HomeSort by relevance Sort by last modified time
    Searched refs:x1 (Results 1026 - 1050 of 4103) sorted by null

<<41424344454647484950>>

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
arc.c 89 /* Given: Points (x0, y0) and (x1, y1)
94 find_unit_circles(double x0, double y0, double x1, double y1,
99 double dx = x0 - x1;
101 double xm = (x0 + x1)/2;
129 * endpoints (x0, y0) and (x1, y1)
135 double x0, double y0, double x1, double y1,
143 /* Transform (x0, y0) and (x1, y1) into unit space */
147 x1p = (x1*COS + y1*SIN)/rh;
148 y1p = (-x1*SIN + y1*COS)/rv;
176 /* Transform (x0, y0) and (x1, y1) into unit space *
322 double x1, y1, x2, y2; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.c 89 /* Given: Points (x0, y0) and (x1, y1)
94 find_unit_circles(double x0, double y0, double x1, double y1,
99 double dx = x0 - x1;
101 double xm = (x0 + x1)/2;
129 * endpoints (x0, y0) and (x1, y1)
135 double x0, double y0, double x1, double y1,
143 /* Transform (x0, y0) and (x1, y1) into unit space */
147 x1p = (x1*COS + y1*SIN)/rh;
148 y1p = (-x1*SIN + y1*COS)/rv;
176 /* Transform (x0, y0) and (x1, y1) into unit space *
322 double x1, y1, x2, y2; local
    [all...]
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_vidc_dec.h 204 VDEC_CODECTYPE_H264 = 0x1,
221 VDEC_MPEG2ProfileSimple = 0x1,
235 VDEC_MPEG2LevelLL = 0x1,
340 VDEC_XVIDProfile_Simple = 0x1,
346 VDEC_XVID_LEVEL_S_L0 = 0x1,
410 VDEC_VC1ProfileSimple = 0x1,
416 VDEC_VC1_LEVEL_S_Low = 0x1,
436 VDEC_InterlaceFrameProgressive = 0x1,
442 VDEC_YUV_FORMAT_NV12 = 0x1,
447 VDEC_ORDER_DISPLAY = 0x1,
    [all...]
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_vidc_dec.h 277 VDEC_CODECTYPE_H264 = 0x1,
292 VDEC_MPEG2ProfileSimple = 0x1,
305 VDEC_MPEG2LevelLL = 0x1,
395 VDEC_XVIDProfile_Simple = 0x1,
401 VDEC_XVID_LEVEL_S_L0 = 0x1,
456 VDEC_VC1ProfileSimple = 0x1,
462 VDEC_VC1_LEVEL_S_Low = 0x1,
480 VDEC_InterlaceFrameProgressive = 0x1,
486 VDEC_YUV_FORMAT_NV12 = 0x1,
491 VDEC_ORDER_DISPLAY = 0x1,
    [all...]
  /hardware/qcom/msm8x74/kernel-headers/linux/
msm_vidc_dec.h 202 VDEC_CODECTYPE_H264 = 0x1,
221 VDEC_MPEG2ProfileSimple = 0x1,
235 VDEC_MPEG2LevelLL = 0x1,
340 VDEC_XVIDProfile_Simple = 0x1,
346 VDEC_XVID_LEVEL_S_L0 = 0x1,
410 VDEC_VC1ProfileSimple = 0x1,
416 VDEC_VC1_LEVEL_S_Low = 0x1,
436 VDEC_InterlaceFrameProgressive = 0x1,
442 VDEC_YUV_FORMAT_NV12 = 0x1,
447 VDEC_ORDER_DISPLAY = 0x1,
    [all...]
  /hardware/qcom/msm8x74/original-kernel-headers/linux/
msm_vidc_dec.h 274 VDEC_CODECTYPE_H264 = 0x1,
290 VDEC_MPEG2ProfileSimple = 0x1,
303 VDEC_MPEG2LevelLL = 0x1,
393 VDEC_XVIDProfile_Simple = 0x1,
399 VDEC_XVID_LEVEL_S_L0 = 0x1,
454 VDEC_VC1ProfileSimple = 0x1,
460 VDEC_VC1_LEVEL_S_Low = 0x1,
478 VDEC_InterlaceFrameProgressive = 0x1,
484 VDEC_YUV_FORMAT_NV12 = 0x1,
489 VDEC_ORDER_DISPLAY = 0x1,
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 
hierarchyviewer2lib.jar 
  /external/opencv/cv/src/
cvpyramids.cpp 52 /* ...| x0 | x1 | x2 | x3 | x4 |... */
53 #define PD_FILTER( x0, x1, x2, x3, x4 ) ((x2)*6+((x1)+(x3))*4+(x0)+(x4))
61 /* | x2 | x1 I x0 | x1 | x2 |... */
62 #define PD_LT(x0,x1,x2) ((x0)*6 + (x1)*8 + (x2)*2)
66 /* ...| x0 | x1 | x2 | x3 I x2 | */
67 #define PD_RB(x0,x1,x2,x3) ((x0) + ((x1) + (x3))*4 + (x2)*7
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkScan_Antihair.cpp 373 static void do_anti_hairline(SkFDot6 x0, SkFDot6 y0, SkFDot6 x1, SkFDot6 y1,
378 if (any_bad_ints(x0, y0, x1, y1)) {
386 SkASSERT(canConvertFDot6ToFixed(x1));
389 if (SkAbs32(x1 - x0) > SkIntToFDot6(511) || SkAbs32(y1 - y0) > SkIntToFDot6(511)) {
390 /* instead of (x0 + x1) >> 1, we shift each separately. This is less
396 int hx = (x0 >> 1) + (x1 >> 1);
399 do_anti_hairline(hx, hy, x1, y1, clip, blitter);
413 if (SkAbs32(x1 - x0) > SkAbs32(y1 - y0)) { // mostly horizontal
414 if (x0 > x1) { // we want to go left-to-right
415 SkTSwap<SkFDot6>(x0, x1);
    [all...]
  /external/robolectric/lib/main/
objenesis-1.0.jar 
  /external/skia/src/core/
SkScan_Antihair.cpp 373 static void do_anti_hairline(SkFDot6 x0, SkFDot6 y0, SkFDot6 x1, SkFDot6 y1,
378 if (any_bad_ints(x0, y0, x1, y1)) {
386 SkASSERT(canConvertFDot6ToFixed(x1));
389 if (SkAbs32(x1 - x0) > SkIntToFDot6(511) || SkAbs32(y1 - y0) > SkIntToFDot6(511)) {
390 /* instead of (x0 + x1) >> 1, we shift each separately. This is less
396 int hx = (x0 >> 1) + (x1 >> 1);
399 do_anti_hairline(hx, hy, x1, y1, clip, blitter);
413 if (SkAbs32(x1 - x0) > SkAbs32(y1 - y0)) { // mostly horizontal
414 if (x0 > x1) { // we want to go left-to-right
415 SkTSwap<SkFDot6>(x0, x1);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.cpp 241 float x1 = intersection1.point.x(); local
243 return (x1 == x2) ? intersection1.type < intersection2.type : x1 < x2;
312 static bool compareX1(const FloatShapeInterval a, const FloatShapeInterval& b) { return a.x1() < b.x1(); }
339 float x1; local
344 x1 = intersection.point.x();
346 x1 = (edge->vertex1().y() < edge->vertex2().y()) ? edge->vertex1().x() : edge->vertex2().x();
356 if (x1 > x2)
357 std::swap(x1, x2)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aaline.c 45 GLfloat x1, y1; /* end */ member in struct:LineInfo
79 * Input: (x0, y0) and (x1,y1) are the endpoints of the line.
89 compute_plane(GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1,
94 const GLfloat px = x1 - x0;
110 const GLfloat px = x1 - x0;
345 const GLfloat x1 = line->x0 + t1 * line->dx; local
353 line->qx2 = x1 + line->yAdj;
355 line->qx3 = x1 - line->yAdj;
372 if (x0 < x1) {
374 xRight = x1 + line->halfWidth
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aaline.c 45 GLfloat x1, y1; /* end */ member in struct:LineInfo
79 * Input: (x0, y0) and (x1,y1) are the endpoints of the line.
89 compute_plane(GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1,
94 const GLfloat px = x1 - x0;
110 const GLfloat px = x1 - x0;
345 const GLfloat x1 = line->x0 + t1 * line->dx; local
353 line->qx2 = x1 + line->yAdj;
355 line->qx3 = x1 - line->yAdj;
372 if (x0 < x1) {
374 xRight = x1 + line->halfWidth
    [all...]
  /external/llvm/test/MC/AArch64/
trace-regs.s 49 mrs x1, trctraceidr
69 mrs x1, trccntctlr1
91 mrs x1, trcrsctlr9
94 mrs x1, trcrsctlr12
106 mrs x1, trcrsctlr24
130 mrs x1, trcsspcicr0
178 mrs x1, trcdvcvr7
181 mrs x1, trcdvcmr2
186 mrs x1, trcdvcmr7
198 mrs x1, trcvmidcvr
    [all...]
basic-a64-diagnostics.s 39 add x1, x2, sp, uxtx
47 // CHECK-ERROR: add x1, x2, sp, uxtx
53 subs x2, x1, sp, uxtx
54 adds x2, x1, sp, uxtb #2
62 // CHECK-ERROR: subs x2, x1, sp, uxtx
65 // CHECK-ERROR: adds x2, x1, sp, uxtb #2
97 add w2, w3, #0x1, lsl #1
102 // CHECK-ERROR-NEXT: add w2, w3, #0x1, lsl #1
203 add x1, x2, x3, lsl #-1
204 add x1, x2, x3, lsl #6
    [all...]
  /external/chromium_org/third_party/freetype/src/cff/
cf2intrp.c 712 CF2_Fixed x1 = cf2_stack_getReal( opStack, index + 0 ) + curX; local
714 CF2_Fixed x2 = cf2_stack_getReal( opStack, index + 2 ) + x1;
720 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
1266 CF2_Fixed x1 = cf2_stack_getReal( opStack, index + 0 ) + curX; local
1295 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1334 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1376 CF2_Fixed x1, x2, x3, y1, y2, y3; local
    [all...]
  /external/freetype/src/cff/
cf2intrp.c 712 CF2_Fixed x1 = cf2_stack_getReal( opStack, index + 0 ) + curX; local
714 CF2_Fixed x2 = cf2_stack_getReal( opStack, index + 2 ) + x1;
720 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
1266 CF2_Fixed x1 = cf2_stack_getReal( opStack, index + 0 ) + curX; local
1295 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1334 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1376 CF2_Fixed x1, x2, x3, y1, y2, y3; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 108 int x0, x1, x2, x3; local
112 x1 = input[1];
116 if (!(x0 | x1 | x2 | x3)) {
123 s2 = sinpi_2_9 * x1;
124 s3 = sinpi_1_9 * x1;
128 s7 = x0 + x1 - x3;
131 x1 = sinpi_3_9 * s7;
136 s1 = x1;
186 /*canbe16*/ int x0, x1, x2, x3; local
200 x1 = s1 + s2
244 \/*canbe16*\/ int x0, x1, x2, x3; local
370 \/*canbe16*\/ int x0, x1, x2, x3; local
488 int x1 = input[0]; local
675 \/*canbe16*\/ int x0, x1, x2, x3; local
790 int x1 = input[0]; local
    [all...]
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_itrans8_dspr2.c 473 int x0, x1, x2, x3, x4, x5, x6, x7; local
476 x1 = input[0];
484 if (!(x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7)) {
491 s0 = cospi_2_64 * x0 + cospi_30_64 * x1;
492 s1 = cospi_30_64 * x0 - cospi_2_64 * x1;
501 x1 = ROUND_POWER_OF_TWO((s1 + s5), DCT_CONST_BITS);
511 s1 = x1;
520 x1 = s1 + s3;
546 output[7] = -x1;
    [all...]
  /external/pixman/pixman/
pixman-bits-image.c 102 int x1, y1, x2, y2; local
106 x1 = x - pixman_fixed_1 / 2;
109 distx = pixman_fixed_to_bilinear_weight (x1);
112 x1 = pixman_fixed_to_int (x1);
114 x2 = x1 + 1;
119 repeat (repeat_mode, &x1, width);
124 tl = get_pixel (image, x1, y1, FALSE);
125 bl = get_pixel (image, x1, y2, FALSE);
131 tl = get_pixel (image, x1, y1, TRUE)
366 int32_t i, j, x1, x2, y1, y2; local
449 int32_t x1, x2, y1, y2; local
771 int32_t x1, x2, y1, y2; local
905 int x1, y1, x2, y2; local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 356 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
359 * @param x1 The x-coordinate of the control point on a quadratic curve
364 public void quadTo(float x1, float y1, float x2, float y2) {
366 native_quadTo(mNativePath, x1, y1, x2, y2);
390 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
393 * @param x1 The x-coordinate of the 1st control point on a cubic curve
400 public void cubicTo(float x1, float y1, float x2, float y2,
403 native_cubicTo(mNativePath, x1, y1, x2, y2, x3, y3);
411 public void rCubicTo(float x1, float y1, float x2, float y2,
414 native_rCubicTo(mNativePath, x1, y1, x2, y2, x3, y3)
    [all...]
  /bionic/libc/kernel/arch-mips/asm/sgi/
hpc3.h 141 #define HPC3_ERST_CRESET 0x1
201 #define HPC3_GIOMISC_ERTIME 0x1
272 #define HPC3_PROM_WENAB 0x1
276 #define HPC3_PROM_SWAP 0x1
280 #define HPC3_PROM_STAT 0x1
  /development/ndk/platforms/android-9/arch-mips/include/asm/sgi/
hpc3.h 141 #define HPC3_ERST_CRESET 0x1
201 #define HPC3_GIOMISC_ERTIME 0x1
272 #define HPC3_PROM_WENAB 0x1
276 #define HPC3_PROM_SWAP 0x1
280 #define HPC3_PROM_STAT 0x1

Completed in 787 milliseconds

<<41424344454647484950>>