HomeSort by relevance Sort by last modified time
    Searched refs:Complex (Results 1 - 25 of 45) sorted by null

1 2

  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/
Complex.h 3 #include <JavaScriptCore/Complex.h>
  /external/webkit/Source/JavaScriptCore/wtf/
Complex.h 32 #include <complex>
37 typedef std::complex<double> Complex;
39 inline Complex complexFromMagnitudePhase(double magnitude, double phase)
41 return Complex(magnitude * cos(phase), magnitude * sin(phase));
46 using WTF::Complex;
  /external/webkit/Source/WebCore/platform/audio/
Biquad.h 34 #include <wtf/Complex.h>
63 void setZeroPolePairs(const Complex& zero, const Complex& pole);
67 void setAllpassPole(const Complex& pole);
FFTFrame.cpp 39 #include <wtf/Complex.h>
101 Complex c1(realP1[i], imagP1[i]);
102 Complex c2(realP2[i], imagP2[i]);
168 Complex c = complexFromMagnitudePhase(mag, phaseAccum);
190 Complex c(realP[i], imagP[i]);
237 Complex c(realP[i], imagP[i]);
243 Complex c2 = complexFromMagnitudePhase(mag, phase);
Biquad.cpp 260 void Biquad::setZeroPolePairs(const Complex &zero, const Complex &pole)
274 void Biquad::setAllpassPole(const Complex &pole)
276 Complex zero = Complex(1.0, 0.0) / pole;
  /external/webkit/Source/WebCore/bindings/v8/
npruntime_internal.h 39 #undef Complex
  /external/webkit/Source/WebCore/bridge/
npruntime_internal.h 39 #undef Complex
  /external/webkit/Source/WebCore/platform/graphics/
Font.cpp 142 if (codePath(run) != Complex)
162 if (codePath(run) != Complex)
176 if (codePathToUse != Complex) {
177 // If the complex text implementation cannot return fallback fonts, avoid
198 if (codePath(run) != Complex)
213 if (codePath(run) != Complex)
226 if (codePath(run) != Complex)
280 return Complex;
291 return Complex;
296 return Complex;
    [all...]
Font.h 157 enum CodePath { Auto, Simple, Complex, SimpleWithGlyphOverflow };
  /external/webkit/Source/WebCore/platform/win/
WebCoreTextRenderer.cpp 117 void WebCoreSetAlwaysUsesComplexTextCodePath(bool complex)
119 Font::setCodePath(complex ? Font::Complex : Font::Auto);
124 return Font::codePath() == Font::Complex;
  /external/clang/lib/CodeGen/
CGValue.h 34 /// simple LLVM SSA value, a pair of SSA values for complex numbers, or the
37 enum Flavor { Scalar, Complex, Aggregate };
46 bool isComplex() const { return V1.getInt() == Complex; }
57 /// getComplexVal - Return the real/imag components of this complex value.
80 ER.V1.setInt(Complex);
CGExprConstant.cpp     [all...]
  /external/webkit/Source/WebCore/webaudio/
RealtimeAnalyser.cpp 42 #include <wtf/Complex.h>
187 // Convert the analysis data from complex to magnitude and average with the previous result.
190 Complex c(realP[i], imagP[i]);
  /external/clang/tools/libclang/
CXType.cpp 75 TKCASE(Complex);
398 TKIND(Complex);
537 case Type::Complex:
  /external/v8/test/mjsunit/
indexed-accessors.js 99 // Complex case of using an undefined getter.
  /external/chromium/base/threading/
worker_pool_posix_unittest.cc 231 TEST_F(PosixDynamicThreadPoolTest, Complex) {
  /external/libvpx/examples/includes/geshi/geshi/
ruby.php 75 'CGI::Session::MemoryStore', 'Class', 'Comparable', 'Complex',
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
X.h 556 #define Complex 0 /* paths may intersect */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
X.h 556 #define Complex 0 /* paths may intersect */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
X.h 556 #define Complex 0 /* paths may intersect */
  /external/clang/lib/AST/
Type.cpp 362 // Check for GCC complex integer extension.
367 if (const ComplexType *Complex = getAs<ComplexType>())
368 if (Complex->getElementType()->isIntegerType())
369 return Complex;
937 case Type::Complex:
    [all...]
  /external/neven/
Android.mk 27 Embedded/common/src/b_BasicEm/Complex.c \
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 29 CtClass clazz = pool.get(ArrayAccessReplaceTest.class.getName() + "$Complex");
390 public static class Complex implements ComplexInterface {
  /external/valgrind/tsan/
suppressions_test.cc 275 TEST_F(BaseSuppressionsTest, Complex) {

Completed in 649 milliseconds

1 2