HomeSort by relevance Sort by last modified time
    Searched refs:xy (Results 1 - 25 of 477) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
chain-ext_vector.c 10 return f4.xy; // expected-error{{float2}}
ext_vector.c 9 return f4.xy; // expected-error{{float2}}
  /frameworks/base/test-runner/src/android/test/
ViewAsserts.java 45 int[] xy = new int[2]; local
46 view.getLocationOnScreen(xy);
51 int y = xy[1] - xyRoot[1];
67 int[] xy = new int[2]; local
68 view.getLocationOnScreen(xy);
73 int y = xy[1] - xyRoot[1];
87 int[] xy = new int[2]; local
88 view.getLocationOnScreen(xy);
93 int y = xy[1] - xyRoot[1];
107 int[] xy = new int[2] local
125 int[] xy = new int[2]; local
143 int[] xy = new int[2]; local
162 int[] xy = new int[2]; local
180 int[] xy = new int[2]; local
199 int[] xy = new int[2]; local
217 int[] xy = new int[2]; local
236 int[] xy = new int[2]; local
254 int[] xy = new int[2]; local
273 int[] xy = new int[2]; local
291 int[] xy = new int[2]; local
312 int[] xy = new int[2]; local
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
BoundaryMode.java 17 package com.androidplot.xy;
XYAxisType.java 17 package com.androidplot.xy;
XYFramingModel.java 17 package com.androidplot.xy;
XYStepMode.java 17 package com.androidplot.xy;
FillDirection.java 17 package com.androidplot.xy;
PointLabeler.java 17 package com.androidplot.xy;
XYGraphBounds.java 17 package com.androidplot.xy;
AxisValueLabelFormatter.java 17 package com.androidplot.xy;
  /external/skia/src/opts/
SkBitmapProcState_opts_SSE2.h 14 const uint32_t* xy,
17 const uint32_t* xy,
19 void ClampX_ClampY_filter_scale_SSE2(const SkBitmapProcState& s, uint32_t xy[],
22 uint32_t xy[], int count, int x, int y);
24 uint32_t xy[], int count, int x, int y);
26 uint32_t xy[], int count, int x, int y);
SkBitmapProcState_opts_SSSE3.h 14 const uint32_t* xy,
17 const uint32_t* xy,
20 const uint32_t* xy,
23 const uint32_t* xy,
  /external/skia/src/sksl/
SkSLCPP.h 21 inline SkPoint vec2(float xy) { return SkPoint::Make(xy, xy); }
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmaf.c 45 double xy, result; local
48 xy = (double)x * y;
49 result = xy + z;
54 result - xy == z || /* exact */
63 volatile double vxy = xy; /* XXX work around gcc CSE bug */
  /external/skia/src/pathops/
SkPathOpsLine.h 24 double exactPoint(const SkDPoint& xy) const;
25 static double ExactPointH(const SkDPoint& xy, double left, double right, double y);
26 static double ExactPointV(const SkDPoint& xy, double top, double bottom, double x);
28 double nearPoint(const SkDPoint& xy, bool* unequal) const;
29 bool nearRay(const SkDPoint& xy) const;
30 static double NearPointH(const SkDPoint& xy, double left, double right, double y);
31 static double NearPointV(const SkDPoint& xy, double top, double bottom, double x);
SkPathOpsLine.cpp 21 double SkDLine::exactPoint(const SkDPoint& xy) const {
22 if (xy == fPts[0]) { // do cheapest test first
25 if (xy == fPts[1]) {
31 double SkDLine::nearPoint(const SkDPoint& xy, bool* unequal) const {
32 if (!AlmostBetweenUlps(fPts[0].fX, xy.fX, fPts[1].fX)
33 || !AlmostBetweenUlps(fPts[0].fY, xy.fY, fPts[1].fY)) {
39 SkDVector ab0 = xy - fPts[0];
49 double dist = realPt.distance(xy); // OPTIMIZATION: can we compare against distSq instead ?
65 bool SkDLine::nearRay(const SkDPoint& xy) const {
69 SkDVector ab0 = xy - fPts[0]
    [all...]
  /external/syslinux/com32/lib/sys/
ansi.c 42 .xy = {0, 0},
76 struct curxy xy = st->xy; local
89 if (xy.x > 0)
90 xy.x--;
94 int nsp = 8 - (xy.x & 7);
102 xy.y++;
104 xy.x = 0;
107 xy.x = 0;
127 op->write_char(xy.x, xy.y, ch, st)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
g_pitch.c 37 Word16 xy, yy, exp_xy, exp_yy, gain; local
41 xy = extract_h(Dot_product12_asm(xn, y1, L_subfr, &exp_xy));
46 xy = extract_h(Dot_product12(xn, y1, L_subfr, &exp_xy));
53 g_coeff[2] = xy;
56 /* If (xy < 0) gain = 0 */
57 if (xy < 0)
60 /* compute gain = xy/yy */
62 xy >>= 1; /* Be sure xy < yy */
63 gain = div_s(xy, yy)
    [all...]
  /external/eigen/doc/snippets/
LLT_solve.cpp 6 Matrix<float,2,1> xy variable
8 cout << xy << endl;
  /prebuilts/go/darwin-x86/test/
func8.go 22 var xy string var
26 xy += "x"
32 xy += "y"
44 if xy != "xy" {
  /prebuilts/go/linux-x86/test/
func8.go 22 var xy string var
26 xy += "x"
32 xy += "y"
44 if xy != "xy" {
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
TouchUtils.java 33 int[] xy = new int[2]; local
34 v.getLocationOnScreen(xy);
39 final float x = xy[0] + (viewWidth / 2.0f);
40 float y = xy[1] + (viewHeight / 2.0f);
64 int[] xy = new int[2]; local
65 v.getLocationOnScreen(xy);
70 final float x = xy[0] + (viewWidth / 2.0f);
71 float y = xy[1] + (viewHeight / 2.0f);
91 int[] xy = new int[2]; local
92 v.getLocationOnScreen(xy);
128 int[] xy = new int[2]; local
169 int[] xy = new int[2]; local
217 int[] xy = new int[2]; local
234 int[] xy = new int[2]; local
249 int[] xy = new int[2]; local
    [all...]
  /external/dng_sdk/source/
dng_temperature.h 58 dng_temperature (const dng_xy_coord &xy)
64 Set_xy_coord (xy);
87 void Set_xy_coord (const dng_xy_coord &xy);
  /external/skia/src/core/
SkBitmapProcState_matrix_template.h 15 void NoFilterProc_Scale(const SkBitmapProcState& s, uint32_t xy[],
27 *xy++ = TileProc::Y(s, mapper.fixedY(), maxY);
33 memset(xy, 0, count * sizeof(uint16_t));
44 decal_nofilter_scale(xy, fixedFx, fixedDx, count);
55 *xy++ = (a << 16) | b;
57 *xy++ = (b << 16) | a;
62 *xy++ = (a << 16) | b;
64 *xy++ = (b << 16) | a;
67 uint16_t* xx = (uint16_t*)xy;
78 void NoFilterProc_Affine(const SkBitmapProcState& s, uint32_t xy[],
    [all...]

Completed in 508 milliseconds

1 2 3 4 5 6 7 8 91011>>