HomeSort by relevance Sort by last modified time
    Searched refs:y2 (Results 76 - 100 of 888) sorted by null

1 2 34 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionHandles.java 93 int y2 = y1 + h; local
100 y2 -= insets.bottom;
104 int my = (y1 + y2) / 2;
112 mHandles.add(new SelectionHandle(x1, y2, Position.BOTTOM_LEFT));
121 mHandles.add(new SelectionHandle(x2, y2, Position.BOTTOM_RIGHT));
128 mHandles.add(new SelectionHandle(mx, y2, Position.BOTTOM_MIDDLE));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
MullerSolver.java 208 double y2 = f.value(x2); local
216 if (y2 == 0.0) {
228 final double d12 = (y2 - y1) / (x2 - x1);
262 y2 = x > x1 ? y2 : y1;
269 x2 = xm; y2 = ym;
353 double y2 = f.value(x2); local
364 final double a = q * (y2 - (1 + q) * y1 + q * y0);
365 final double b = (2 * q + 1) * y2 - (1 + q) * (1 + q) * y1 + q * q * y0;
366 final double c = (1 + q) * y2;
    [all...]
BrentSolver.java 298 * @param y2 function value at the bracket point.
306 double x2, double y2)
314 if (FastMath.abs(y2) < FastMath.abs(y1)) {
320 y1 = y2;
321 y2 = y0;
355 double r1 = y0 / y2;
356 double r2 = y1 / y2;
389 if ((y1 > 0) == (y2 > 0)) {
391 y2 = y0;
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
copy.pass.cpp 77 int y2 = 500; local
79 T t2(x2, std::move(y2));
83 assert(std::get<1>(t) == y2);
  /external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
assign_pair.pass.cpp 67 int y2 = 300; local
69 P p2(x2, std::move(y2));
72 assert(p1.second == y2);
assign_rv_pair.pass.cpp 64 int y2 = 300; local
66 P p2(x2, std::move(y2));
69 assert(p1.second == y2);
  /external/speex/libspeex/
ltp_arm4.h 101 spx_word32_t y0, y1, y2, y3; local
104 y2=*y++;
173 : "+r" (y0), "+r" (y1), "+r" (y2), "+r" (y3),
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_code.cpp 103 y2[] = filtered innovation vector
144 Word16 y2[] // in : filtered innovation vector
160 scal_y2[i] = shr (y2[i], 1);
231 Word16 y2[], /* i : filtered innovation vector */
240 Word16 *p_y2 = y2;
282 p_y2 = y2;
  /device/google/dragon/audio/hal/dsp/
crossover.c 21 lr4->y2 = 0;
39 float ly2 = lp->y2;
51 float hy2 = hp->y2;
88 lp->y2 = ly2;
95 hp->y2 = hy2;
112 float ly2 = lp->y2;
124 float hy2 = hp->y2;
160 lp->y2 = ly2;
167 hp->y2 = hy2;
  /external/clang/test/CXX/stmt.stmt/stmt.dcl/
p3-0x.cpp 39 Y y2; // expected-note{{jump bypasses variable with a non-trivial destructor}} local
  /external/clang/test/CodeGen/
mcu-struct-return.c 56 struct S2 y2 = bar2(); local
63 // CHECK: [[Y2:%.+]] = alloca [[STRUCT2_TYPE]]
  /external/clang/test/CodeGenCXX/
constructor-init.cpp 237 pair2 y2(x2);
238 pair2 y2m(static_cast<pair2&&>(y2));
240 y2 = x2;
241 y2m = static_cast<pair2&&>(y2);
  /external/clang/test/SemaCXX/
align_value.cpp 25 nope<long double, 4> y2; variable
default-constructor-initializers.cpp 29 struct Y2 : Y1 {
30 Y2(int);
31 Y2();
34 struct Y3 : public Y2 {
39 Y2 y2; member in struct:Y4
warn-literal-conversion.cpp 10 int y2 = (((1.2222F))); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}} local
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
q_gain2.c 66 Word16 y2[], /* (i) Q9 : Filtered innovative vector. */
132 * coeff[2] = y2 y2 *
133 * coeff[3] = -2 xn y2 *
134 * coeff[4] = 2 y1 y2 *
145 /* Compute scalar product <y2[],y2[]> */
147 coeff[2] = extract_h(Dot_product12_asm(y2, y2, L_subfr, &exp));
149 coeff[2] = extract_h(Dot_product12(y2, y2, L_subfr, &exp))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xprotostr.h 55 INT16 x1 B16, y1 B16, x2 B16, y2 B16;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xprotostr.h 55 INT16 x1 B16, y1 B16, x2 B16, y2 B16;
  /external/python/cpython2/Demo/tkinter/guido/
ss1.py 49 def multicellvalue(self, x1, y1, x2, y2):
52 if y1 > y2:
53 y1, y2 = y2, y1
55 for y in range(y1, y2+1):
74 def clearcells(self, x1, y1, x2, y2):
75 for xy in self.selectcells(x1, y1, x2, y2):
78 def clearrows(self, y1, y2):
79 self.clearcells(0, y1, sys.maxint, y2)
84 def selectcells(self, x1, y1, x2, y2)
    [all...]
  /external/libvncserver/libvncserver/
selbox.c 12 int x1,y1,x2,y2,textH,pageH; member in struct:__anon24467
57 int y1 = m->y1+line*m->textH, y2 = y1+m->textH; local
58 if(y2>m->y2)
59 y2=m->y2;
60 rfbFillRect(m->screen,m->x1,y1,m->x2,y2,invert?m->colour:m->backColour);
62 rfbDrawStringWithClip(m->screen,m->font,m->x1+m->xhot,y2-1+m->yhot,
64 m->x1,y1,m->x2,y2,
103 m->x1,m->y1+lineEnd*m->textH,m->x2,m->y2,
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_comp.cpp 1126 ULong x1, x2, x1m, x2m, y1, y2, y1m, y2m; \/* new way *\/ local
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/sha256/
sha256block_amd64.s 175 #define XTMP2 Y2
209 #define y2 R15 define
233 MOVL f, y2; \ // y2 = f // CH
237 XORL g, y2; \ // y2 = f^g // CH
241 ANDL e, y2; \ // y2 = (f^g)&e // CH
251 XORL g, y2; \ // y2 = CH = ((f^g)&e)^g // C
    [all...]
  /prebuilts/go/linux-x86/src/crypto/sha256/
sha256block_amd64.s 175 #define XTMP2 Y2
209 #define y2 R15 define
233 MOVL f, y2; \ // y2 = f // CH
237 XORL g, y2; \ // y2 = f^g // CH
241 ANDL e, y2; \ // y2 = (f^g)&e // CH
251 XORL g, y2; \ // y2 = CH = ((f^g)&e)^g // C
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicHistogram.java 75 int x1 = 0, y1 = 0, x2 = w, y2 = h; local
80 y2 = h - 11;
83 for (int y = y1; y < y2; y++) {
103 hist.forEach(mAin, makeClipper(x1, y1, x2, y2));
203 int x1 = 0, y1 = 0, x2 = w, y2 = h; local
208 y2 = h - 11;
211 for (int y = y1; y < y2; y++) {
230 hist.forEach_Dot(mAin, makeClipper(x1, y1, x2, y2));
  /external/freetype/src/base/
ftbbox.c 139 /* y2 :: The coordinate of the control point. */
150 FT_Pos y2,
157 /* within the segment, equal to (y1*y3 - y2*y2)/(y1 - 2*y2 + y3). */
158 /* Or, offsetting from y2, we get */
160 y1 -= y2;
161 y3 -= y2;
162 y2 += FT_MulDiv( y1, y3, y1 + y3 );
164 if ( y2 < *min
    [all...]

Completed in 682 milliseconds

1 2 34 5 6 7 8 91011>>