Home
last modified time | relevance | path

Searched refs:piDouble (Results 1 – 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/audio/
DFFTFrame.cpp142 if (deltaPhase1 > piDouble) in interpolateFrequencyComponents()
143 deltaPhase1 -= 2.0 * piDouble; in interpolateFrequencyComponents()
144 if (deltaPhase1 < -piDouble) in interpolateFrequencyComponents()
145 deltaPhase1 += 2.0 * piDouble; in interpolateFrequencyComponents()
146 if (deltaPhase2 > piDouble) in interpolateFrequencyComponents()
147 deltaPhase2 -= 2.0 * piDouble; in interpolateFrequencyComponents()
148 if (deltaPhase2 < -piDouble) in interpolateFrequencyComponents()
149 deltaPhase2 += 2.0 * piDouble; in interpolateFrequencyComponents()
154 if (deltaPhase1 - deltaPhase2 > piDouble) in interpolateFrequencyComponents()
155 deltaPhaseBlend = s1 * deltaPhase1 + s2 * (2.0 * piDouble + deltaPhase2); in interpolateFrequencyComponents()
[all …]
DBiquad.cpp224 double theta = piDouble * cutoff; in setLowpassParams()
260 double theta = piDouble * cutoff; in setHighpassParams()
319 double w0 = piDouble * frequency; in setLowShelfParams()
354 double w0 = piDouble * frequency; in setHighShelfParams()
389 double w0 = piDouble * frequency; in setPeakingParams()
425 double w0 = piDouble * frequency; in setAllpassParams()
461 double w0 = piDouble * frequency; in setNotchParams()
496 double w0 = piDouble * frequency; in setBandpassParams()
577 double omega = -piDouble * frequency[k]; in getFrequencyResponse()
DUpSampler.cpp65 double s = piDouble * (i - halfSize - subsampleOffset); in initializeKernel()
70 double window = a0 - a1 * cos(2.0 * piDouble * x) + a2 * cos(4.0 * piDouble * x); in initializeKernel()
DDownSampler.cpp70 double s = sincScaleFactor * piDouble * (i - halfSize); in initializeKernel()
76 double window = a0 - a1 * cos(2.0 * piDouble * x) + a2 * cos(4.0 * piDouble * x); in initializeKernel()
DEqualPowerPanner.cpp104 desiredGainL = cos(0.5 * piDouble * desiredPanPosition); in pan()
105 desiredGainR = sin(0.5 * piDouble * desiredPanPosition); in pan()
DSincResampler.cpp116 double s = sincScaleFactor * piDouble * (i - halfSize - subsampleOffset); in initializeKernel()
122 double window = a0 - a1 * cos(2.0 * piDouble * x) + a2 * cos(4.0 * piDouble * x); in initializeKernel()
DCone.cpp59 double angle = 180.0 * acos(dotProduct) / piDouble; in gain()
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
DAffineTransform.cpp317 srA.angle += srA.angle < 0 ? piDouble : -piDouble; in blend()
321 srA.angle = fmod(srA.angle, 2 * piDouble); in blend()
322 srB.angle = fmod(srB.angle, 2 * piDouble); in blend()
324 if (fabs(srA.angle - srB.angle) > piDouble) { in blend()
326 srA.angle -= piDouble * 2; in blend()
328 srB.angle -= piDouble * 2; in blend()
DTransformationMatrix.cpp508 scale = sin(piDouble * (.5 - t)); in slerp()
509 invscale = sin (piDouble * t); in slerp()
/external/chromium_org/third_party/WebKit/Source/wtf/
DMathExtras.h43 const double piDouble = M_PI; variable
189 inline double deg2rad(double d) { return d * piDouble / 180.0; } in deg2rad()
190 inline double rad2deg(double r) { return r * 180.0 / piDouble; } in rad2deg()
195 inline double rad2grad(double r) { return r * 200.0 / piDouble; } in rad2grad()
196 inline double grad2rad(double g) { return g * piDouble / 200.0; } in grad2rad()
/external/clang/test/Rewriter/
Dobjc-modern-boxing.mm55 …NSNumber *piDouble = @(3.1415926535); // equivalent to [NSNumber numberWithDouble:(3.1415926535)] function
70 // CHECK: NSNumber *piDouble = ((NSNumber *(*)(id, SEL, double))(void *)objc_msgSend)(objc_getClas…
Dobjc-modern-numeric-literal.mm49 NSNumber *piDouble = @3.1415926535; // equivalent to [NSNumber numberWithDouble:3.1415926535]
65 // CHECK: NSNumber *piDouble = ((NSNumber *(*)(id, SEL, double))(void *)objc_msgSend)(objc_getClas…
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DRealtimeAnalyser.cpp148 double window = a0 - a1 * cos(2 * piDouble * x) + a2 * cos(4 * piDouble * x); in applyWindow()
DPannerNode.cpp295 azimuth = 180.0 * acos(projectedSource.dot(listenerRight)) / piDouble; in getAzimuthElevation()
310 double elevation = 90.0 - 180.0 * acos(sourceListener.dot(up)) / piDouble; in getAzimuthElevation()
/external/chromium_org/third_party/WebKit/Source/wtf/text/
DWTFStringTest.cpp91 testNumberToStringECMAScript(piDouble, "3.141592653589793"); in TEST()
/external/clang/test/CodeGenObjC/
Dobjc-literal-tests.m75 NSNumber *piDouble = @3.1415926535;
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSPrimitiveValue.cpp663 factor = 180 / piDouble; in conversionToCanonicalUnitsScaleFactor()
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DCanvasRenderingContext2D.cpp633 newTransform.rotate(angleInRadians / piDouble * 180.0); in rotate()
646 m_path.transform(AffineTransform().rotate(-angleInRadians / piDouble * 180.0)); in rotate()
/external/clang/docs/
DObjectiveCLiterals.rst57 … NSNumber *piDouble = @3.1415926535; // equivalent to [NSNumber numberWithDouble:3.1415926535]