HomeSort by relevance Sort by last modified time
    Searched refs:x2 (Results 451 - 475 of 2906) sorted by null

<<11121314151617181920>>

  /external/qemu/slirp-android/
misc.h 36 #define EMU_FTP 0x2
48 #define EMU_NTALK 0x2
  /external/skia/src/animator/
SkPathParts.cpp 116 SK_MEMBER(x2, Float),
125 SkQuadTo::SkQuadTo() : x1(0), y1(0), x2(0), y2(0) {
129 fPath->fPath.quadTo(x1, y1, x2, y2);
146 fPath->fPath.rQuadTo(x1, y1, x2, y2);
156 SK_MEMBER(x2, Float),
167 SkCubicTo::SkCubicTo() : x1(0), y1(0), x2(0), y2(0), x3(0), y3(0) {
171 fPath->fPath.cubicTo(x1, y1, x2, y2, x3, y3);
188 fPath->fPath.rCubicTo(x1, y1, x2, y2, x3, y3);
  /frameworks/av/media/libeffects/testlibs/
AudioBiquadFilter.cpp 153 audio_sample_t x2 = mDelays[0][1]; local
166 acc = mac_coef_sample(b2, x2, acc);
172 x2 = x1;
177 mDelays[0][1] = x2;
211 audio_sample_t x2 = mDelays[ch][1]; local
219 acc = mac_coef_sample(b2, x2, acc);
225 x2 = x1;
232 mDelays[ch][1] = x2;
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
grain.fs 45 uint32_t x2 = (x+1) & gWMask;
51 uint p02 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y1);
54 uint p12 = 114 * rsGetElementAt_uchar(gBlendSource, x2, y);
57 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
grain.fs 45 uint32_t x2 = (x+1) & gWMask;
51 uint p02 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y1);
54 uint p12 = 114 * rsGetElementAt_uchar(gBlendSource, x2, y);
57 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
grain.fs 45 uint32_t x2 = (x+1) & gWMask;
51 uint p02 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y1);
54 uint p12 = 114 * rsGetElementAt_uchar(gBlendSource, x2, y);
57 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
  /hardware/ti/omap3/dspbridge/inc/
_dbdebug.h 45 #define DSPAPI_ZONE_PROC 0x2
72 #define DSPAPI_ZONE_ID_PROC 0x2
  /hardware/ti/omap3/dspbridge/libbridge/inc/
_dbdebug.h 45 #define DSPAPI_ZONE_PROC 0x2
72 #define DSPAPI_ZONE_ID_PROC 0x2
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
atexit.py 57 def x2(n): function in function:register
58 print "running x2(%r)" % (n,)
63 register(x2, 12)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
atexit.py 57 def x2(n): function in function:register
58 print "running x2(%r)" % (n,)
63 register(x2, 12)
  /external/chromium_org/third_party/skia/src/core/
SkEdge.cpp 179 SkFDot6 x0, y0, x1, y1, x2, y2; local
188 x2 = int(pts[2].fX * scale);
196 x2 = pts[2].fX >> shift;
204 SkTSwap(x0, x2);
219 SkFDot6 dx = ((x1 << 1) - x0 - x2) >> 2;
255 SkFixed A = SkFDot6ToFixedDiv2(x0 - x1 - x1 + x2); // 1/2 the real value
269 fQLastX = SkFDot6ToFixed(x2);
339 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
348 x2 = int(pts[2].fX * scale);
358 x2 = pts[2].fX >> shift
    [all...]
  /external/skia/src/core/
