HomeSort by relevance Sort by last modified time
    Searched full:real (Results 326 - 350 of 8477) sorted by null

<<11121314151617181920>>

  /external/libcxx/test/std/numerics/complex.number/complex.member.ops/
minus_equal_complex.pass.cpp 23 assert(c.real() == 0);
26 assert(c.real() == -1.5);
29 assert(c.real() == -3);
37 assert(c3.real() == -4);
43 assert(c3.real() == -4);
plus_equal_complex.pass.cpp 23 assert(c.real() == 0);
26 assert(c.real() == 1.5);
29 assert(c.real() == 3);
37 assert(c3.real() == 4);
43 assert(c3.real() == 4);
times_equal_complex.pass.cpp 23 assert(c.real() == 1);
26 assert(c.real() == 1.5);
29 assert(c.real() == -4);
37 assert(c3.real() == -11.5);
43 assert(c3.real() == -11.5);
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_config.h 69 /* real-time interface */
70 unsigned long realtime; /* real-time enabled flag */
71 unsigned long rt_granularity; /* real-time granularity in seconds
73 unsigned long rt_detailed; /* real-time detailed flag:
80 char *rt_file; /* file to save all real-time logs */
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.member.ops/
divide_equal_complex.pass.cpp 23 assert(c.real() == -4);
26 assert(c.real() == 1.5);
29 assert(c.real() == 1);
37 assert(c3.real() == 0.5);
43 assert(c3.real() == 0.5);
minus_equal_complex.pass.cpp 23 assert(c.real() == 0);
26 assert(c.real() == -1.5);
29 assert(c.real() == -3);
37 assert(c3.real() == -4);
43 assert(c3.real() == -4);
plus_equal_complex.pass.cpp 23 assert(c.real() == 0);
26 assert(c.real() == 1.5);
29 assert(c.real() == 3);
37 assert(c3.real() == 4);
43 assert(c3.real() == 4);
times_equal_complex.pass.cpp 23 assert(c.real() == 1);
26 assert(c.real() == 1.5);
29 assert(c.real() == -4);
37 assert(c3.real() == -11.5);
43 assert(c3.real() == -11.5);
  /external/dbus/dbus/
dbus-hash.c 520 DBusRealHashIter *real; local
524 real = (DBusRealHashIter*) iter;
526 real->table = table;
527 real->bucket = NULL;
528 real->entry = NULL;
529 real->next_entry = NULL;
530 real->next_bucket = 0;
531 real->n_entries_on_init = table->n_entries;
545 DBusRealHashIter *real; local
549 real = (DBusRealHashIter*) iter
594 DBusRealHashIter *real; local
615 DBusRealHashIter *real; local
639 DBusRealHashIter *real; local
661 DBusRealHashIter *real; local
680 DBusRealHashIter *real; local
698 DBusRealHashIter *real; local
745 DBusRealHashIter *real; local
    [all...]
  /external/webrtc/webrtc/common_audio/
real_fourier_unittest.cc 26 RealFourier::fft_real_scoper real; local
27 real = RealFourier::AllocRealBuffer(3);
28 ASSERT_TRUE(real.get() != nullptr);
29 uintptr_t ptr_value = reinterpret_cast<uintptr_t>(real.get());
88 EXPECT_NEAR(this->cplx_buffer_[0].real(), 10.0f, 1e-8f);
90 EXPECT_NEAR(this->cplx_buffer_[1].real(), -2.0f, 1e-8f);
92 EXPECT_NEAR(this->cplx_buffer_[2].real(), -2.0f, 1e-8f);
  /frameworks/base/core/java/com/android/internal/util/
JournaledFile.java 36 public JournaledFile(File real, File temp) {
37 mReal = real;
43 * Prefers the real file. If it doesn't exist, uses the temp one, and then copies
44 * it to the real one. If there is both a real file and a temp one, assumes that the
76 // If the real one doesn't exist, it's either because this is the first time
80 // for real, which will we'll shortly delete.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusheaders.h 102 REAL GetHorizontalResolution();
118 REAL GetVerticalResolution();
210 Bitmap* Clone(REAL x, REAL y, REAL width, REAL height,
218 REAL alphaThresholdPercent);
230 Status SetResolution(REAL xdpi, REAL ydpi);
269 REAL baseInset = 0.0f)
    [all...]
