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

1 2 3 4 5 6 7 8 910

  /external/clang/test/CodeGen/
darwin-string-literals.c 18 const void *g2 = __builtin___CFStringMakeConstantString("hello \u2192 \u2603 \u2190 world"); variable
const-arithmetic.c 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
8 void *g2[] = {g0 - 1, g0 - 23 }; variable
extern-inline.c 18 int g2(void) {return f2(0,1);} function
  /external/clang/test/CXX/expr/
p10-0x.cpp 6 } g2; variable in typeref:struct:S
20 g2.a;
  /external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
p3-0x.cpp 13 int &g2(const int &);
14 float &g2(int &&);
15 int &j2 = g2(i);
16 float &k2 = g2(f1());
17 float &l2 = g2(f2());
  /external/clang/test/Sema/
warn-missing-prototypes.c 12 static int g2();
14 int g2(int x) { return x; } function
attr-deprecated-message.c 24 int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2' declared here}} variable
30 return g1 + g2; // expected-warning {{'g2' is deprecated: Please avoid g2}}
align-x86.c 9 long long g2; variable
10 short chk1[__alignof__(g2) == 8 ? 1 : -1];
private-extern.c 10 static int g2; variable
11 __private_extern__ int g2; variable
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
a_utctm.c 250 #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') macro
256 offset = g2(s->data+13)*60+g2(s->data+15);
266 year = g2(s->data);
270 return_cmp(g2(s->data+2) - 1, tm->tm_mon);
271 return_cmp(g2(s->data+4), tm->tm_mday);
272 return_cmp(g2(s->data+6), tm->tm_hour);
273 return_cmp(g2(s->data+8), tm->tm_min);
274 return_cmp(g2(s->data+10), tm->tm_sec);
275 #undef g2 macro
    [all...]
  /external/clang/test/SemaCXX/
warn-unused-result.cpp 9 S *g2() __attribute__((warn_unused_result));
15 g2(); // expected-warning {{ignoring return value}}
20 (void)g2();
26 g2()->t();
31 S *s2 = g2();
borland-extensions.cpp 16 template<typename T> T g2(T (__pascal * const )(int, int)) { return 0; }
30 f = g2(gi2);
  /external/openssl/crypto/asn1/
a_utctm.c 250 #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') macro
256 offset = g2(s->data+13)*60+g2(s->data+15);
266 year = g2(s->data);
270 return_cmp(g2(s->data+2) - 1, tm->tm_mon);
271 return_cmp(g2(s->data+4), tm->tm_mday);
272 return_cmp(g2(s->data+6), tm->tm_hour);
273 return_cmp(g2(s->data+8), tm->tm_min);
274 return_cmp(g2(s->data+10), tm->tm_sec);
275 #undef g2 macro
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string.hash/
strings.pass.cpp 34 std::string g2 = "1234567891"; local
36 T s2(g2.begin(), g2.end());
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p16.cpp 5 template<class X2> void g2(T, X2);
23 void A<int>::g2<char>(int, char); // X2 specified as char
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p13.cpp 6 void g2(int = ([i]{ return 0; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
  /external/clang/test/CodeGenCXX/
member-function-pointer-calls.cpp 20 int g2() { function
  /external/llvm/test/MC/ELF/
comdat.s 49 // Test that g1 and g2 are local, but g3 is an undefined global.
61 // CHECK-NEXT: Name: g2 (4)
88 .section .zed,"axG",@progbits,g2,comdat
  /external/lzma/CPP/Common/
MyGuidDef.h 25 inline int operator==(REFGUID g1, REFGUID g2)
28 if (((unsigned char *)&g1)[i] != ((unsigned char *)&g2)[i])
32 inline int operator!=(REFGUID g1, REFGUID g2) { return !(g1 == g2); }
  /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);
49 if (a2 > g2) return True;
50 if (a2 < g2) return False;
  /external/chromium_org/third_party/mesa/src/src/mesa/sparc/
xform.S 22 .register %g2, #scratch
30 ld [%o0 + V4F_FLAGS], %g2
33 or %g2, VEC_SIZE_1, %g2
35 st %g2, [%o0 + V4F_FLAGS]
37 ld [%o0 + V4F_FLAGS], %g2
40 or %g2, VEC_SIZE_2, %g2
42 st %g2, [%o0 + V4F_FLAGS]
44 ld [%o0 + V4F_FLAGS], %g2
    [all...]
  /external/mesa3d/src/mesa/sparc/
xform.S 22 .register %g2, #scratch
30 ld [%o0 + V4F_FLAGS], %g2
33 or %g2, VEC_SIZE_1, %g2
35 st %g2, [%o0 + V4F_FLAGS]
37 ld [%o0 + V4F_FLAGS], %g2
40 or %g2, VEC_SIZE_2, %g2
42 st %g2, [%o0 + V4F_FLAGS]
44 ld [%o0 + V4F_FLAGS], %g2
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp 50 void g2(const X2&);
57 g2(X2()); // expected-warning{{C++98 requires an accessible copy constructor for class 'X2' when binding a reference to a temporary; was private}}
p5-cxx0x-no-extra-copy.cpp 41 void g2(const X2&);
47 g2(X2());
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TestCollector.java 46 Geometry g2 = new Geometry("quad", new Quad(2,2)); local
50 List<Geometry> firstOne = TriangleCollector.gatherTris(new Geometry[]{ g, g2 }, tris);

Completed in 991 milliseconds

1 2 3 4 5 6 7 8 910