OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:piDouble
(Results
1 - 19
of
19
) sorted by null
/external/webkit/Source/WebCore/platform/audio/
FFTFrame.cpp
141
if (deltaPhase1 >
piDouble
)
142
deltaPhase1 -= 2.0 *
piDouble
;
143
if (deltaPhase1 < -
piDouble
)
144
deltaPhase1 += 2.0 *
piDouble
;
145
if (deltaPhase2 >
piDouble
)
146
deltaPhase2 -= 2.0 *
piDouble
;
147
if (deltaPhase2 < -
piDouble
)
148
deltaPhase2 += 2.0 *
piDouble
;
153
if (deltaPhase1 - deltaPhase2 >
piDouble
)
154
deltaPhaseBlend = s1 * deltaPhase1 + s2 * (2.0 *
piDouble
+ deltaPhase2)
[
all
...]
Cone.cpp
59
double angle = 180.0 * acos(dotProduct) /
piDouble
;
EqualPowerPanner.cpp
79
double desiredGainL = 0.5 * cos(
piDouble
* desiredPanPosition) + 0.5;
Biquad.cpp
199
double theta =
piDouble
* cutoff;
220
double theta =
piDouble
* cutoff;
235
double theta =
piDouble
* cutoff;
SincResampler.cpp
109
double s = sincScaleFactor *
piDouble
* (i - halfSize - subsampleOffset);
115
double window = a0 - a1 * cos(2.0 *
piDouble
* x) + a2 * cos(4.0 *
piDouble
* x);
/external/webkit/Source/JavaScriptCore/wtf/
MathExtras.h
52
const double
piDouble
= 3.14159265358979323846;
55
const double
piDouble
= M_PI;
192
inline double deg2rad(double d) { return d *
piDouble
/ 180.0; }
193
inline double rad2deg(double r) { return r * 180.0 /
piDouble
; }
198
inline double rad2grad(double r) { return r * 200.0 /
piDouble
; }
199
inline double grad2rad(double g) { return g *
piDouble
/ 200.0; }
/external/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.cpp
352
srA[2] += srA[2] < 0 ?
piDouble
: -
piDouble
;
356
srA[2] = fmod(srA[2], 2.0 *
piDouble
);
357
srB[2] = fmod(srB[2], 2.0 *
piDouble
);
359
if (fabs(srA[2] - srB[2]) >
piDouble
) {
361
srA[2] -=
piDouble
* 2.0;
363
srB[2] -=
piDouble
* 2.0;
TransformationMatrix.cpp
497
scale = sin(
piDouble
* (.5 - t));
498
invscale = sin (
piDouble
* t);
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/openvg/
PathOpenVG.cpp
253
double angle = (
piDouble
- fabs(asin(cross / (d01 * d21)))) * 0.5;
316
startAngle = fmod((2.0 *
piDouble
) - startAngle, 2.0 *
piDouble
);
317
endAngle = fmod((2.0 *
piDouble
) - endAngle, 2.0 *
piDouble
);
322
endAngle += 2.0 *
piDouble
;
326
: (startAngle - endAngle + (2.0 *
piDouble
));
348
const bool largeArc = (angleDelta >
piDouble
);
/external/webkit/Source/WebCore/platform/graphics/cairo/
PathCairo.cpp
236
sa = 2 *
piDouble
- sa;
247
ea = 2 *
piDouble
- ea;
248
if ((sa > ea) && ((sa - ea) <
piDouble
))
250
if ((sa < ea) && ((ea - sa) >
piDouble
))
266
cairo_arc(cr, 0., 0., 1., 0., 2 *
piDouble
);
/external/webkit/Source/WebCore/platform/graphics/qt/
PathQt.cpp
233
sa = 2 *
piDouble
- sa;
244
ea = 2 *
piDouble
- ea;
245
if ((sa > ea) && ((sa - ea) <
piDouble
))
247
if ((sa < ea) && ((ea - sa) >
piDouble
))
/external/webkit/Source/WebCore/platform/graphics/filters/
FEColorMatrix.cpp
102
double cosHue = cos(hue *
piDouble
/ 180);
103
double sinHue = sin(hue *
piDouble
/ 180);
/external/webkit/Source/WebCore/webaudio/
AudioPannerNode.cpp
196
azimuth = 180.0 * acos(projectedSource.dot(listenerRight)) /
piDouble
;
211
double elevation = 90.0 - 180.0 * acos(sourceListener.dot(up)) /
piDouble
;
RealtimeAnalyser.cpp
141
double window = a0 - a1 * cos(2.0 *
piDouble
* x) + a2 * cos(4.0 *
piDouble
* x);
/external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp
747
angle += 2 *
piDouble
;
748
while (angle >= 2 *
piDouble
)
749
angle -= 2 *
piDouble
;
751
if (equalAngle(angle, 0) || equalAngle(angle, 2 *
piDouble
)) {
754
} else if (equalAngle(angle,
piDouble
)) {
757
} else if (equalAngle(angle, .5 *
piDouble
)) {
760
} else if (equalAngle(angle, 1.5 *
piDouble
)) {
769
if (angle > .5 *
piDouble
&& angle < 1.5 *
piDouble
)
773
k = tan(.5 *
piDouble
- angle)
[
all
...]
PlatformPathWinCE.cpp
221
endAngle += 2 *
piDouble
;
225
endAngle -= 2 *
piDouble
;
673
double angle = (
piDouble
- fabs(asin(cross / (d01 * d21)))) * 0.5;
/external/webkit/Source/JavaScriptCore/runtime/
MathObject.cpp
99
putDirectWithoutTransition(exec->globalData(), Identifier(exec, "PI"), jsNumber(
piDouble
), DontDelete | DontEnum | ReadOnly);
/external/webkit/Source/WebCore/css/
CSSPrimitiveValue.cpp
390
factor = 180 /
piDouble
;
/external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp
587
newTransform.rotate(angleInRadians /
piDouble
* 180.0);
595
m_path.transform(AffineTransform().rotate(-angleInRadians /
piDouble
* 180.0));
[
all
...]
Completed in 350 milliseconds