/external/webkit/Source/WebCore/platform/graphics/ |
H A D | FloatPoint.cpp | 83 float slope = (p2.y() - p1.y()) / (p2.x() - p1.x()); local 84 c = p1.y() - slope * p1.x(); 85 return slope;
|
H A D | Path.cpp | 74 float slope = atan2f(change.height(), change.width()); local 78 traversalState.m_current.move(offset * cosf(slope), offset * sinf(slope)); 80 traversalState.m_normalAngle = rad2deg(slope);
|
/external/webkit/Source/WebCore/platform/graphics/filters/ |
H A D | FEComponentTransfer.h | 45 , slope(0) 55 float slope; member in struct:WebCore::ComponentTransferFunction
|
/external/quake/quake/src/QW/client/ |
H A D | d_sprite.c | 204 float du, dv, vtop, vbottom, slope; local 229 slope = du / dv; 230 u_step = (int)(slope * 0x10000); 232 u = (int)((pvert->u + (slope * (vtop - pvert->v))) * 0x10000) + 266 float du, dv, vtop, vbottom, slope, uvert, unext, vvert, vnext; local 309 slope = du / dv; 310 u_step = (int)(slope * 0x10000); 312 u = (int)((uvert + (slope * (vtop - vvert))) * 0x10000) +
|
/external/quake/quake/src/WinQuake/ |
H A D | d_sprite.cpp | 204 float du, dv, vtop, vbottom, slope;
local 229 slope = du / dv;
230 u_step = (int)(slope * 0x10000);
232 u = (int)((pvert->u + (slope * (vtop - pvert->v))) * 0x10000) +
266 float du, dv, vtop, vbottom, slope, uvert, unext, vvert, vnext;
local 309 slope = du / dv;
310 u_step = (int)(slope * 0x10000);
312 u = (int)((uvert + (slope * (vtop - vvert))) * 0x10000) +
|
/external/skia/src/core/ |
H A D | SkEdge.cpp | 75 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local 77 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, (32 - y0) & 63)); // + SK_Fixed1/2 78 fDX = slope; 115 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local 117 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, (32 - y0) & 63)); // + SK_Fixed1/2 118 fDX = slope;
|
H A D | SkGeometry.cpp | 68 SkScalar slope = SkScalarDiv(delta_y, delta_x); local 69 SkScalar b = pts[0].fY - SkScalarMul(slope, pts[0].fX); 71 SkScalar x = SkScalarDiv(pt.fY - b, slope);
|
/external/svox/pico/compat/src/com/android/tts/compat/ |
H A D | SynthProxy.java | 160 float attenuationInDb, float freqInHz, float slope); 159 native_setLowShelf(boolean applyFilter, float filterGain, float attenuationInDb, float freqInHz, float slope) argument
|
/external/svox/pico/compat/jni/ |
H A D | com_android_tts_compat_SynthProxy.cpp | 313 jfloat filterGain, jfloat attenuationInDb, jfloat freqInHz, jfloat slope) 319 fFilterShelfSlope = slope; 325 LOGE("Invalid slope, can't be null"); 312 com_android_tts_compat_SynthProxy_setLowShelf(JNIEnv *env, jobject thiz, jboolean applyFilter, jfloat filterGain, jfloat attenuationInDb, jfloat freqInHz, jfloat slope) argument
|
/external/webkit/Source/WebCore/css/ |
H A D | CSSGradientValue.cpp | 499 float slope = tan(deg2rad(angleDeg)); local 501 // We find the endpoint by computing the intersection of the line formed by the slope, 503 float perpendicularSlope = -1 / slope; 520 float endX = c / (slope - perpendicularSlope);
|
/external/opencv/cxcore/src/ |
H A D | cxdrawing.cpp | 281 /* Correction table depent on the slope */ 301 int slope; local 352 slope = (y_step >> (XY_SHIFT - 5)) & 0x3f; 353 slope ^= (y_step < 0 ? 0x3f : 0); 376 slope = (x_step >> (XY_SHIFT - 5)) & 0x3f; 377 slope ^= (x_step < 0 ? 0x3f : 0); 384 slope = (slope & 0x20) ? 0x100 : icvSlopeCorrTable[slope]; 388 int t0 = slope << [all...] |