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

1 2 3 4 5 67 8 91011>>

  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
xattr.h 15 #define XATTR_CREATE 0x1
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
taskstats.h 70 #define TASKSTATS_GENL_VERSION 0x1
xattr.h 15 #define XATTR_CREATE 0x1
  /system/core/sh/
parser.h 57 #define VSNORMAL 0x1 /* normal variable: $var or ${var} */
  /frameworks/base/awt/java/awt/
BasicStroke.java 663 double x1 = p.xLast; local
665 double x10 = x1 - x0;
686 p.cubicTo(x1 + y10, y1 - x10, x3 + mx, y3 + my, x3, y3);
690 p.lineTo(x1 + y10, y1 - x10);
715 double x1 = p.xLast; local
717 double x10 = x1 - x0;
752 double s1 = x1 * x10 + y1 * y10;
789 double x1 = p.xLast; local
791 double x10 = x1 - x0;
827 p.cubicTo(x1 - y10, y1 + x10, x2 + y20, y2 - x20, x2, y2)
    [all...]
  /external/dropbear/libtommath/etc/
pprime.c 17 mp_word x1, x2; local
21 x1 = x2;
22 x2 = x1 - ((x1 * x1) - x) / (2 * x1);
23 } while (x1 != x2);
25 if (x1 * x1 > x) {
26 --x1;
    [all...]
  /external/freetype/src/autofit/
afwarp.c 146 FT_Int X1, X2;
179 /* get X1 and X2, minimum and maximum in original coordinates */
184 X1 = X2 = points[0].fx;
190 if ( X < X1 )
191 X1 = X;
196 X1 = X2 = segments[0].pos;
202 if ( X < X1 )
203 X1 = X;
209 if ( X1 >= X2 )
212 warper->x1 = FT_MulFix( X1, org_scale ) + org_delta
    [all...]
  /external/skia/src/core/
SkCordic.cpp 27 0xA, 0x5, 0x2, 0x1 };
39 int32_t x1 = y >> t; local
43 x -= x1;
47 x += x1;
93 int32_t x1 = y >> t; local
97 x -= x1;
101 x += x1;
151 0xA, 0x5, 0x2, 0x1 };
164 int32_t x1 = y >> t; local
172 x += x1;
    [all...]