SkEdge.cpp 179 SkFDot6 x0, y0, x1, y1, x2, y2; local
188 x2 = int(pts[2].fX * scale);
196 x2 = pts[2].fX >> shift;
204 SkTSwap(x0, x2);
219 SkFDot6 dx = ((x1 << 1) - x0 - x2) >> 2;
255 SkFixed A = SkFDot6ToFixedDiv2(x0 - x1 - x1 + x2); // 1/2 the real value
269 fQLastX = SkFDot6ToFixed(x2);
339 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
348 x2 = int(pts[2].fX * scale);
358 x2 = pts[2].fX >> shift
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_info_util.cc 82 int x2 = x1 + length; local
92 canvas.DrawLine(gfx::Point(x1, y2 - 1), gfx::Point(x2, y2 - 1),
95 canvas.DrawLine(gfx::Point(x1, y1), gfx::Point(x2, y1), shadow_color);
99 canvas.DrawLine(gfx::Point(x2 - 1, y1 + 1), gfx::Point(x2 - 1, y2 - 1),
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
TimingFunction.h 100 static PassRefPtr<CubicBezierTimingFunction> create(double x1, double y1, double x2, double y2)
102 return adoptRef(new CubicBezierTimingFunction(Custom, x1, y1, x2, y2));
155 double x2() const { return m_x2; } function in class:WebCore::CubicBezierTimingFunction
161 explicit CubicBezierTimingFunction(TimingFunctionPreset preset, double x1, double y1, double x2, double y2)
165 , m_x2(x2)
  /external/clang/test/CodeGen/
aarch64-arguments.c 147 // PCS: @f36(i32 %x0, i32 %x1, i32 %x2, i32 %x3, i32 %x4, i32 %x5, i32 %x6, [1 x i64], %struct.s36* byval align 8 %stacked)
149 void f36(int x0, int x1, int x2, int x3, int x4, int x5, int x6, struct s36 stacked) {}
152 // PCS: @f37(i32 %x0, i32 %x1, i32 %x2, i32 %x3, i32 %x4, i32 %x5, i32 %x6, [1 x i64], %struct.s37* byval align 8 %stacked, %struct.s37* byval align 8 %stacked2)
154 void f37(int x0, int x1, int x2, int x3, int x4, int x5, int x6, struct s37 stacked, struct s37 stacked2) {}
169 // PCS: @f39(float %s0, i32 %x0, float %s1, i32* %x1, float %s2, i32 %x2, float %s3, float %s4, i32 %x3, [3 x float], %struct.s39_float* byval align 4 %stacked, i32 %x4, i32 %x5, i32 %x6, [1 x i64], %struct.s39_int* byval align 8 %stacked2)
170 void f39(float s0, int x0, float s1, int *x1, float s2, enum s39_enum x2, float s3, float s4,
180 // PCS: @f41(i32 %x0, i32 %x1, i32 %x2, i32 %x3, i32 %x4, i32 %x5, i32 %x6, [1 x i64], i128* byval align 16, %struct.s41* %stacked2)
181 int f41(int x0, int x1, int x2, int x3, int x4, int x5, int x6, __int128 stacked, struct s41 stacked2) {}
186 // PCS: @f42(i32 %x0, i32 %x1, i32 %x2, i32 %x3, i32 %x4, i128 %x6_7, i128* byval align 16)
187 void f42(int x0, int x1, int x2, int x3, int x4, __int128 x6_7, __int128 stacked) {
    [all...]
  /external/pixman/pixman/
pixman.c 173 if (rbox->x2 > (v = cbox->x2 + dx))
174 rbox->x2 = v;
179 if (rbox->x1 >= rbox->x2 || rbox->y1 >= rbox->y2)
242 region->extents.x2 = dest_x + width;
248 region->extents.x2 = MIN (region->extents.x2, dest_image->bits.width);
254 if (region->extents.x1 >= region->extents.x2 ||
258 region->extents.x2 = 0;
332 pixman_fixed_48_16_t x2; member in struct:__anon26203
342 pixman_fixed_t x1, y1, x2, y2; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/wscons/
SDL_wsconsvideo.c 477 int x1, y1, x2, y2; local
487 x2 = x1 + rects[i].w;
495 if (x2 < 0) {
496 x2 = 0;
497 } else if (x2 > width) {
498 x2 = width;
510 if (x2 <= x1 || y2 <= y1) {
518 scr_x2 = x2;
525 scr_y1 = width - x2;
528 sha_x1 = x2 - 1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridLayoutPainter.java 67 gc.drawLine(b.x, y, b.x2(), y);
94 int x2 = b.x2() - MARGIN_SIZE; local
95 for (int x = x1; x < x2; x += GRID_SIZE) {
202 gc.drawLine(b.x, y1, b.x2(), y1);
203 gc.drawLine(b.x, y2, b.x2(), y2);
210 gc.drawLine(b.x, y, b.x2(), y );
217 int x2; local
220 x2 = columnMatch.matchedLine - columnMatch.margin;
224 x2 = columnMatch.matchedLine + columnMatch.margin
    [all...]
  /external/ceres-solver/internal/ceres/
partitioned_matrix_view_test.cc 87 Vector x2(m.num_cols());
88 x2.setZero();
91 x1(i) = x2(i) = RandDouble();
98 A_->RightMultiply(x2.data(), y2.data());
112 Vector x2 = Vector::Zero(m.num_cols()); local
116 x2(i + m.num_cols_e()) = x1(i);
123 A_->RightMultiply(x2.data(), y2.data());
trust_region_minimizer_test.cc 92 const double x2 = state[1]; local
98 << "x2=" << x2 << ", "
102 const double f1 = x1 + 10.0 * x2;
104 const double f3 = pow(x2 - 2.0 * x3, 2.0);
144 2.0*(x2 - 2.0*x3)*(1.0 - 2.0*x3),
152 2.0*(x2 - 2.0*x3)*(x2 - 2.0),
173 gradient[column_index++] = f1 * 10.0 + f3 * 2.0 * (x2 - 2.0 * x3);
178 f2 * sqrt(5.0) + f3 * (2.0 * 2.0 * (2.0 * x3 - x2));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RectangleShape.cpp 117 float x2 = bounds.maxX(); local
124 x2 = bounds.maxX() - bounds.rx() + xi;
129 x2 = bounds.maxX() - bounds.rx() + xi;
133 result.append(LineSegment(x1, x2));
149 float x2 = bounds.maxX(); local
174 x2 = bounds.maxX() - bounds.rx() + xi;
178 result.append(LineSegment(x1, x2));
  /external/grub/netboot/
3c509.h 90 #define EEPROM_NODE_ADDR_2 0x2 /* Word */
211 #define START_TRANSCEIVER (unsigned short) (0x2<<11) /* Read ADDR_CFG reg to
230 #define FIL_GROUP (unsigned short) (0x2)
245 #define C_CARD_FAILURE (unsigned short) (ACK_INTR|0x2)
272 #define S_CARD_FAILURE (unsigned short) (0x2)
307 #define ERR_RX_DRIBBLE (unsigned short) (0x2<<11)
376 #define BNC 0x2
  /external/jmonkeyengine/engine/src/android/jme3tools/android/
Fixed.java 315 public static int hyp(int x1, int y1, int x2, int y2) {
316 if ((x2 -= x1) < 0) {
317 x2 = -x2;
322 return x2 + y2 - (((x2 > y2) ? y2 : x2) >> 1);
  /external/srtp/tables/
aes_tables.c 94 uint32_t x1, x2, x3; local
103 x2 = gf2_8_shift(x1);
104 x3 = x2 ^ x1;
106 tmp.v8[0] = x2;
113 tmp.v8[1] = x2;
120 tmp.v8[2] = x2;
127 tmp.v8[3] = x2;
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-gap.js 75 function two_cycles(n, v1, v2, v3, v4, v5, x1, x2, x3, x4, x5) {
84 x1 = x2;
85 x2 = x3;
93 function two_cycles_while(n, v1, v2, v3, v4, v5, x1, x2, x3, x4, x5) {
103 x1 = x2;
104 x2 = x3;

Completed in 642 milliseconds

<<11121314151617181920>>