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

1 2 3 4 5 6 7

  /external/clang/test/CodeGen/
2008-07-21-mixed-var-fn-decl.c 4 int f1(), g1; variable
7 // CHECK: @g1 = common global i32 0, align 4
complex.c 22 _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...]
darwin-string-literals.c 17 const void *g1 = __builtin___CFStringMakeConstantString("string1"); variable
pr12251.c 4 enum e1 g1(enum e1 *x) { function
8 // CHECK: define i32 @g1
private-extern.c 3 // RUN: grep '@g1 = hidden constant i32 1' %t
6 __private_extern__ const int g1 = 1; variable
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
7 void *g1[] = {g0 + -1, g0 + -23 }; variable
PR3613-static-decl.c 16 void *g1 = f0; variable
alias.c 9 extern int g1;
10 extern int g1 __attribute((alias("g0")));
11 // CHECKBASIC: @g1 = alias i32* @g0
  /external/llvm/test/MC/ELF/
comdat.s 43 // 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/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p16.cpp 4 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/CXX/expr/
p10-0x.cpp 3 volatile int g1; variable
16 __extension__ g1; local
  /external/clang/test/PCH/
stmts.c 9 int g1(int x) { return f1(x); } function
  /external/clang/test/SemaCXX/
typeid.cpp 19 void g1(X &x) { function
warn-unused-result.cpp 8 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();
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
pre_big.cpp 173 const Word16 *g1; /* Pointer to correct gammma1 vector */ local
179 g1 = gamma1;
183 g1 = gamma1_12k2;
198 Weight_Ai(&A_t[aOffset], g1, Ap1);
spreproc.cpp 192 const Word16 *g1; /* Pointer to correct gammma1 vector */ local
197 g1 = gamma1_12k2;
201 g1 = gamma1;
205 Weight_Ai(A, g1, Ap1);
  /libcore/luni/src/test/java/libcore/java/util/
OldGregorianCalendarTest.java 42 GregorianCalendar g1 = new GregorianCalendar(TimeZone.getTimeZone("Europe/Moscow")); local
43 g1.clear();
44 g1.set(2006, -9, 29, 02, 50, 00); // transition from DST
45 g1.setLenient(false);
48 g1.getTimeInMillis();
75 GregorianCalendar g1 = new GregorianCalendar( local
77 g1.clear();
78 g1.set(2008, Calendar.SEPTEMBER, 23, 18, 0, 0);
79 assertNotSame(g.hashCode(), g1.hashCode());
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string.hash/
strings.pass.cpp 33 std::string g1 = "1234567890"; local
35 T s1(g1.begin(), g1.end());
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p2.cpp 17 float g1(float);
21 A<float(float)> a1 = f0(g1);
  /external/clang/test/Sema/
attr-deprecated-message.c 23 int g1; variable
30 return g1 + g2; // expected-warning {{'g2' is deprecated: Please avoid g2}}
fp16-sema.c 23 extern __fp16 *g1 (void);
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p13.cpp 5 void g1(int = ([i]{ return i; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
  /external/clang/test/CodeGenCXX/
member-function-pointer-calls.cpp 13 int g1() { function
  /external/clang/test/SemaTemplate/
default-arguments-cxx0x.cpp 24 void g1() { function
  /external/valgrind/main/tests/
os_test.c 32 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;

Completed in 687 milliseconds

1 2 3 4 5 6 7