OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_complex
(Results
26 - 50
of
146
) sorted by null
1
2
3
4
5
6
/external/clang/test/Sema/
const-eval.c
31
_Complex
float g16 = (1.0f + 1.0fi);
54
EVAL_EXPR(26, (
_Complex
double)0 ? -1 : 1)
55
EVAL_EXPR(27, (
_Complex
int)0 ? -1 : 1)
56
EVAL_EXPR(28, (
_Complex
double)1 ? 1 : -1)
57
EVAL_EXPR(29, (
_Complex
int)1 ? 1 : -1)
65
EVAL_EXPR(30, (int)(
_Complex
float)((1<<30)-1) == (1<<30) ? 1 : -1)
86
double
_Complex
P;
87
float
_Complex
P2 = 3.3f + P;
merge-decls.c
30
_Complex
int g1; // expected-note {{previous definition is here}}
31
_Complex
float g1; // expected-error {{redefinition of 'g1'}}
cast.c
24
typedef
_Complex
int CInt;
25
typedef
_Complex
long CLong;
26
typedef
_Complex
float CFloat;
27
typedef
_Complex
double CDouble;
complex-int.c
18
switch (arr) { // expected-error{{statement requires expression of integer type ('
_Complex
int' invalid)}}
45
void test3(
_Complex
int *x) {
49
void test4(
_Complex
float *x) {
53
void test5(
_Complex
int *x) {
attr-mode.c
22
typedef
_Complex
double c32 __attribute((mode(SC)));
24
typedef
_Complex
float c64 __attribute((mode(DC)));
25
typedef
_Complex
float c80 __attribute((mode(XC)));
align-x86.c
12
_Complex
double g3;
14
short chk2[__alignof__(
_Complex
double) == 8 ? 1 : -1];
/external/clang/test/CodeGenCXX/
member-init-struct.cpp
10
_Complex
float c;
conditional-gnu-ext.cpp
27
_Complex
int getComplex(
_Complex
int val) {
34
_Complex
int cmplx() {
35
_Complex
int cond;
36
_Complex
int rhs;
reference-cast.cpp
146
_Complex
double get_complex_double();
149
const
_Complex
float &f1() {
156
return (const
_Complex
float&)get_complex_double();
163
return static_cast<const
_Complex
float&>(get_complex_double());
references.cpp
23
void f(const
_Complex
int&);
30
_Complex
int& complex_int_reference_return();
64
_Complex
int a = 10i;
72
struct { const
_Complex
int &a; } agg = { 10i };
/external/clang/test/CodeGen/
arm-arguments.c
135
_Complex
char f22(void) {}
136
_Complex
short f23(void) {}
137
_Complex
int f24(void) {}
138
_Complex
long long f25(void) {}
139
_Complex
float f26(void) {}
140
_Complex
double f27(void) {}
144
struct s28 {
_Complex
char f0; };
149
struct s29 {
_Complex
short f0; };
154
struct s30 {
_Complex
int f0; };
compound-literal.c
6
//
_Complex
double * x = &(
_Complex
double){1.0f};
11
_Complex
double * x = &(
_Complex
double){1.0f};
const-init.c
30
_Complex
double g1x = 1.0f;
32
_Complex
double g1y = 1.0fi;
34
_Complex
char g1 = (char) 1 + (char) 10 * 1i;
36
_Complex
int g2 = 1 + 10i;
38
_Complex
float g3 = 1.0 + 10.0i;
40
_Complex
double g4 = 1.0 + 10.0i;
42
_Complex
int g5 = (2 + 3i) == (5 + 7i);
44
_Complex
double g6 = (2.0 + 3.0i) * (5.0 + 7.0i);
volatile-2.c
10
extern volatile
_Complex
float test0_v;
21
extern volatile
_Complex
float test1_v;
exprs.c
85
union f4_y {int x;
_Complex
float y;};
86
_Complex
float f4() {return ((union f4_y)(
_Complex
float)2.0).y;}
/external/clang/test/PCH/
types.h
9
typedef
_Complex
float Cfloat;
/frameworks/compile/libbcc/lib/ExecutionEngine/
RuntimeStub.h
26
extern double
_Complex
__divdc3(double, double, double, double);
33
extern float
_Complex
__divsc3(float, float, float, float);
54
extern double
_Complex
__muldc3(double, double, double, double);
60
extern float
_Complex
__mulsc3(float, float, float, float);
/external/clang/include/clang/AST/
OperationKinds.h
205
/// float ->
_Complex
float
211
///
_Complex
long double -> long double
219
///
_Complex
float ->
_Complex
double
223
///
_Complex
float ->
_Complex
int
229
/// long ->
_Complex
long
234
///
_Complex
short -> short
242
///
_Complex
char ->
_Complex
long lon
[
all
...]
/external/clang/test/FixIt/
fixit.c
21
// CHECK:
_Complex
double cd;
22
_Complex
cd;
/frameworks/compile/libbcc/runtime/lib/
divxc3.c
22
long double
_Complex
34
long double
_Complex
z;
/frameworks/compile/libbcc/runtime/lib/ppc/
multc3.c
28
long double
_Complex
92
long double
_Complex
z;
/external/stlport/stlport/
complex
36
# include <stl/
_complex
.h>
/ndk/sources/cxx-stl/stlport/stlport/
complex
36
# include <stl/
_complex
.h>
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/
complex
36
# include <stl/
_complex
.h>
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/
complex
36
# include <stl/
_complex
.h>
Completed in 434 milliseconds
1
2
3
4
5
6