HomeSort by relevance Sort by last modified time
    Searched defs:xm (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/skia/gm/
xfermodes2.cpp 45 SkXfermode* xm = SkXfermode::Create(mode); variable
46 SkAutoUnref aur(xm);
63 p.setXfermode(xm);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
MullerSolver.java 266 double xm = 0.5 * (x0 + x2); local
267 double ym = f.value(xm);
269 x2 = xm; y2 = ym;
271 x0 = xm; y0 = ym;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
AbstractIntegerDistribution.java 176 int xm = x0 + (x1 - x0) / 2; local
177 pm = checkedCumulativeProbability(xm);
180 if (xm == x1) {
186 x1 = xm;
190 if (xm == x0) {
196 x0 = xm;
  /external/libedit/src/
keymacro.c 323 keymacro_node_t *xm; local
325 for (xm = ptr; xm->sibling != NULL; xm = xm->sibling)
326 if (xm->sibling->ch == *str)
328 if (xm->sibling == NULL)
329 xm->sibling = node__get(*str); /* setup new node */
330 ptr = xm->sibling;
389 keymacro_node_t *xm; local
    [all...]
  /external/speex/libspeex/
lsp.c 228 spx_word16_t temp_xr,xl,xr,xm=0; local
349 If there is no sign change between poly(xm) and poly(xl) set interval
350 between xm and xr else set interval between xl and xr and repeat till
360 xm = ADD16(PSHR16(xl,1),PSHR16(xr,1)); /* bisect the interval */
362 xm = .5*(xl+xr); /* bisect the interval */
364 psumm=cheb_poly_eva(pt,xm,m,stack);
369 xl=xm;
372 xr=xm;
377 freq[j] = X2ANGLE(xm);
378 xl = xm;
    [all...]
  /external/libyuv/files/util/
ssim.cc 75 static double FinalizeSSIM(double iw, double xm, double ym,
77 const double iwx = xm * iw;
103 uint32 ws = 0, xm = 0, ym = 0, xxm = 0, xym = 0, yym = 0; local
117 xm += Wxy * org_x;
125 return FinalizeSSIM(1. / ws, xm, ym, xxm, xym, yym);
131 uint32 xm = 0, ym = 0, xxm = 0, xym = 0, yym = 0; local
164 xm += Wxy * (ul1 + ur1 + ll1 + lr1);
192 xm += Wxy * (u1 + d1 + l1 + r1);
204 xm += Wxy * s1;
256 ADD_AND_STORE_FOUR_EPI32(x, xm);
    [all...]
  /frameworks/base/libs/hwui/utils/
VectorDrawableUtils.cpp 196 double xm = (x0p + x1p) / 2; local
218 cx = xm - sdy;
221 cx = xm + sdy;
  /development/perftests/panorama/feature_stab/db_vlvm/
db_feature_matching.cpp 2929 int x_l,y_l,x_r,y_r,xm,ym; local
2967 int xm,ym; local
    [all...]
  /libcore/ojluni/src/main/java/sun/util/calendar/
BaseCalendar.java 278 long xm = 1L - month; local
279 year -= (int)((xm / 12) + 1);
280 month = 13 - (xm % 12);
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_feature_matching.cpp 2929 int x_l,y_l,x_r,y_r,xm,ym; local
2967 int xm,ym; local
    [all...]
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 383 const int xm = x + ((0x1c >> a) & 1); local
385 const float m = (float)(cos(xm * 2) * sin(ym * 4) * 0.75f);
387 FIXED(xm * scale + m);
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
demo.c 521 const int xm = x + ((0x1c >> a) & 1); local
523 const float m = (float)(cos(xm * 2) * sin(ym * 4) * 0.75f);
524 result->vertexArray[currentVertex * 2] = xm * scale + m;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.c 101 double xm = (x0 + x1)/2; local
120 *cx0 = xm + sdy;
122 *cx1 = xm - sdy;
  /external/opencv3/modules/imgproc/src/
moments.cpp 513 double xm = x * mom[0], ym = y * mom[0]; local
521 m.m10 += mom[1] + xm;
527 m.m20 += mom[3] + x * (mom[1] * 2 + xm);
536 m.m30 += mom[6] + x * (3. * mom[3] + x * (3. * mom[1] + xm));
542 m.m12 += mom[8] + y * (2 * (mom[4] + x * mom[2]) + y * (mom[1] + xm)) + x * mom[5];
688 double xm = x * mom[0], ym = y * mom[0]; local
696 m.m10 += mom[1] + xm;
702 m.m20 += mom[3] + x * (mom[1] * 2 + xm);
711 m.m30 += mom[6] + x * (3. * mom[3] + x * (3. * mom[1] + xm));
717 m.m12 += mom[8] + y * (2 * (mom[4] + x * mom[2]) + y * (mom[1] + xm)) + x * mom[5]
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
PathParser_Delegate.java 717 double xm = (x0p + x1p) / 2; local
739 cx = xm - sdy;
742 cx = xm + sdy;
    [all...]
  /frameworks/native/opengl/tests/angeles/
demo.c 383 const int xm = x + ((0x1c >> a) & 1); local
385 const float m = (float)(cos(xm * 2) * sin(ym * 4) * 0.75f);
387 FIXED(xm * scale + m);
  /frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
PathParser.java 618 double xm = (x0p + x1p) / 2; local
640 cx = xm - sdy;
643 cx = xm + sdy;
  /external/opencv3/3rdparty/libwebp/enc/
vp8enci.h 530 double w, xm, ym, xxm, xym, yym; member in struct:__anon20466
  /external/svox/pico/lib/
picocep.c 196 picoos_int32 xi[5], x1[2], x2[3], xm[3], xn[2]; member in struct:cep_subobj
834 cep->xm[0] = 1;
835 cep->xm[1] = 2;
836 cep->xm[2] = -4;
    [all...]
  /external/webp/src/enc/
vp8enci.h 483 double w, xm, ym, xxm, xym, yym; member in struct:__anon26167
  /prebuilts/sdk/current/support/graphics/drawable/libs/
android-support-vectordrawable.jar 
  /prebuilts/devtools/tools/lib/
asset-studio.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/2.0.3/
findbugs-2.0.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/3.0.0/
findbugs-3.0.0.jar 

Completed in 686 milliseconds

1 2 3