Searched refs:g0 (Results 1 - 25 of 102) sorted by relevance

12345

/external/clang/test/CodeGen/
H A Dconst-arithmetic.c3 // CHECK: @g1 = global [2 x i8*] [i8* getelementptr (i8, i8* getelementptr inbounds ([0 x %struct.anon], [0 x %struct.anon]* @g0, i32 0, i32 0, i32 0), i64 -2), i8* getelementptr (i8, i8* getelementptr inbounds ([0 x %struct.anon], [0 x %struct.anon]* @g0, i32 0, i32 0, i32 0), i64 -46)], align 16
4 // CHECK: @g2 = global [2 x i8*] [i8* getelementptr (i8, i8* getelementptr inbounds ([0 x %struct.anon], [0 x %struct.anon]* @g0, i32 0, i32 0, i32 0), i64 -2), i8* getelementptr (i8, i8* getelementptr inbounds ([0 x %struct.anon], [0 x %struct.anon]* @g0, i32 0, i32 0, i32 0), i64 -46)], align 16
6 extern struct { unsigned char a, b; } g0[];
7 void *g1[] = {g0 + -1, g0 + -23 };
8 void *g2[] = {g0 - 1, g0 - 23 };
H A Dprivate-extern.c3 // CHECK-DAG: @g0 = external hidden constant i32
6 __private_extern__ const int g0; variable
10 return g0;
H A DPR3613-static-decl.c2 // RUN: grep '@g0 = internal global %.truct.s0 { i32 3 }' %t | count 1
8 static struct s0 g0; variable in typeref:struct:s0
11 return g0.a;
14 static struct s0 g0 = {3}; variable in typeref:struct:s0
H A D2008-07-21-mixed-var-fn-decl.c3 int g0, f0(); variable
6 // CHECK: @g0 = common global i32 0, align 4
H A D2008-07-31-asm-labels.c4 // RUN: not grep 'g0' %t
30 extern int g0 asm("_renamed");
32 return g0;
H A Dbitfield-assign.c6 to store back). Also check that our g0 pattern is good. */
9 // RUN: grep "@g0" %t | count 4
14 // RUN: not grep "@g0" %t
22 int g0();
26 if ((s.f0 = 3) != -1) g0();
31 if ((s.f1 = 3) != 1) g0();
36 if ((s.f2 = 3) != 3) g0();
H A Ddarwin-string-literals.c16 const char *g0 = "string0"; variable
H A Dasm-attrs.c17 int g0, g1; variable
28 __asm__ ("foo4" : "=r"(g1) : "r"(a), "m"(g0));
29 __asm__ ("foo5" : "=r"(g1) : "r"(a), "Q"(g0));
30 __asm__ ("foo6" : "=r"(g1), "=m"(g0) : "r"(a));
H A Dlinkage-redecl.c14 void g0() { function
H A Dattr-used.c3 // RUN: grep '@llvm.used = .*@g0' %t
8 int g0 __attribute__((used)); variable
/external/clang/test/Frontend/
H A Dast-codegen.c8 // CHECK: @g0 = common global i32 0, align 4
9 int g0; variable
/external/clang/test/CodeGenObjC/
H A Dattr-strong.c6 struct s0 * __attribute__((objc_gc(strong))) g0; variable in typeref:struct:s0
8 g0->a = 0;
/external/clang/test/CodeCompletion/
H A Dcall.c7 g0(0, 0);
/external/clang/test/PCH/
H A Dfunctions.h9 void g0(int *);
H A Dva_arg.c9 char *g0(char** argv, int argc) { return argv[argc]; } function
12 f(g0, argv, 1, 2, 3);
H A Dcxx1z-init-statement.cpp8 void g0(void) { function
H A Dfunctions.c19 g0(y); // expected-warning{{incompatible pointer types passing 'float *' to parameter of type 'int *'}}
21 g0(x);
H A Dstmts.c8 void g0(void) { f0(5); } function
/external/clang/test/Sema/
H A Dattr-disable-tail-calls.c11 int g0 __attribute__((disable_tail_calls)); // expected-warning {{'disable_tail_calls' attribute only applies to functions and methods}} variable
H A Dattr-notail.c12 int g0 __attribute__((not_tail_called)); // expected-warning {{'not_tail_called' attribute only applies to functions}} variable
H A Dfunction-redecl.c4 void g0(int, int);
5 void g0(); // expected-note{{previous declaration is here}} expected-note{{'g0' declared here}}
8 g0(1, 2, 3); // expected-error{{too many arguments to function call}}
11 void g0(int); // expected-error{{conflicting types for 'g0'}}
/external/libldac/src/
H A Dmdct_fixp_ldac.c35 INT32 g0, g1, g2, g3; local
52 g0 = mul_rsftrnd_ldac(-p_x[3*nsmpl/2-1-i], p_w[nsmpl/2+i], LDAC_Q_MDCT_WIN-shift);
54 a_work[p_p[i]] = g0 + g1;
56 g0 = mul_rsftrnd_ldac(p_x[i], p_w[i], LDAC_Q_MDCT_WIN-shift);
58 a_work[p_p[nsmpl/2+i]] = g0 + g1;
63 g0 = mul_lsftrnd_ldac(-p_x[3*nsmpl/2-1-i], p_w[nsmpl/2+i], LDAC_Q_MDCT_WIN-shift);
65 a_work[p_p[i]] = g0 + g1;
67 g0 = mul_lsftrnd_ldac(p_x[i], p_w[i], LDAC_Q_MDCT_WIN-shift);
69 a_work[p_p[nsmpl/2+i]] = g0 + g1;
84 g0
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
H A Dp6.cpp5 void g0();
16 template<int X, int Y> void A0<X, Y>::g0() { } function in class:A0
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp2.cpp16 int g0(int, int);
20 A<int(int, int)> a0 = f0(g0);
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.spec.mfunc/
H A Dp1-neg.cpp15 void g0();

Completed in 438 milliseconds

12345