Searched defs:g0 (Results 1 - 25 of 69) sorted by relevance

123

/external/clang/test/CodeGen/
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 Ddarwin-string-literals.c16 const char *g0 = "string0"; variable
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 Dlinkage-redecl.c14 void g0() { function
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 Dattr-used.c3 // RUN: grep '@llvm.used = .*@g0' %t
8 int g0 __attribute__((used)); variable
H A Dalias.c6 int g0; variable
7 // CHECKBASIC-DAG: @g0 = common global i32 0
8 // CHECKASM-DAG: .comm g0,4,4
30 extern int g1 __attribute((alias("g0")));
31 // CHECKBASIC-DAG: @g1 = alias i32, i32* @g0
33 // CHECKASM-DAG: g1 = g0
H A Dbitfield.c18 int g0(void) { function
19 // CHECK-LABEL: @g0()
21 // PATH-LABEL: @g0()
H A Ddebug-info.c17 struct s0 { struct s0 *p; } g0; variable in typeref:struct:s0
/external/clang/test/Frontend/
H A Dast-codegen.c8 // CHECK: @g0 = common global i32 0, align 4
9 int g0; variable
/external/clang/test/PCH/
H A Dcxx1z-init-statement.cpp8 void g0(void) { function
H A Dstmts.c8 void g0(void) { f0(5); } function
H A Dva_arg.c9 char *g0(char** argv, int argc) { return argv[argc]; } function
12 f(g0, argv, 1, 2, 3);
/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/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 Dattr-noreturn.c14 int g0 __attribute__((noreturn)); // expected-warning {{'noreturn' only applies to function types; type here is 'int'}} variable
H A Dconstant-builtins.c6 float g0 = __builtin_huge_val(); variable
H A Dattr-unused.c10 int g0 __attribute__((unused)); variable
/external/clang/test/SemaTemplate/
H A Dackermann.cpp38 int g0[Ackermann<3, 4>::value == 125 ? 1 : -1]; variable
/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/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A Dcopy_assign.pass.cpp47 int g0() { return 0; } function
94 Func f = g0;
97 assert(*f.target<int(*)()>() == g0);
/external/clang/test/CXX/temp/temp.spec/
H A Dno-body.cpp51 template<typename T> void g0(T) { } function
58 template void g0(int) { } // expected-error {{function cannot be defined in an explicit instantiation; if this declaration is meant to be a function definition, remove the 'template' keyword}} function in namespace:noargs_body
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
H A Dswap.pass.cpp55 int g0() { return 0; } function
137 std::function<int()> f1 = g0;
141 assert(*f1.target<int (*)()>() == g0);

Completed in 649 milliseconds

123