gdiplusbrush.h 183 const Color& color2, REAL angle,
194 const Color& color2, REAL angle,
222 Status GetBlend(REAL *blendFactors, REAL *blendPositions,
251 REAL *blendPositions, INT count) const
316 Status RotateTranform(REAL angle, MatrixOrder order = MatrixOrderPrepend)
321 Status ScaleTransform(REAL sx, REAL sy,
327 Status SetBlend(const REAL *blendFactors,
328 const REAL *blendPositions, INT count
    [all...]
gdiplustypes.h 86 REAL Width;
87 REAL Height;
91 SizeF(REAL width, REAL height): Width(width), Height(height) {}
132 REAL X;
133 REAL Y;
137 PointF(REAL x, REAL y): X(x), Y(y) {}
279 REAL X;
280 REAL Y
    [all...]
  /prebuilts/go/darwin-x86/src/math/cmplx/
sqrt.go 57 // The result r is chosen so that real(r) ? 0 and imag(r) has the same sign as imag(x).
60 if real(x) == 0 {
63 if real(x) < 0 {
64 return complex(0, math.Sqrt(-real(x)))
66 return complex(math.Sqrt(real(x)), 0)
68 if real(x) == 0 {
76 a := real(x)
  /prebuilts/go/linux-x86/src/math/cmplx/
sqrt.go 57 // The result r is chosen so that real(r) ? 0 and imag(r) has the same sign as imag(x).
60 if real(x) == 0 {
63 if real(x) < 0 {
64 return complex(0, math.Sqrt(-real(x)))
66 return complex(math.Sqrt(real(x)), 0)
68 if real(x) == 0 {
76 a := real(x)
  /external/opencv3/3rdparty/openexr/Imath/
ImathRoots.h 52 // Find the real solutions of a linear, quadratic or cubic equation:
63 // 3 three real solutions, stored in x[0], x[1] and x[2]
64 // 2 two real solutions, stored in x[0] and x[1]
65 // 1 one real solution, stored in x[1]
66 // 0 no real solutions
67 // -1 all real numbers are solutions
71 // * It is possible that an equation has real solutions, but that the
79 // only real solutions are produced, some intermediate results are
183 x[0] = y0.real() - r / 3;
188 x[0] = y0.real() - r / 3
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
cplx.go 35 // Break nl and nr into real and imaginary components.
42 // real(l) == real(r) && imag(l) == imag(r)
44 // real(l) == real(r) & imag(l) == imag(r)
84 // break addable nc-complex into nr-real and ni-imaginary
95 nodfconst(nr, t, &nc.Val().U.(*Mpcplx).Real)
118 // real(res) = -real(nl)
134 // real(res) = real(nl) op real(nr
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
cplx.go 32 // Break nl and nr into real and imaginary components.
39 // real(l) == real(r) && imag(l) == imag(r)
41 // real(l) == real(r) & imag(l) == imag(r)
81 // break addable nc-complex into nr-real and ni-imaginary
92 nodfconst(nr, t, &nc.Val().U.(*Mpcplx).Real)
115 // real(res) = -real(nl)
131 // real(res) = real(nl) op real(nr
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
cplx.go 35 // Break nl and nr into real and imaginary components.
42 // real(l) == real(r) && imag(l) == imag(r)
44 // real(l) == real(r) & imag(l) == imag(r)
84 // break addable nc-complex into nr-real and ni-imaginary
95 nodfconst(nr, t, &nc.Val().U.(*Mpcplx).Real)
118 // real(res) = -real(nl)
134 // real(res) = real(nl) op real(nr
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
cplx.go 32 // Break nl and nr into real and imaginary components.
39 // real(l) == real(r) && imag(l) == imag(r)
41 // real(l) == real(r) & imag(l) == imag(r)
81 // break addable nc-complex into nr-real and ni-imaginary
92 nodfconst(nr, t, &nc.Val().U.(*Mpcplx).Real)
115 // real(res) = -real(nl)
131 // real(res) = real(nl) op real(nr
    [all...]
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 51 * - internal::conj, internal::real, internal::imag, numext::abs2.
63 typename NumTraits<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar>::Real>::value>
68 typename NumTraits<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar>::Real>::value> Base;
71 typedef typename NumTraits<Scalar>::Real Real;
89 /*explicit*/ AutoDiffScalar(const Real& value)
170 // inline const AutoDiffScalar<DerType&> operator+(const Real& other) const
175 // friend inline const AutoDiffScalar<DerType&> operator+(const Real& a, const AutoDiffScalar& b)
264 // inline const AutoDiffScalar<typename CwiseUnaryOp<internal::scalar_multiple_op<Real>, DerType>::Type >
265 // operator*(const Real& other) cons
535 inline const AutoDiffScalar<DerType>& real(const AutoDiffScalar<DerType>& x) { return x; } function in namespace:Eigen
    [all...]
  /external/ceres-solver/internal/ceres/
polynomial_test.cc 66 // p(x) = poly(x) * (x - real - imag*i) * (x - real + imag*i).
67 Vector AddComplexRootPair(const Vector& poly, double real, double imag) {
70 // Multiply poly by x^2 - 2real + abs(real,imag)^2
72 poly2.segment(1, poly.size()) -= 2 * real * poly;
73 poly2.tail(poly.size()) += (real*real + imag*imag) * poly;
85 // Run a test with the polynomial defined by the N real roots in roots_real.
86 // If use_real is false, NULL is passed as the real argument t
94 Vector real; local
122 Vector real; local
131 Vector real; local
171 Vector real; local
    [all...]
  /frameworks/base/docs/image_sources/providers/
datamodel.graffle 41 <real>36</real>
64 <real>0.33598536252975464</real>
82 <real>0.0</real>
110 <real>0.49666976928710938</real>
128 <real>0.0</real>
    [all...]
  /external/crcalc/
impl.html 3 <TITLE>Constructive Real Calculator and Library Implementation Notes</title>
6 <H1>Constructive Real Calculator and Library Implementation Notes</h1>
8 The calculator is based on the constructive real library consisting
33 A constructive real number <I>x</i> is represented abstractly as a function
55 constructive real numbers are possible.
83 real numbers and constructive analysis. Relatively little of this
91 Probably the most practical approach to constructive real arithmetic
93 but not quite, constructive real arithmetic is described in
99 of constructive real arithmetic are explored in
108 Boehm, Cartwright, Riggle, and O'Donnell, "Exact Real Arithmetic
    [all...]

Completed in 1192 milliseconds

<<11121314151617181920>>