HomeSort by relevance Sort by last modified time
    Searched refs:real (Results 126 - 150 of 1274) sorted by null

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
complexobject.c 37 r.real = a.real + b.real;
46 r.real = a.real - b.real;
55 r.real = -a.real;
64 r.real = a.real*b.real - a.imag*b.imag;
    [all...]
  /external/python/cpython2/Objects/
complexobject.c 37 r.real = a.real + b.real;
46 r.real = a.real - b.real;
55 r.real = -a.real;
64 r.real = a.real*b.real - a.imag*b.imag
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
complexobject.c 37 r.real = a.real + b.real;
46 r.real = a.real - b.real;
55 r.real = -a.real;
64 r.real = a.real*b.real - a.imag*b.imag;
    [all...]
  /external/eigen/blas/f2c/
srotmg.c 15 /* Subroutine */ int srotmg_(real *sd1, real *sd2, real *sx1, real *sy1, real
20 static real zero = 0.f;
21 static real one = 1.f;
22 static real two = 2.f;
23 static real gam = 4096.f;
24 static real gamsq = 16777200.f
    [all...]
datatypes.h 10 typedef float real; typedef
12 typedef struct { real r, i; } complex;
  /external/eigen/bench/btl/libs/BLAS/
c_interface_base.h 8 template<class real> class c_interface_base
13 typedef real real_type;
14 typedef std::vector<real> stl_vector;
17 typedef real* gene_matrix;
18 typedef real* gene_vector;
30 A = new real[N*N];
38 B = new real[N];
  /frameworks/native/cmds/lshal/libprocpartition/
procpartition.cpp 37 std::string real; local
41 if (!android::base::Realpath(exe, &real)) {
44 return real;
93 const auto& real = getExe(pid); local
94 if (real.empty() || real.front() != '/') {
97 return getPartitionFromRealpath(real);
  /external/eigen/bench/btl/libs/STL/
STL_interface.hh 28 template<class real>
33 typedef real real_type ;
35 typedef std::vector<real> stl_vector;
83 // real somme;
96 real somme;
114 real somme;
127 real somme;
142 real t1 = B[j];
143 real t2 = 0;
173 real somme
    [all...]
  /external/libcxx/test/std/numerics/complex.number/cmplx.over/
UDT_is_rejected.fail.cpp 33 std::real(ft); // expected-error {{no matching function}}
34 std::real(dt); // expected-error {{no matching function}}
35 std::real(ldt); // expected-error {{no matching function}}
36 std::real(it); // expected-error {{no matching function}}
37 std::real(uit); // expected-error {{no matching function}}
  /external/python/cpython3/Objects/
complexobject.c 19 r.real = a.real + b.real;
28 r.real = a.real - b.real;
37 r.real = -a.real;
46 r.real = a.real*b.real - a.imag*b.imag
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/cmplx.over/
UDT_is_rejected.fail.cpp 33 std::real(ft); // expected-error {{no matching function}}
34 std::real(dt); // expected-error {{no matching function}}
35 std::real(ldt); // expected-error {{no matching function}}
36 std::real(it); // expected-error {{no matching function}}
37 std::real(uit); // expected-error {{no matching function}}
  /external/eigen/bench/btl/libs/blitz/
blitz_LU_solve_interface.hh 28 template<class real>
29 class blitz_LU_solve_interface : public blitz_interface<real>
34 typedef typename blitz_interface<real>::gene_matrix gene_matrix;
35 typedef typename blitz_interface<real>::gene_vector gene_vector;
54 static inline real matrix_vector_product_sliced(const gene_matrix & A, gene_vector B, int row, int col_start, int col_end)
57 real somme=0.;
72 static inline real matrix_matrix_product_sliced(gene_matrix & A, int row, int col_start, int col_end, gene_matrix & B, int row_shift, int col )
75 real somme=0.;
92 real big = 0. ;
93 real theSum = 0.
    [all...]
  /external/eigen/bench/btl/libs/gmm/
gmm_LU_solve_interface.hh 28 template<class real>
29 class blitz_LU_solve_interface : public blitz_interface<real>
34 typedef typename blitz_interface<real>::gene_matrix gene_matrix;
35 typedef typename blitz_interface<real>::gene_vector gene_vector;
54 static inline real matrix_vector_product_sliced(const gene_matrix & A, gene_vector B, int row, int col_start, int col_end)
57 real somme=0.;
72 static inline real matrix_matrix_product_sliced(gene_matrix & A, int row, int col_start, int col_end, gene_matrix & B, int row_shift, int col )
75 real somme=0.;
92 real big = 0. ;
93 real theSum = 0.
    [all...]
  /external/eigen/bench/btl/libs/mtl4/
mtl4_LU_solve_interface.hh 28 template<class real>
29 class blitz_LU_solve_interface : public blitz_interface<real>
34 typedef typename blitz_interface<real>::gene_matrix gene_matrix;
35 typedef typename blitz_interface<real>::gene_vector gene_vector;
54 static inline real matrix_vector_product_sliced(const gene_matrix & A, gene_vector B, int row, int col_start, int col_end)
57 real somme=0.;
72 static inline real matrix_matrix_product_sliced(gene_matrix & A, int row, int col_start, int col_end, gene_matrix & B, int row_shift, int col )
75 real somme=0.;
92 real big = 0. ;
93 real theSum = 0.
    [all...]
  /external/libchrome/base/json/
json_writer.cc 92 std::string real = DoubleToString(value); local
95 // real rather than an int.
96 if (real.find('.') == std::string::npos &&
97 real.find('e') == std::string::npos &&
98 real.find('E') == std::string::npos) {
99 real.append(".0");
103 if (real[0] == '.') {
104 real.insert(static_cast<size_t>(0), static_cast<size_t>(1), '0');
105 } else if (real.length() > 1 && real[0] == '-' && real[1] == '.')
    [all...]
  /prebuilts/go/darwin-x86/test/
devirt.go 7 type real struct { type
11 func (r *real) Value() int { return r.value }
27 rptr := &real{value: 3}
cmplxdivide.go 22 if real(a) != real(b) && !(math.IsNaN(real(a)) && math.IsNaN(real(b))) {
  /prebuilts/go/linux-x86/test/
devirt.go 7 type real struct { type
11 func (r *real) Value() int { return r.value }
27 rptr := &real{value: 3}
cmplxdivide.go 22 if real(a) != real(b) && !(math.IsNaN(real(a)) && math.IsNaN(real(b))) {
  /external/eigen/test/
redux.cpp 32 Scalar s(0), p(1), minc(numext::real(m1.coeff(0))), maxc(numext::real(m1.coeff(0)));
38 minc = (std::min)(numext::real(minc), numext::real(m1(i,j)));
39 maxc = (std::max)(numext::real(maxc), numext::real(m1(i,j)));
46 VERIFY_IS_APPROX(m1.real().minCoeff(), numext::real(minc));
47 VERIFY_IS_APPROX(m1.real().maxCoeff(), numext::real(maxc))
    [all...]
  /external/libcxx/test/std/numerics/complex.number/complex.value.ops/
arg.pass.cpp 36 if (std::isnan(testcases[i].real()) || std::isnan(testcases[i].imag()))
43 if (std::signbit(testcases[i].real()))
56 if (testcases[i].real() == 0)
65 if (testcases[i].real() < 0)
84 if (std::isinf(testcases[i].real()) && std::isinf(testcases[i].imag()))
86 if (testcases[i].real() < 0)
101 else if (std::isinf(testcases[i].real()))
103 if (testcases[i].real() < 0)
  /prebuilts/go/darwin-x86/src/math/cmplx/
asin.go 52 if imag(x) == 0 && math.Abs(real(x)) <= 1 {
53 return complex(math.Asin(real(x)), imag(x))
55 ct := complex(-imag(x), real(x)) // i * x
57 x1 := complex(1-real(xx), -imag(xx)) // 1 - x*x
60 return complex(imag(w), -real(w)) // -i * w
65 if imag(x) == 0 && math.Abs(real(x)) <= 1 {
66 return complex(math.Asinh(real(x)), imag(x))
69 x1 := complex(1+real(xx), imag(xx)) // 1 + x*x
89 return complex(math.Pi/2-real(w), -imag(w))
96 return complex(-imag(w), real(w)) // i *
    [all...]
  /prebuilts/go/linux-x86/src/math/cmplx/
asin.go 52 if imag(x) == 0 && math.Abs(real(x)) <= 1 {
53 return complex(math.Asin(real(x)), imag(x))
55 ct := complex(-imag(x), real(x)) // i * x
57 x1 := complex(1-real(xx), -imag(xx)) // 1 - x*x
60 return complex(imag(w), -real(w)) // -i * w
65 if imag(x) == 0 && math.Abs(real(x)) <= 1 {
66 return complex(math.Asinh(real(x)), imag(x))
69 x1 := complex(1+real(xx), imag(xx)) // 1 + x*x
89 return complex(math.Pi/2-real(w), -imag(w))
96 return complex(-imag(w), real(w)) // i *
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/complex.value.ops/
arg.pass.cpp 36 if (std::isnan(testcases[i].real()) || std::isnan(testcases[i].imag()))
43 if (std::signbit(testcases[i].real()))
56 if (testcases[i].real() == 0)
65 if (testcases[i].real() < 0)
84 if (std::isinf(testcases[i].real()) && std::isinf(testcases[i].imag()))
86 if (testcases[i].real() < 0)
101 else if (std::isinf(testcases[i].real()))
103 if (testcases[i].real() < 0)
  /external/clang/test/CodeGen/
redefine_extname.c 3 #pragma redefine_extname fake real
12 // Check that the call to fake() is emitted as a call to real()
13 // CHECK: call i32 @real()

Completed in 908 milliseconds

1 2 3 4 56 7 8 91011>>