SkBitmapProcState_sample.h 93 SRCTYPE x1 = srcAddr[UNPACK_SECONDARY_SHORT(xx0)]; local
98 *colors++ = RETURNDST(x1);
142 uint32_t XX = *xy++; // x0:14 | 4 | x1:14
144 unsigned x1 = XX & 0x3FFF; local
150 SRC_TO_FILTER(row0[x1]),
152 SRC_TO_FILTER(row1[x1]),
184 unsigned x1 = data & 0x3FFF; local
193 SRC_TO_FILTER(row0[x1]),
195 SRC_TO_FILTER(row1[x1]),
SkScan_Antihair.cpp 223 static void do_anti_hairline(SkFDot6 x0, SkFDot6 y0, SkFDot6 x1, SkFDot6 y1,
229 if (SkAbs32(x1 - x0) > SkIntToFDot6(511) || SkAbs32(y1 - y0) > SkIntToFDot6(511))
231 /* instead of (x0 + x1) >> 1, we shift each separately. This is less
237 int hx = (x0 >> 1) + (x1 >> 1);
240 do_anti_hairline(hx, hy, x1, y1, clip, blitter);
249 if (SkAbs32(x1 - x0) > SkAbs32(y1 - y0)) // mostly horizontal
251 if (x0 > x1) { // we want to go left-to-right
252 SkTSwap<SkFDot6>(x0, x1);
257 istop = SkFDot6Ceil(x1);
263 slope = fastfixdiv(y1 - y0, x1 - x0)
    [all...]
  /external/opencore/oscl/oscl/osclio/src/
oscl_file_dir_utils.h 57 OSCL_FILEMGMT_PERMS_READ = 0x1,
64 OSCL_FILEMGMT_MODE_DIR = 0x1
  /external/qemu/android/skin/
rect.h 60 int x1, y1; member in struct:__anon4156
64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
  /external/qemu/slirp/
misc.h 35 #define EMU_CTL 0x1
47 #define EMU_TALK 0x1
  /external/qemu/slirp-android/
misc.h 35 #define EMU_CTL 0x1
47 #define EMU_TALK 0x1
  /external/skia/src/animator/
SkPathParts.cpp 123 SK_MEMBER(x1, Float),
133 SkQuadTo::SkQuadTo() : x1(0), y1(0), x2(0), y2(0) {
137 fPath->fPath.quadTo(x1, y1, x2, y2);
154 fPath->fPath.rQuadTo(x1, y1, x2, y2);
163 SK_MEMBER(x1, Float),
175 SkCubicTo::SkCubicTo() : x1(0), y1(0), x2(0), y2(0), x3(0), y3(0) {
179 fPath->fPath.cubicTo(x1, y1, x2, y2, x3, y3);
196 fPath->fPath.rCubicTo(x1, y1, x2, y2, x3, y3);
  /external/webkit/WebCore/svg/
SVGPathElement.cpp 100 PassRefPtr<SVGPathSegCurvetoCubicAbs> SVGPathElement::createSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2)
102 return SVGPathSegCurvetoCubicAbs::create(x, y, x1, y1, x2, y2);
105 PassRefPtr<SVGPathSegCurvetoCubicRel> SVGPathElement::createSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2)
107 return SVGPathSegCurvetoCubicRel::create(x, y, x1, y1, x2, y2);
110 PassRefPtr<SVGPathSegCurvetoQuadraticAbs> SVGPathElement::createSVGPathSegCurvetoQuadraticAbs(float x, float y, float x1, float y1)
112 return SVGPathSegCurvetoQuadraticAbs::create(x, y, x1, y1);
115 PassRefPtr<SVGPathSegCurvetoQuadraticRel> SVGPathElement::createSVGPathSegCurvetoQuadraticRel(float x, float y, float x1, float y1)
117 return SVGPathSegCurvetoQuadraticRel::create(x, y, x1, y1);
SVGPathElement.idl 57 in float x1,
63 in float x1,
70 in float x1,
74 in float x1,
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/inc/
OMX_G729Dec_Utils.h 57 #define G729DEC_MAJOR_VER 0x1
64 #define G729DEC_MINOR_VER 0x1
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
admCtrlWpa.h 66 #define WPA_OUI_MAX_VERSION 0x1
67 #define WPA_OUI_DEF_TYPE 0x1
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/BusAccess/Shm_Common/
shmFwCtrl.h 99 #define SHMFWCTRL_PLL_BB_REG_5_VAL 0x1
111 #define SHMFWCTRL_ELP_CMD_VAL 0x1
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/inc/
admCtrlWpa.h 67 #define WPA_OUI_MAX_VERSION 0x1
68 #define WPA_OUI_DEF_TYPE 0x1
admCtrlWpa2.h 113 #define WPA2_OUI_MAX_VERSION 0x1
114 #define WPA2_OUI_DEF_TYPE 0x1
  /system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
admCtrlWpa.h 66 #define WPA_OUI_MAX_VERSION 0x1
67 #define WPA_OUI_DEF_TYPE 0x1
  /external/skia/src/utils/
SkCullPoints.cpp 35 bool SkCullPoints::sect_test(int x0, int y0, int x1, int y1) const
39 if (x0 < r.fLeft && x1 < r.fLeft ||
40 x0 > r.fRight && x1 > r.fRight ||
46 if (r.contains(x0, y0) || r.contains(x1, y1))
53 vec.set(x1 - x0, y1 - y0);
  /external/tcpdump/
print-atm.c 53 { 0x1, "Fault Management" },
62 { 0x1, "RDI" },
70 { 0x1, "Backward Reporting" },
77 { 0x1, "Continuity Check" },
317 clp = cell_header&0x1;

Completed in 743 milliseconds

1 2 3 4 5 67 8 91011>>