Home
last modified time | relevance | path

Searched refs:g1 (Results 1 – 25 of 173) sorted by relevance

1234567

/external/clang/test/CodeGen/
Dcomplex.c22 _Complex double g1, g2; variable
27 g1 = g1 + g2; in test3()
28 g1 = g1 - g2; in test3()
29 g1 = g1 * g2; in test3()
30 g1 = +-~g1; in test3()
32 double Gr = __real g1; in test3()
37 cf /= g1; in test3()
38 g1 = g1 + D; in test3()
39 g1 = D + g1; in test3()
82 g1++; in t6()
[all …]
Dbitfield-2.c82 struct s1 g1 = { 0xdeadbeef, 0xdeadbeef }; variable
99 struct s1 g1 = { 0xdeadbeef, 0xdeadbeef }; in test_1() local
101 res ^= g1.f0 ^ g1.f1; in test_1()
102 res ^= f1_load(&g1) ^ f1_store(&g1) ^ f1_reload(&g1); in test_1()
103 res ^= g1.f0 ^ g1.f1; in test_1()
/external/openssl/crypto/bn/asm/
Dsparcv9a-mont.pl178 ld [%o3+4],%g1 ! bp[0]
181 sllx %g1,32,%g1
184 or %g1,%o0,%o0
324 srlx %o3,16,%g1 ! 34-bit carry
420 addcc %g1,%o0,%o0
422 srlx %o3,16,%g1 ! 34-bit carry
425 add %g1,1,%g1
476 addcc %g1,%o0,%o0
478 srlx %o3,16,%g1 ! 34-bit carry
480 add %g1,1,%g1
[all …]
Dsparcv8.S63 rd %y,%g1
65 addx %g1,0,%g1
68 addx %g1,0,%o5
74 rd %y,%g1
76 addx %g1,0,%g1
79 addx %g1,0,%o5
85 rd %y,%g1
87 addx %g1,0,%g1
90 addx %g1,0,%o5
95 rd %y,%g1
[all …]
/external/clang/test/SemaCUDA/
Dkernel-call.cu5 __global__ void g1(int x) {} in g1() function
8 g1<<<arg, arg>>>(1); in t1()
15 g1<<<1, 1>>>(42); in main()
16 g1(42); // expected-error {{call to global function g1 not configured}} in main()
17g1<<<1>>>(42); // expected-error {{too few execution configuration arguments to kernel function ca… in main()
18g1<<<1, 1, 0, 0, 0>>>(42); // expected-error {{too many execution configuration arguments to kerne… in main()
/external/llvm/test/CodeGen/Mips/
Dglobal-address.ll9 @g1 = external global i32
15 ; PIC-O32: lw ${{[0-9]+}}, %got(g1)
18 ; STATIC-O32: lui $[[R2:[0-9]+]], %hi(g1)
19 ; STATIC-O32: lw ${{[0-9]+}}, %lo(g1)($[[R2]])
23 ; PIC-N32: lw ${{[0-9]+}}, %got_disp(g1)
26 ; STATIC-N32: lui $[[R2:[0-9]+]], %hi(g1)
27 ; STATIC-N32: lw ${{[0-9]+}}, %lo(g1)($[[R2]])
31 ; PIC-N64: ld ${{[0-9]+}}, %got_disp(g1)
34 ; STATIC-N64: ld ${{[0-9]+}}, %got_disp(g1)
38 %1 = load i32* @g1, align 4
[all …]
Dfpbr.ll15 tail call void (...)* @g1() nounwind
24 declare void @g1(...)
38 tail call void (...)* @g1() nounwind
57 tail call void (...)* @g1() nounwind
76 tail call void (...)* @g1() nounwind
95 tail call void (...)* @g1() nounwind
114 tail call void (...)* @g1() nounwind
Dinlineasmmemop.ll3 @g1 = external global i32
14 ; CHECK: lw $[[T1:[0-9]+]], %got(g1)($gp)
20 store i32 %0, i32* @g1, align 4
Dzeroreg.ll3 @g1 = external global i32
10 %0 = load i32* @g1, align 4, !tbaa !0
20 %0 = load i32* @g1, align 4, !tbaa !0
/external/clang/test/SemaCXX/
Dwarn-unused-result.cpp8 S g1() __attribute__((warn_unused_result));
14 g1(); // expected-warning {{ignoring return value}} in test()
19 (void)g1(); in test()
25 g1().t(); in test()
30 S s1 = g1(); in test()
33 const S &s4 = g1(); in test()
/external/dropbear/libtomcrypt/src/ciphers/
Dskipjack.c114 unsigned char g1,g2; in g_func() local
116 g1 = (w >> 8) & 255; g2 = w & 255; in g_func()
117 g1 ^= sbox[g2^key[*kp]]; *kp = keystep[*kp]; in g_func()
118 g2 ^= sbox[g1^key[*kp]]; *kp = keystep[*kp]; in g_func()
119 g1 ^= sbox[g2^key[*kp]]; *kp = keystep[*kp]; in g_func()
120 g2 ^= sbox[g1^key[*kp]]; *kp = keystep[*kp]; in g_func()
121 return ((unsigned)g1<<8)|(unsigned)g2; in g_func()
126 unsigned char g1,g2; in ig_func() local
128 g1 = (w >> 8) & 255; g2 = w & 255; in ig_func()
129 *kp = ikeystep[*kp]; g2 ^= sbox[g1^key[*kp]]; in ig_func()
[all …]
/external/webkit/Source/WebCore/svg/
DSVGFontElement.cpp135 static bool matches(const String& u1, const String& g1, const String& u2, const String& g2, const S… in matches() argument
138 && !stringMatchesGlyphName(g1, kerningPair.glyphName1)) in matches()
148 …AndGlyphs(KerningPairVector& kerningPairs, const String& u1, const String& g1, const String& u2, c… in kerningForPairOfStringsAndGlyphs() argument
153 if (matches(u1, g1, u2, g2, *it)) in kerningForPairOfStringsAndGlyphs()
160 float SVGFontElement::horizontalKerningForPairOfStringsAndGlyphs(const String& u1, const String& g1 in horizontalKerningForPairOfStringsAndGlyphs() argument
165 return kerningForPairOfStringsAndGlyphs(m_horizontalKerningPairs, u1, g1, u2, g2); in horizontalKerningForPairOfStringsAndGlyphs()
168 float SVGFontElement::verticalKerningForPairOfStringsAndGlyphs(const String& u1, const String& g1, … in verticalKerningForPairOfStringsAndGlyphs() argument
173 return kerningForPairOfStringsAndGlyphs(m_verticalKerningPairs, u1, g1, u2, g2); in verticalKerningForPairOfStringsAndGlyphs()
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
Dp3-0x.cpp8 auto g1() noexcept(noexcept(f(ptr))) -> decltype(f(this->ptr));
13 int &ir = a.g1(); in testA()
15 static_assert(!noexcept(a.g1()), "exception-specification failure"); in testA()
33 auto g1() noexcept(noexcept(f(ptr))) -> decltype(f((*this).ptr));
39 int &ir = ci.g1(); in test_C()
41 static_assert(!noexcept(ci.g1()), "exception-specification failure"); in test_C()
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
Dp16.cpp4 template<class X1> void g1(T, X1);
13 template<class T> template<class X1> void A<T>::g1(T, X1) { } in g1() function in A
16 template<> template<class X1> void A<int>::g1(int, X1);
20 void A<int>::g1(int, char); // X1 deduced as char
/external/v8/test/mjsunit/compiler/
Dassignment-deopt.js131 var g1 = {x:0}; variable
134 g1.x = 42;
135 assertEquals(43, assign10(g1));
136 assertEquals(43, g1.x);
139 g1.x = 42;
140 assertEquals(43, assign10(g1));
141 assertEquals(43, g1.x);
Dcount-deopt.js162 var g1 = {x:0}; variable
165 g1.x = 42;
166 assertEquals(42, inc10(g1));
167 assertEquals(43, g1.x);
170 g1.x = 42;
171 assertEquals(42, inc10(g1));
172 assertEquals(43, g1.x);
Dcontrol-flow-1.js50 function g1(x, y) { function
54 assertTrue(g1(0, 0));
55 assertFalse(g1(0, 1));
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; }
/external/llvm/test/CodeGen/X86/
Dlea-recursion.ll12 @g1 = weak global [1000 x i32] zeroinitializer, align 32 ; <[1000 x i32]*> [#uses=7]
17 %tmp8 = load i32* getelementptr ([1000 x i32]* @g1, i32 0, i32 0) ; <i32> [#uses=1]
21 %tmp8.1 = load i32* getelementptr ([1000 x i32]* @g1, i32 0, i32 1) ; <i32> [#uses=1]
25 %tmp8.2 = load i32* getelementptr ([1000 x i32]* @g1, i32 0, i32 2) ; <i32> [#uses=1]
29 %tmp8.3 = load i32* getelementptr ([1000 x i32]* @g1, i32 0, i32 3) ; <i32> [#uses=1]
33 %tmp8.4 = load i32* getelementptr ([1000 x i32]* @g1, i32 0, i32 4) ; <i32> [#uses=1]
37 %tmp8.5 = load i32* getelementptr ([1000 x i32]* @g1, i32 0, i32 5) ; <i32> [#uses=1]
41 %tmp8.6 = load i32* getelementptr ([1000 x i32]* @g1, i32 0, i32 6) ; <i32> [#uses=1]
/external/libffi/src/sparc/
Dv8.S121 ld [%g2+FFI_TRAMPOLINE_SIZE], %g1
122 ld [%g1+4], %g1
123 sll %g1, 3, %g1
124 add %g1, STACKFRAME, %g1
125 ! %g1 == STACKFRAME + 8*nargs
126 neg %g1
127 save %sp, %g1, %sp
/external/valgrind/main/tests/
Dos_test.c32 int a1, a2, a3, g1, g2, g3; // 'a' = actual; 'g' = given in matches_version() local
42 if (sscanf(min_version, "%d.%d.%d", &g1, &g2, &g3) != 3) return False; in matches_version()
47 if (a1 > g1) return True; in matches_version()
48 if (a1 < g1) return False; in matches_version()
/external/llvm/test/MC/ELF/
Dcomdat.s75 .section .foo,"axG",@progbits,g1,comdat
76 g1: label
79 .section .bar,"axG",@progbits,g1,comdat
/external/clang/test/CodeGenCXX/
Dtemplate-instantiation.cpp177 friend void g1(S s) {} in g1() function
185 g1(s1); g1(s2); g1(s3); in test()
/external/llvm/test/Analysis/GlobalsModRef/
Dindirect-global.ll16 %g1 = load i32** @G ; <i32*> [#uses=2]
17 %h1 = load i32* %g1 ; <i32> [#uses=1]
20 %h2 = load i32* %g1 ; <i32> [#uses=1]
/external/clang/test/SemaTemplate/
Dcurrent-instantiation.cpp39 void g1(T&); // expected-note{{previous}}
40 void g1(typename X0::U_type&);
41 void g1(typename X0<T, U>::T_type&); // expected-error{{redecl}}
112 void g1(T&); // expected-note{{previous}}
113 void g1(typename X0::U_type&);
114 void g1(typename X0<T*, U*>::T_type&); // expected-error{{redecl}}

1234567