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

1 2 3

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ctanh.c 78 double t, beta, s, rho, denom; local
133 denom = 1 + beta * s * s;
134 return (cpack((beta * rho * s) / denom, t / denom));
s_ctanhf.c 43 float t, beta, s, rho, denom; local
73 denom = 1 + beta * s * s;
74 return (cpackf((beta * rho * s) / denom, t / denom));
  /external/compiler-rt/lib/ppc/
divtc3.c 41 const long double denom = __gcc_qadd(__gcc_qmul(cDD.ld, cDD.ld), __gcc_qmul(dDD.ld, dDD.ld)); local
45 DD real = { .ld = __gcc_qdiv(realNumerator, denom) };
46 DD imag = { .ld = __gcc_qdiv(imagNumerator, denom) };
57 DD rDD = { .ld = denom };
  /frameworks/base/services/common_time/
common_clock.cpp 49 uint64_t denom = local_freq; local
51 LinearTransform::reduce(&numer, &denom);
52 if ((numer > UINT32_MAX) || (denom > UINT32_MAX)) {
61 static_cast<uint32_t>(denom);
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint.cpp 131 float denom = pxLength * dyLength - pyLength * dxLength; local
132 if (!denom)
135 float param = ((d1.x() - p1.x()) * dyLength - (d1.y() - p1.y()) * dxLength) / denom;
  /external/aac/libSBRenc/src/
ton_corr.cpp 240 FIXP_DBL tmp,num,denom; variable
247 denom = (fac>>1) + (fMultDiv2(fac,RELAXATION_FRACT)>>RELAXATION_SHIFT) - num;
248 denom = fixp_abs(denom);
255 denomShift = CountLeadingBits(denom);
256 denom = (FIXP_DBL)denom << denomShift;
258 if ((num > FL2FXCONST_DBL(0.0f)) && (denom != FL2FXCONST_DBL(0.0f))) {
262 tmp = schur_div(num,denom,16);
267 quotaMatrix[timeIndex][r] = schur_div(num,denom,16) >> commonShift
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_rgb9e5.h 108 double denom; local
119 denom = pow(2, exp_shared - RGB9E5_EXP_BIAS - RGB9E5_MANTISSA_BITS);
121 maxm = (int) floor(maxrgb / denom + 0.5);
123 denom *= 2;
130 rm = (int) floor(rc / denom + 0.5);
131 gm = (int) floor(gc / denom + 0.5);
132 bm = (int) floor(bc / denom + 0.5);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsLine.cpp 73 double denom = len.fX * len.fX + len.fY * len.fY; // see DLine intersectRay local
76 if (!between(0, numer, denom)) {
79 double t = numer / denom;
97 double denom = len.fX * len.fX + len.fY * len.fY; // see DLine intersectRay local
100 double t = numer / denom;
SkReduceOrder.cpp 225 double denom = SkTMax(fabs(cx), SkTMax(fabs(cy), local
227 if (denom == 0) {
232 double inv = 1 / denom;
SkDLineIntersection.cpp 19 double denom = byLen * axLen - ayLen * bxLen; local
20 SkASSERT(denom);
24 p.fX = (term1 * bxLen - axLen * term2) / denom;
25 p.fY = (term1 * byLen - ayLen * term2) / denom;
69 /* Slopes match when denom goes to zero:
73 byLen * axLen - ayLen * bxLen == 0 ( == denom )
75 double denom = bLen.fY * aLen.fX - aLen.fY * bLen.fX; local
79 numerA /= denom;
80 numerB /= denom;
82 if (!approximately_zero(denom)) {
144 double denom = axByLen - ayBxLen; local
    [all...]
  /external/chromium_org/ui/gfx/
quad_f.cc 78 double denom = dot00 * dot11 - dot01 * dot01; local
80 double v = (dot11 * dot20 - dot01 * dot21) / denom;
81 double w = (dot00 * dot21 - dot01 * dot20) / denom;
transform_util.cc 93 double denom = std::sqrt(1.0 - product * product); local
95 double w = std::sin(progress * theta) * (1.0 / denom);
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_rgb9e5.h 108 double denom; local
119 denom = pow(2, exp_shared - RGB9E5_EXP_BIAS - RGB9E5_MANTISSA_BITS);
121 maxm = (int) floor(maxrgb / denom + 0.5);
123 denom *= 2;
130 rm = (int) floor(rc / denom + 0.5);
131 gm = (int) floor(gc / denom + 0.5);
132 bm = (int) floor(bc / denom + 0.5);
  /external/skia/src/pathops/
SkPathOpsLine.cpp 73 double denom = len.fX * len.fX + len.fY * len.fY; // see DLine intersectRay local
76 if (!between(0, numer, denom)) {
79 double t = numer / denom;
97 double denom = len.fX * len.fX + len.fY * len.fY; // see DLine intersectRay local
100 double t = numer / denom;
SkReduceOrder.cpp 225 double denom = SkTMax(fabs(cx), SkTMax(fabs(cy), local
227 if (denom == 0) {
232 double inv = 1 / denom;
SkDLineIntersection.cpp 19 double denom = byLen * axLen - ayLen * bxLen; local
20 SkASSERT(denom);
24 p.fX = (term1 * bxLen - axLen * term2) / denom;
25 p.fY = (term1 * byLen - ayLen * term2) / denom;
69 /* Slopes match when denom goes to zero:
73 byLen * axLen - ayLen * bxLen == 0 ( == denom )
75 double denom = bLen.fY * aLen.fX - aLen.fY * bLen.fX; local
79 numerA /= denom;
80 numerB /= denom;
82 if (!approximately_zero(denom)) {
144 double denom = axByLen - ayBxLen; local
    [all...]
  /external/skia/tests/
Sk64Test.cpp 158 int32_t denom = rand.nextS(); local
160 while (denom == 0)
161 denom = rand.nextS();
165 wide.div(denom, Sk64::kTrunc_DivOption);
166 check /= denom;
173 denom = wide.getSqrt();
175 int diff = denom - ck;
195 SkDebugf(" %d === numer %g denom %g div %g xdiv %x fxdiv %x\n",
  /external/webrtc/src/modules/audio_processing/aec/
aec_resampler.c 179 float denom = 0; local
225 denom = x2 - xAvg*x;
227 if (denom != 0) {
228 skew = (xy - xAvg*y) / denom;
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aatriangle.c 120 const GLfloat denom = plane[3] + plane[0] * x + plane[1] * y; local
121 if (denom == 0.0F)
124 return -plane[2] / denom;
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrConvolutionEffect.cpp 177 float denom = 1.0f / (2.0f * gaussianSigma * gaussianSigma); local
182 fKernel[i] = sk_float_exp(- x * x * denom);
  /external/eigen/Eigen/src/Eigenvalues/
EigenSolver.h 469 Scalar denom = (m_eivalues.coeff(i).real() - p) * (m_eivalues.coeff(i).real() - p) + m_eivalues.coeff(i).imag() * m_eivalues.coeff(i).imag(); local
470 Scalar t = (x * lastr - lastw * r) / denom;
  /external/libvorbis/lib/
lsp.c 321 double p=defl[m],pp=0.f,ppp=0.f,denom; local
331 denom=(m-1) * ((m-1)*pp*pp - m*p*ppp);
332 if(denom<0)
336 denom = pp + sqrt(denom);
337 if(denom<EPSILON)denom=EPSILON;
339 denom = pp - sqrt(denom);
340 if(denom>-(EPSILON))denom=-(EPSILON)
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aatriangle.c 120 const GLfloat denom = plane[3] + plane[0] * x + plane[1] * y; local
121 if (denom == 0.0F)
124 return -plane[2] / denom;
  /external/skia/src/gpu/effects/
GrConvolutionEffect.cpp 177 float denom = 1.0f / (2.0f * gaussianSigma * gaussianSigma); local
182 fKernel[i] = sk_float_exp(- x * x * denom);
  /external/srec/srec/clib/
swicms.c 493 imeldata denom = ( swicms->inutt.forget_factor2 local
497 + swicms->inutt.accum[ii] + denom/2) / denom;

Completed in 426 milliseconds

1 2 3