OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:imaginary
(Results
1 - 25
of
465
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/CodeGen/
imaginary.c
4
double _Imaginary foo; // expected-error {{
imaginary
types are not supported}}
/external/clang/test/Sema/
complex-init-list.c
20
_Complex float valid1 = { 1.0f, 2.0f }; // expected-warning {{specifying real and
imaginary
components is an extension}}
28
_Complex int valid2 = { 1, 2 }; // expected-warning {{complex integer}} expected-warning {{specifying real and
imaginary
components is an extension}}
29
struct teststruct valid3 = { { 1.0f, 2.0f} }; // expected-warning {{specifying real and
imaginary
components is an extension}}
30
_Complex float valid4[2] = { {1.0f, 1.0f}, {1.0f, 1.0f} }; // expected-warning 2 {{specifying real and
imaginary
components is an extension}}
32
_Complex float valid5 = {1.0f, 1.0fi}; // expected-warning {{
imaginary
constants}} expected-warning {{specifying real and
imaginary
components is an extension}}
42
_Complex float sizetest1[] = { {1.0f, 1.0f}, {1.0f, 1.0f} }; // expected-warning 2 {{specifying real and
imaginary
components is an extension}}
44
_Complex float sizetest2[] = { 1.0f, 1.0f, {1.0f, 1.0f} }; // expected-warning {{specifying real and
imaginary
components is an extension}}
48
_Complex float x = 2 + (_Complex float) { 1, 2 }; // expected-warning {{specifying real and
imaginary
components is an extension}}
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
CHANGES.txt
9
* Text of
imaginary
nodes in tree rewrite mode weren't using NSStrings causing a runtime exception
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
Lang.g
8
tokens {DECL;} // an
imaginary
node
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenConstants.as
5
/**
imaginary
tree navigation type; traverse "get child" link */
7
/**
imaginary
tree navigation type; finish with a child list */
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Token.js
14
/**
imaginary
tree navigation type; traverse "get child" link */
16
/**
imaginary
tree navigation type; finish with a child list */
/external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialSolver.h
59
* i.e. the real part of the complex roots that have an
imaginary
part which
65
* \param[in] absImaginaryThreshold : the maximum bound of the
imaginary
part of a complex
197
* A real root is defined as the real part of a complex root with absolute
imaginary
202
* the root with smallest absolute
imaginary
part is returned instead.
206
* \param[in] absImaginaryThreshold : threshold on the absolute
imaginary
part to decide
220
* A real root is defined as the real part of a complex root with absolute
imaginary
225
* the root with smallest absolute
imaginary
part is returned instead.
229
* \param[in] absImaginaryThreshold : threshold on the absolute
imaginary
part to decide
243
* A real root is defined as the real part of a complex root with absolute
imaginary
248
* the root with smallest absolute
imaginary
part is returned instead
[
all
...]
/external/ceres-solver/internal/ceres/
polynomial_solver.h
48
// Likewise, if
imaginary
is not NULL,
imaginary
parts will be returned in it.
51
Vector*
imaginary
);
polynomial_solver.cc
123
Vector*
imaginary
) {
149
if (
imaginary
!= NULL) {
150
imaginary
->resize(1);
151
imaginary
->setZero();
176
if (
imaginary
!= NULL) {
177
*
imaginary
= solver.eigenvalues().imag();
polynomial_solver_test.cc
87
//
imaginary
argument to FindPolynomialRoots.
94
Vector
imaginary
;
local
100
Vector* const imaginary_ptr = use_imaginary ? &
imaginary
: NULL;
110
EXPECT_EQ(
imaginary
.size(), N);
112
ExpectArraysClose(N,
imaginary
.data(), zeros.data(), epsilon);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTreeAdaptor.cs
58
* Tell me how to create a token for use with
imaginary
token nodes.
59
* For example, there is probably no input symbol associated with
imaginary
75
* Tell me how to create a token for use with
imaginary
token nodes.
76
* For example, there is probably no input symbol associated with
imaginary
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenTypes.cs
40
/** <summary>
imaginary
tree navigation type; traverse "get child" link</summary> */
42
/** <summary>
imaginary
tree navigation type; finish with a child list</summary> */
/external/webkit/Source/WebCore/platform/audio/
FFTFrame.h
110
// Interleaves the planar real and
imaginary
data and returns a
135
// Both the real and
imaginary
data are stored here.
137
// The
imaginary
data is stored after the padding and is 16-byte aligned (if m_data itself is aligned).
138
// The reason we don't use separate arrays for real and
imaginary
is because the FFTW plans are shared
139
// between FFTFrame instances and require that the real and
imaginary
data pointers be the same distance apart.
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Token.pm
15
#
imaginary
tree navigation type; traverse "get child" link
19
#
imaginary
tree navigation type; finish with a child list
/external/antlr/antlr-3.4/runtime/Python/antlr3/
constants.py
48
#
imaginary
tree navigation type; traverse "get child" link
51
#
imaginary
tree navigation type; finish with a child list
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/
TParser.g
35
// Some
imaginary
tokens for tree rewrites
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTreeAdaptor.as
34
/** Tell me how to create a token for use with
imaginary
token nodes.
35
* For example, there is probably no input symbol associated with
imaginary
46
/** Tell me how to create a token for use with
imaginary
token nodes.
47
* For example, there is probably no input symbol associated with
imaginary
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTreeAdaptor.cs
72
* Tell me how to create a token for use with
imaginary
token nodes.
73
* For example, there is probably no input symbol associated with
imaginary
88
* Tell me how to create a token for use with
imaginary
token nodes.
89
* For example, there is probably no input symbol associated with
imaginary
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTreeAdaptor.java
59
/** Tell me how to create a token for use with
imaginary
token nodes.
60
* For example, there is probably no input symbol associated with
imaginary
71
/** Tell me how to create a token for use with
imaginary
token nodes.
72
* For example, there is probably no input symbol associated with
imaginary
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTreeAdaptor.js
34
/** Tell me how to create a token for use with
imaginary
token nodes.
35
* For example, there is probably no input symbol associated with
imaginary
42
* Tell me how to create a token for use with
imaginary
token nodes.
43
* For example, there is probably no input symbol associated with
imaginary
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs
58
/** <summary>
imaginary
tree navigation type; traverse "get child" link</summary> */
60
/** <summary>
imaginary
tree navigation type; finish with a child list</summary> */
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Token.java
33
/**
imaginary
tree navigation type; traverse "get child" link */
35
/**
imaginary
tree navigation type; finish with a child list */
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
constants.rb
68
#
Imaginary
tree-navigation token type indicating the ascent after moving through the
72
#
Imaginary
tree-navigation token type indicating a descent into the children of a node
/external/webrtc/src/modules/audio_processing/aec/
aec_core.h
37
// as long arrays of float, all the real parts followed by all the
imaginary
39
// is better than two arrays (one for the real parts and one for the
imaginary
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
complex.h
42
/* Narrowest
imaginary
unit. This depends on the floating-point
48
XXX Once we have the
imaginary
support switch this to _Imaginary_I. */
Completed in 1223 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>