Searched refs:g3 (Results 1 - 25 of 112) sorted by relevance

12345

/external/clang/test/CodeGen/
H A Ddarwin-string-literals.c19 const void *g3 = __builtin___CFStringMakeConstantString("testâ„¢"); variable
/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, %g3
[all...]
H A Dsparcv9-instructions.s5 ! V8-NEXT: addc %g2, %g1, %g3
6 ! V9: addx %g2, %g1, %g3 ! encoding: [0x86,0x40,0x80,0x01]
7 addc %g2, %g1, %g3
10 ! V8-NEXT: addccc %g1, %g2, %g3
11 ! V9: addxcc %g1, %g2, %g3 ! encoding: [0x86,0xc0,0x40,0x02]
12 addccc %g1, %g2, %g3
15 ! V8-NEXT: subc %g2, %g1, %g3
16 ! V9: subx %g2, %g1, %g3 ! encoding: [0x86,0x60,0x80,0x01]
17 subc %g2, %g1, %g3
20 ! V8-NEXT: subccc %g1, %g2, %g3
[all...]
H A Dsparc-relocations.s20 ! CHECK: or %g1, %lo(sym), %g3 ! encoding: [0x86,0x10,0b011000AA,A]
22 or %g1, %lo(sym), %g3
32 ! CHECK: or %g1, %m44(sym), %g3 ! encoding: [0x86,0x10,0b011000AA,A]
34 or %g1, %m44(sym), %g3
36 ! CHECK: or %g1, %l44(sym), %g3 ! encoding: [0x86,0x10,0b0110AAAA,A]
38 or %g1, %l44(sym), %g3
44 ! CHECK: or %g1, %hm(sym), %g3 ! encoding: [0x86,0x10,0b011000AA,A]
46 or %g1, %hm(sym), %g3
/external/chromium_org/third_party/mesa/src/src/mesa/sparc/
H A Dsparc_clip.S29 .register %g3, #scratch
82 ldub [%i4], %g3
83 sll %g3, 8, %g3
84 or %g2, %g3, %g2
86 ld [%i1 + V4F_FLAGS], %g3
87 or %g3, VEC_SIZE_4, %g3
88 st %g3, [%i1 + V4F_FLAGS]
89 mov 3, %g3
[all...]
H A Dnorm.S5 .register %g3, #scratch
36 LDPTR [%o4 + V4F_START], %g3 ! g3 = 'out' dest->start
90 st %f3, [%g3 + 0x00] ! out[i][0] = tx * scale
92 st %f5, [%g3 + 0x04] ! out[i][1] = ty * scale
94 st %f7, [%g3 + 0x08] ! out[i][2] = tz * scale
98 add %g3, 0x10, %g3 ! advance out vector pointer
146 st %f3, [%g3 + 0x00] ! out[i][0] = tx * len
148 st %f5, [%g3
[all...]
/external/mesa3d/src/mesa/sparc/
H A Dsparc_clip.S29 .register %g3, #scratch
82 ldub [%i4], %g3
83 sll %g3, 8, %g3
84 or %g2, %g3, %g2
86 ld [%i1 + V4F_FLAGS], %g3
87 or %g3, VEC_SIZE_4, %g3
88 st %g3, [%i1 + V4F_FLAGS]
89 mov 3, %g3
[all...]
H A Dnorm.S5 .register %g3, #scratch
36 LDPTR [%o4 + V4F_START], %g3 ! g3 = 'out' dest->start
90 st %f3, [%g3 + 0x00] ! out[i][0] = tx * scale
92 st %f5, [%g3 + 0x04] ! out[i][1] = ty * scale
94 st %f7, [%g3 + 0x08] ! out[i][2] = tz * scale
98 add %g3, 0x10, %g3 ! advance out vector pointer
146 st %f3, [%g3 + 0x00] ! out[i][0] = tx * len
148 st %f5, [%g3
[all...]
/external/llvm/test/MC/ELF/
H A Dcomdat.s49 // Test that g1 and g2 are local, but g3 is an undefined global.
71 // CHECK: Name: g3
91 .section .baz,"axG",@progbits,g3,comdat
92 .long g3
/external/chromium_org/v8/test/mjsunit/
H A Domit-constant-mapcheck.js57 var g3 = { a:2, b:9, c:1 }
60 g3.a = v;
61 return g3.a;
68 delete g3.c;
70 assertEquals({a:7, b:9}, g3);
/external/clang/test/SemaCXX/
H A Dwarn-unused-result.cpp10 S &g3() __attribute__((warn_unused_result));
16 g3(); // expected-warning {{ignoring return value}}
21 (void)g3();
27 g3().t();
32 S &s3 = g3();
H A Dfunction-pointer-arguments.cpp12 int(*g3)(volatile int, int) = f1;
26 int (*g3)(char, int) = f1;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dsimple-global-access.js31 var g3 = 44; variable
35 function f2() { this.x = g1; this.y = g2; this.z = g3; }
/external/linux-tools-perf/perf-3.12.0/arch/sparc/lib/
H A Dmemset.S68 and %o1, 0xff, %g3
69 sll %g3, 8, %g2
70 or %g3, %g2, %g3
71 sll %g3, 16, %g2
72 or %g3, %g2, %g3
78 EX(stb %g3, [%o0], sub %o1, 0)
82 EX(stb %g3, [%o0 + 0x01], sub %o1, 1)
84 EX(stb %g3, [
[all...]
H A Dmemcpy.S236 MOVE_BIGCHUNK(o1, o0, 0x00, o2, o3, o4, o5, g2, g3, g4, g5)
237 MOVE_BIGCHUNK(o1, o0, 0x20, o2, o3, o4, o5, g2, g3, g4, g5)
238 MOVE_BIGCHUNK(o1, o0, 0x40, o2, o3, o4, o5, g2, g3, g4, g5)
239 MOVE_BIGCHUNK(o1, o0, 0x60, o2, o3, o4, o5, g2, g3, g4, g5)
260 MOVE_LASTCHUNK(o1, o0, 0x60, g2, g3, g4, g5)
261 MOVE_LASTCHUNK(o1, o0, 0x50, g2, g3, g4, g5)
262 MOVE_LASTCHUNK(o1, o0, 0x40, g2, g3, g4, g5)
263 MOVE_LASTCHUNK(o1, o0, 0x30, g2, g3, g4, g5)
264 MOVE_LASTCHUNK(o1, o0, 0x20, g2, g3, g4, g5)
265 MOVE_LASTCHUNK(o1, o0, 0x10, g2, g3, g
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp13.cpp7 void g3(int = ([=]{ return i; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-cxx03-extra-copy.cpp51 void g3(const X3&);
58 g3(X3()); // expected-warning{{no viable constructor copying parameter of type 'X3'}}
H A Dp5-cxx0x-no-extra-copy.cpp42 void g3(const X3&);
48 g3(X3());
/external/clang/test/Sema/
H A Dalign-x86.c17 _Complex double g3; variable
18 short chk1[__alignof__(g3) == 8 ? 1 : -1];
H A Dprivate-extern.c13 int g3; // expected-note{{previous definition}} variable
14 static int g3; // expected-error{{static declaration of 'g3' follows non-static declaration}} variable
H A Dattr-weak.c6 int g3 __attribute__((weak_import)); // expected-warning {{'weak_import' attribute cannot be specified on a definition}} variable
H A Dconstant-builtins.c9 float g3 = __builtin_inf(); variable
/external/libcxx/test/utilities/function.objects/func.require/
H A Dinvoke.pass.cpp33 Array<char, 3>::type& g3() &&;
46 static_assert(sizeof(std::__invoke(&Type::g3, std::declval<Type &&>())) == 3, "");
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.cons/
H A Dcopy.pass.cpp62 char g1, g2, g3, p1, p3; local
64 t.setg(&g1, &g2, &g3);
69 wchar_t g1, g2, g3, p1, p3; local
71 t.setg(&g1, &g2, &g3);
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
H A Dassign.pass.cpp65 char g1, g2, g3, p1, p3; local
67 t.setg(&g1, &g2, &g3);
73 wchar_t g1, g2, g3, p1, p3; local
75 t.setg(&g1, &g2, &g3);

Completed in 584 milliseconds

12345