HomeSort by relevance Sort by last modified time
    Searched refs:g0 (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/clang/test/CodeGen/
const-arithmetic.c 3 // CHECK: @g1 = global [2 x i8*] [i8* getelementptr (i8* getelementptr inbounds ([0 x %struct.anon]* @g0, i32 0, i32 0, i32 0), i64 -2), i8* getelementptr (i8* getelementptr inbounds ([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* getelementptr inbounds ([0 x %struct.anon]* @g0, i32 0, i32 0, i32 0), i64 -2), i8* getelementptr (i8* getelementptr inbounds ([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 };
private-extern.c 2 // RUN: grep '@g0 = external hidden constant i32' %t
5 __private_extern__ const int g0; variable
9 return g0;
PR3613-static-decl.c 2 // 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
2008-07-21-mixed-var-fn-decl.c 3 int g0, f0(); variable
6 // CHECK: @g0 = common global i32 0, align 4
2008-07-31-asm-labels.c 4 // RUN: grep 'g0' %t | count 0
30 extern int g0 asm("_renamed");
32 return g0;
bitfield-assign.c 6 to store back). Also check that our g0 pattern is good. */
9 // RUN: grep "@g0" %t | count 4
14 // RUN: grep "@g0" %t | count 0
22 int g0();
26 if ((s.f0 = 3) != -1) g0();
31 if ((s.f1 = 3) != 1) g0();
36 if ((s.f2 = 3) != 3) g0();
darwin-string-literals.c 16 const char *g0 = "string0"; variable
linkage-redecl.c 7 void g0() { function
attr-used.c 2 // RUN: grep '@llvm.used = .*@g0' %t
7 int g0 __attribute__((used)); variable
alias.c 2 // RUN: grep '@g0 = common global i32 0' %t
4 // RUN: grep '@g1 = alias i32\* @g0' %t
11 int g0; variable
13 extern int g1 __attribute((alias("g0")));
  /external/clang/test/Frontend/
ast-codegen.c 7 // CHECK: @g0 = common global i32 0, align 4
8 int g0; variable
  /external/clang/test/CodeGenObjC/
attr-strong.c 6 struct s0 * __attribute__((objc_gc(strong))) g0; variable in typeref:struct:s0
8 g0->a = 0;
  /external/clang/test/PCH/
va_arg.c 8 char *g0(char** argv, int argc) { return argv[argc]; } function
11 f(g0, argv, 1, 2, 3);
functions.h 9 void g0(int *);
functions.c 18 g0(y); // expected-warning{{incompatible pointer types passing 'float *' to parameter of type 'int *'}}
19 g0(x);
stmts.c 8 void g0(void) { f0(5); } function
  /external/clang/test/CodeCompletion/
call.c 7 g0(0, 0);
  /external/clang/test/Sema/
merge-decls.c 27 Vf2 g0; // expected-note {{previous definition is here}} variable
28 Vi2 g0; // expected-error {{redefinition of 'g0'}} variable
constant-builtins.c 5 float g0 = __builtin_huge_val(); variable
attr-weak.c 3 extern int g0 __attribute__((weak));
function-redecl.c 4 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/openssl/crypto/bn/asm/
sparcv8.S 55 andcc %o2,-4,%g0
101 andcc %o2,-4,%g0
168 andcc %o2,-4,%g0
202 andcc %o2,-4,%g0
260 andcc %o2,-4,%g0
363 andcc %o3,-4,%g0
367 addcc %g0,0,%g0 ! clear carry flag
394 addx %g0,0,%g1
395 andcc %o3,-4,%g0
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p6.cpp 5 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/
p2.cpp 15 int g0(int, int);
19 A<int(int, int)> a0 = f0(g0);
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.spec.mfunc/
p1-neg.cpp 15 void g0();

Completed in 347 milliseconds

1 2 3