Searched refs:g1 (Results 1 - 25 of 142) sorted by relevance

123456

/external/clang/test/CodeGen/
H A D2008-07-21-mixed-var-fn-decl.c4 int f1(), g1; variable
7 // CHECK: @g1 = common global i32 0, align 4
H A Dcomplex.c22 _Complex double g1, g2; variable
27 g1 = g1 + g2;
28 g1 = g1 - g2;
29 g1 = g1 * g2;
30 g1 = +-~g1;
32 double Gr = __real g1;
[all...]
H A Ddarwin-string-literals.c17 const void *g1 = __builtin___CFStringMakeConstantString("string1"); variable
H A Dpr12251.c4 enum e1 g1(enum e1 *x) { function
8 // CHECK: define i32 @g1
H A Dprivate-extern.c3 // RUN: grep '@g1 = hidden constant i32 1' %t
6 __private_extern__ const int g1 = 1; variable
H A Dconst-arithmetic.c3 // 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
7 void *g1[] = {g0 + -1, g0 + -23 }; variable
H A DPR3613-static-decl.c16 void *g1 = f0; variable
H A Dalias.c9 extern int g1;
10 extern int g1 __attribute((alias("g0")));
11 // CHECKBASIC: @g1 = alias i32* @g0
/external/llvm/test/MC/ELF/
H A Dcomdat.s43 // Test that g1 and g2 are local, but g3 is an undefined global.
46 // CHECK-NEXT: (('st_name', 0x00000001) # 'g1'
75 .section .foo,"axG",@progbits,g1,comdat
76 g1: label
79 .section .bar,"axG",@progbits,g1,comdat
/external/v8/test/mjsunit/compiler/
H A Dcontrol-flow-1.js50 function g1(x, y) { function
54 assertTrue(g1(0, 0));
55 assertFalse(g1(0, 1))
H A Dsimple-global-access.js29 var g1 = 42; variable
34 function f1() { this.x = this.y = this.z = g1; }
35 function f2() { this.x = g1; this.y = g2; this.z = g3; }
H A Dregress-or.js31 if (!x || g1()) {
37 function g1() { try { return 1; } finally {} } function
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp16.cpp4 template<class X1> void g1(T, X1);
13 template<class T> template<class X1> void A<T>::g1(T, X1) { } function in class:A
16 template<> template<class X1> void A<int>::g1(int, X1);
20 void A<int>::g1(int, char); // X1 deduced as char
/external/clang/test/SemaCXX/
H A Dtypeid.cpp19 void g1(X &x) { function
H A Dwarn-unused-result.cpp8 S g1() __attribute__((warn_unused_result));
14 g1(); // expected-warning {{ignoring return value}}
19 (void)g1();
25 g1().t();
30 S s1 = g1();
33 const S &s4 = g1();
/external/clang/test/CXX/expr/
H A Dp10-0x.cpp3 volatile int g1; variable
16 __extension__ g1; local
/external/clang/test/PCH/
H A Dstmts.c9 int g1(int x) { return f1(x); } function
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp2.cpp17 float g1(float);
21 A<float(float)> a1 = f0(g1);
/external/clang/test/Sema/
H A Dattr-deprecated-message.c23 int g1; variable
30 return g1 + g2; // expected-warning {{'g2' is deprecated: Please avoid g2}}
H A Dfp16-sema.c23 extern __fp16 *g1 (void);
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp13.cpp5 void g1(int = ([i]{ return i; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
/external/clang/test/CodeGenCXX/
H A Dmember-function-pointer-calls.cpp13 int g1() { function
/external/clang/test/SemaTemplate/
H A Ddefault-arguments-cxx0x.cpp24 void g1() { function
/external/valgrind/main/tests/
H A Dos_test.c32 int a1, a2, a3, g1, g2, g3; // 'a' = actual; 'g' = given local
42 if (sscanf(min_version, "%d.%d.%d", &g1, &g2, &g3) != 3) return False;
45 // printf("given %d %d %d\n", g1, g2,g3);
47 if (a1 > g1) return True;
48 if (a1 < g1) return False;
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp3-0x.cpp8 auto g1() noexcept(noexcept(f(ptr))) -> decltype(f(this->ptr));
13 int &ir = a.g1();
15 static_assert(!noexcept(a.g1()), "exception-specification failure");
33 auto g1() noexcept(noexcept(f(ptr))) -> decltype(f((*this).ptr));
39 int &ir = ci.g1();
41 static_assert(!noexcept(ci.g1()), "exception-specification failure");

Completed in 1533 milliseconds

123456