OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:complex
(Results
126 - 150
of
2438
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex/
types.pass.cpp
10
// <
complex
>
13
// class
complex
20
#include <
complex
>
27
typedef std::
complex
<T> C;
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.ops/
stream_output.pass.cpp
10
// <
complex
>
14
// operator<<(basic_ostream<charT, traits>& o, const
complex
<T>& x);
16
#include <
complex
>
22
std::
complex
<double> c(1, 2);
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.value.ops/
imag.pass.cpp
10
// <
complex
>
14
// imag(const
complex
<T>& x);
16
#include <
complex
>
23
std::
complex
<T> z(1.5, 2.5);
real.pass.cpp
10
// <
complex
>
14
// real(const
complex
<T>& x);
16
#include <
complex
>
23
std::
complex
<T> z(1.5, 2.5);
/ndk/tests/device/test-gnustl-full/unit/
complex_header_test.cpp
8
#include <
complex
>
/ndk/tests/device/test-stlport/unit/
complex_header_test.cpp
8
#include <
complex
>
/external/harfbuzz_ng/
Android.mk
47
src/hb-ot-shape-
complex
-arabic.cc \
48
src/hb-ot-shape-
complex
-default.cc \
49
src/hb-ot-shape-
complex
-indic.cc \
50
src/hb-ot-shape-
complex
-indic-table.cc \
51
src/hb-ot-shape-
complex
-myanmar.cc \
52
src/hb-ot-shape-
complex
-sea.cc \
53
src/hb-ot-shape-
complex
-thai.cc \
/external/llvm/test/Object/
objdump-relocations.test
13
RUN: | FileCheck %s -check-prefix ELF-
complex
-x86-64
43
ELF-
complex
-x86-64: .text
44
ELF-
complex
-x86-64-NEXT: R_X86_64_8 .data-4
45
ELF-
complex
-x86-64-NEXT: R_X86_64_16 .data-4
46
ELF-
complex
-x86-64-NEXT: R_X86_64_32 .data-4
47
ELF-
complex
-x86-64-NEXT: R_X86_64_32S .data-4
48
ELF-
complex
-x86-64-NEXT: R_X86_64_64 .data-4
49
ELF-
complex
-x86-64-NEXT: R_X86_64_PC32 .data-4-P
50
ELF-
complex
-x86-64-NEXT: R_X86_64_32 .data+0
51
ELF-
complex
-x86-64-NEXT: R_X86_64_32 .data+
[
all
...]
/external/eigen/Eigen/src/Core/arch/NEON/
Complex.h
28
template<> struct packet_traits<std::
complex
<float> > : default_packet_traits
49
template<> struct unpacket_traits<Packet2cf> { typedef std::
complex
<float> type; enum {size=2}; };
51
template<> EIGEN_STRONG_INLINE Packet2cf pset1<Packet2cf>(const std::
complex
<float>& from)
108
template<> EIGEN_STRONG_INLINE Packet2cf pload<Packet2cf>(const std::
complex
<float>* from) { EIGEN_DEBUG_ALIGNED_LOAD return Packet2cf(pload<Packet4f>((const float*)from)); }
109
template<> EIGEN_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::
complex
<float>* from) { EIGEN_DEBUG_UNALIGNED_LOAD return Packet2cf(ploadu<Packet4f>((const float*)from)); }
111
template<> EIGEN_STRONG_INLINE Packet2cf ploaddup<Packet2cf>(const std::
complex
<float>* from) { return pset1<Packet2cf>(*from); }
113
template<> EIGEN_STRONG_INLINE void pstore <std::
complex
<float> >(std::
complex
<float> * to, const Packet2cf& from) { EIGEN_DEBUG_ALIGNED_STORE pstore((float*)to, from.v); }
114
template<> EIGEN_STRONG_INLINE void pstoreu<std::
complex
<float> >(std::
complex
<float> * to, const Packet2cf& from) { EIGEN_DEBUG_UNALIGNED_STORE pstoreu((float*)to, from.v);
[
all
...]
/bionic/libm/upstream-freebsd/lib/msun/src/
s_ctanhf.c
28
* Hyperbolic tangent of a
complex
argument z. See s_ctanh.c for details.
34
#include <
complex
.h>
39
float
complex
40
ctanhf(float
complex
z)
77
float
complex
78
ctanf(float
complex
z)
/external/clang/test/Sema/
complex-init-list.c
4
// of a
complex
number individually using an initialization list. Basically,
5
// if you have an explicit init list for a
complex
number that contains two
10
// a
complex
number at the moment besides setting the components with
16
// real->
complex
and
complex
->real conversions; as-is, it's way too easy
28
_Complex int valid2 = { 1, 2 }; // expected-warning {{
complex
integer}} expected-warning {{specifying real and imaginary components is an extension}}
/external/eigen/Eigen/src/Core/arch/SSE/
Complex.h
25
template<> struct packet_traits<std::
complex
<float> > : default_packet_traits
46
template<> struct unpacket_traits<Packet2cf> { typedef std::
complex
<float> type; enum {size=2}; };
84
template<> EIGEN_STRONG_INLINE Packet2cf pload <Packet2cf>(const std::
complex
<float>* from) { EIGEN_DEBUG_ALIGNED_LOAD return Packet2cf(pload<Packet4f>(&real_ref(*from))); }
85
template<> EIGEN_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::
complex
<float>* from) { EIGEN_DEBUG_UNALIGNED_LOAD return Packet2cf(ploadu<Packet4f>(&real_ref(*from))); }
87
template<> EIGEN_STRONG_INLINE Packet2cf pset1<Packet2cf>(const std::
complex
<float>& from)
99
template<> EIGEN_STRONG_INLINE Packet2cf ploaddup<Packet2cf>(const std::
complex
<float>* from) { return pset1<Packet2cf>(*from); }
101
template<> EIGEN_STRONG_INLINE void pstore <std::
complex
<float> >(std::
complex
<float> * to, const Packet2cf& from) { EIGEN_DEBUG_ALIGNED_STORE pstore(&real_ref(*to), from.v); }
102
template<> EIGEN_STRONG_INLINE void pstoreu<std::
complex
<float> >(std::
complex
<float> * to, const Packet2cf& from) { EIGEN_DEBUG_UNALIGNED_STORE pstoreu(&real_ref(*to), from.v (…)
[
all
...]
/external/harfbuzz_ng/src/
hb-ot-shape-complex-sea-machine.hh
2
#line 1 "hb-ot-shape-
complex
-sea-machine.rl"
35
#line 36 "hb-ot-shape-
complex
-sea-machine.hh.tmp"
92
#line 36 "hb-ot-shape-
complex
-sea-machine.rl"
96
#line 67 "hb-ot-shape-
complex
-sea-machine.rl"
116
#line 117 "hb-ot-shape-
complex
-sea-machine.hh.tmp"
124
#line 88 "hb-ot-shape-
complex
-sea-machine.rl"
133
#line 134 "hb-ot-shape-
complex
-sea-machine.hh.tmp"
147
#line 148 "hb-ot-shape-
complex
-sea-machine.hh.tmp"
170
#line 63 "hb-ot-shape-
complex
-sea-machine.rl"
174
#line 61 "hb-ot-shape-
complex
-sea-machine.rl
[
all
...]
/development/samples/Support7Demos/src/com/example/android/supportv7/view/
_index.html
15
<dd>Demonstrates how to use GridLayout to create a more
complex
19
<dd>Demonstrates how to use GridLayout to create a more
complex
/external/clang/test/CodeGen/
complex-init-list.c
4
// of a
complex
number individually using an initialization list. (There is a
5
// extensive description and test in test/Sema/
complex
-init-list.c.)
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/complex/
IComplexPropertyEditor.java
11
package org.eclipse.wb.internal.core.model.property.editor.
complex
;
24
* @return sub-properties of given
complex
property.
/external/eigen/doc/snippets/
EigenSolver_EigenSolver_MatrixType.cpp
8
complex
<double> lambda = es.eigenvalues()[0];
12
cout << "... and A * v = " << endl << A.cast<
complex
<double> >() * v << endl << endl;
/external/eigen/Eigen/src/Core/arch/AltiVec/
Complex.h
33
template<> struct packet_traits<std::
complex
<float> > : default_packet_traits
54
template<> struct unpacket_traits<Packet2cf> { typedef std::
complex
<float> type; enum {size=2}; };
56
template<> EIGEN_STRONG_INLINE Packet2cf pset1<Packet2cf>(const std::
complex
<float>& from)
97
template<> EIGEN_STRONG_INLINE Packet2cf pload <Packet2cf>(const std::
complex
<float>* from) { EIGEN_DEBUG_ALIGNED_LOAD return Packet2cf(pload<Packet4f>((const float*)from)); }
98
template<> EIGEN_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::
complex
<float>* from) { EIGEN_DEBUG_UNALIGNED_LOAD return Packet2cf(ploadu<Packet4f>((const float*)from)); }
100
template<> EIGEN_STRONG_INLINE Packet2cf ploaddup<Packet2cf>(const std::
complex
<float>* from)
105
template<> EIGEN_STRONG_INLINE void pstore <std::
complex
<float> >(std::
complex
<float> * to, const Packet2cf& from) { EIGEN_DEBUG_ALIGNED_STORE pstore((float*)to, from.v); }
106
template<> EIGEN_STRONG_INLINE void pstoreu<std::
complex
<float> >(std::
complex
<float> * to, const Packet2cf& from) { EIGEN_DEBUG_UNALIGNED_STORE pstoreu((float*)to, from.v);
[
all
...]
/external/iptables/extensions/
libipt_realm.man
1
This matches the routing realm. Routing realms are used in
complex
routing
/external/speex/libspeex/
fftwrap.h
46
/** Forward (real to half-
complex
) transform */
49
/** Backward (half-
complex
to real) transform */
52
/** Forward (real to half-
complex
) transform of float data */
55
/** Backward (half-
complex
to real) transform of float data */
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.member.ops/
assignment_scalar.pass.cpp
10
// <
complex
>
12
//
complex
& operator= (const T&);
14
#include <
complex
>
21
std::
complex
<T> c;
divide_equal_scalar.pass.cpp
10
// <
complex
>
12
//
complex
& operator/=(const T& rhs);
14
#include <
complex
>
21
std::
complex
<T> c(1);
minus_equal_scalar.pass.cpp
10
// <
complex
>
12
//
complex
& operator-=(const T& rhs);
14
#include <
complex
>
21
std::
complex
<T> c;
plus_equal_scalar.pass.cpp
10
// <
complex
>
12
//
complex
& operator+=(const T& rhs);
14
#include <
complex
>
21
std::
complex
<T> c;
times_equal_scalar.pass.cpp
10
// <
complex
>
12
//
complex
& operator*=(const T& rhs);
14
#include <
complex
>
21
std::
complex
<T> c(1);
Completed in 502 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>