Searched refs:g2 (Results 1 - 25 of 223) sorted by relevance

123456789

/external/clang/test/Modules/
H A Ddeclare-use4.cpp8 const int g2 = j; variable
H A Ddeclare-use3.cpp4 const int g2 = g1 + e + f + aux_i; variable
H A Dstrict-decluse.cpp9 const int g2 = g1 + e + f + aux_i; variable
H A Ddeclare-use1.cpp9 const int g2 = g1 + e + f + aux_i + sub; variable
/external/compiler-rt/test/profile/Inputs/
H A Dinstrprof-shared-lib.c2 int g2 = 1; variable
8 g2++;
H A Dinstrprof-shared-main.c1 extern int g1, g2;
10 if (g2 - g1 == 280001)
/external/clang/test/CodeGen/
H A Ddarwin-string-literals.c18 const void *g2 = __builtin___CFStringMakeConstantString("hello \u2192 \u2603 \u2190 world"); variable
H A Dconst-arithmetic.c4 // CHECK: @g2 = global [2 x i8*] [i8* getelementptr (i8, i8* getelementptr inbounds ([0 x %struct.anon], [0 x %struct.anon]* @g0, i32 0, i32 0, i32 0), i64 -2), i8* getelementptr (i8, i8* getelementptr inbounds ([0 x %struct.anon], [0 x %struct.anon]* @g0, i32 0, i32 0, i32 0), i64 -46)], align 16
8 void *g2[] = {g0 - 1, g0 - 23 }; variable
H A Dasm-attrs.c21 } g2; variable in typeref:struct:S
32 __asm__ ("foo8" : "=r"(g2) : "r"(a));
/external/llvm/test/MC/ELF/
H A Dweak-diff.s22 g2: label
24 .quad g2 - f2
25 .quad f2 - g2
/external/llvm/test/MC/Sparc/
H A Dsparc-alu-instructions.s6 ! CHECK: add %g1, %g2, %g3 ! encoding: [0x86,0x00,0x40,0x02]
7 add %g1, %g2, %g3
13 ! CHECK: addcc %g1, %g2, %g3 ! encoding: [0x86,0x80,0x40,0x02]
14 addcc %g1, %g2, %g3
16 ! CHECK: addxcc %g1, %g2, %g3 ! encoding: [0x86,0xc0,0x40,0x02]
17 addxcc %g1, %g2, %g3
19 ! CHECK: udiv %g1, %g2, %g3 ! encoding: [0x86,0x70,0x40,0x02]
20 udiv %g1, %g2, %g3
22 ! CHECK: sdiv %g1, %g2, %g3 ! encoding: [0x86,0x78,0x40,0x02]
23 sdiv %g1, %g2,
[all...]
/external/clang/test/CXX/expr/
H A Dp10-0x.cpp6 } g2; variable in typeref:struct:S
20 g2.a;
/external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
H A Dp3-0x.cpp13 int &g2(const int &);
14 float &g2(int &&);
15 int &j2 = g2(i);
16 float &k2 = g2(f1());
17 float &l2 = g2(f2());
/external/ltp/testcases/kernel/syscalls/syscall/
H A Dsyscall01.c65 gid_t g1, g2; local
68 g2 = syscall(SYS_getgid);
70 if (g1 == g2) {
74 g1, g2);
/external/clang/test/Sema/
H A Dwarn-missing-prototypes.c12 static int g2();
14 int g2(int x) { return x; } function
H A Dattr-deprecated-message.c24 int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2' has been explicitly marked deprecated here}} variable
30 return g1 + g2; // expected-warning {{'g2' is deprecated: Please avoid g2}}
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/
H A DGLVTypeBParameters.java18 protected final BigInteger g1, g2; field in class:GLVTypeBParameters
22 BigInteger g2, int bits)
34 this.g2 = g2;
91 return g2;
21 GLVTypeBParameters(BigInteger beta, BigInteger lambda, BigInteger[] v1, BigInteger[] v2, BigInteger g1, BigInteger g2, int bits) argument
/external/libcxx/test/std/experimental/string.view/string.view.hash/
H A Dstring_view.pass.cpp36 // std::string g2 = "1234567891";
39 char_type g2 [ 10 ]; local
41 g1[i] = g2[9-i] = '0' + i;
43 T s2(g2, 10);
/external/libcxx/test/std/strings/basic.string.hash/
H A Dstrings.pass.cpp34 std::string g2 = "1234567891"; local
36 T s2(g2.begin(), g2.end());
/external/llvm/test/MC/COFF/
H A Dcross-section-relative.s11 .globl g2 # @g2
13 g2: label
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/runtime/
H A Defirtlib.c128 INT32 *g1, *g2, r; local
135 g2 = (INT32 *) Guid2;
137 r = g1[0] - g2[0];
138 r |= g1[1] - g2[1];
139 r |= g1[2] - g2[2];
140 r |= g1[3] - g2[3];
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp16.cpp5 template<class X2> void g2(T, X2);
23 void A<int>::g2<char>(int, char); // X2 specified as char
/external/clang/test/SemaCXX/
H A Dfunction-pointer-arguments.cpp11 int(*g2)(const int, int) = f1;
23 const int (*g2)(int, int) = f1;
/external/strace/tests/
H A Dsetgroups.c95 GID_TYPE *const g2 = tail_alloc(sizeof(*g2) * 2); local
119 g2[0] = -2;
120 g2[1] = -3;
121 rc = syscall(SYSCALL_NR, 2, g2);
124 printuid(g2[0]);
126 printuid(g2[1]);
129 rc = syscall(SYSCALL_NR, 3, g2);
132 printuid(g2[0]);
134 printuid(g2[
[all...]
/external/strace/tests-m32/
H A Dsetgroups.c95 GID_TYPE *const g2 = tail_alloc(sizeof(*g2) * 2); local
119 g2[0] = -2;
120 g2[1] = -3;
121 rc = syscall(SYSCALL_NR, 2, g2);
124 printuid(g2[0]);
126 printuid(g2[1]);
129 rc = syscall(SYSCALL_NR, 3, g2);
132 printuid(g2[0]);
134 printuid(g2[
[all...]

Completed in 630 milliseconds

123456789