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

1 2 3

  /external/clang/test/SemaCXX/
function-pointer-arguments.cpp 14 int(*g5)(const int, int) = f2;
31 int (*g5)(int) = f1;
return-noreturn.cpp 73 int g5(int x) { function in namespace:abort_struct_complex_cfgs
member-expr.cpp 151 int g5() { function in namespace:PR9025
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p13.cpp 9 void g5(int = ([]{ return sizeof i; })());
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp 53 void g5(const X5&);
60 g5(X5()); // Generates a warning in the default argument.
  /external/clang/test/Sema/
align-x86.c 13 unsigned long long g5; variable
14 short chk1[__alignof__(g5) == 8 ? 1 : -1];
private-extern.c 19 __private_extern__ int g5; // expected-note{{previous declaration}} variable
20 static int g5; // expected-error{{static declaration of 'g5' follows non-static declaration}} variable
attr-weak.c 8 void __attribute__((weak_import)) g5(void) { function
constant-builtins.c 11 long double g5 = __builtin_infl(); variable
no-documentation-warn-tagdecl-specifier.c 71 enum e5* g5(void);
attr-alias-elf.c 18 void f5() __attribute__((alias("g5")));
20 void g5() {} function
  /external/clang/test/CodeGen/
bitfield-2.c 213 struct s5 g5 = { 0xdeadbeef, 0xdeadbeef }; variable in typeref:struct:s5
229 struct s5 g5 = { 0xdeadbeef, 0xdeadbeef, 0xdeadbeef }; local
231 res ^= g5.f0 ^ g5.f1 ^ g5.f2;
232 res ^= f5_load(&g5) ^ f5_store(&g5) ^ f5_reload(&g5);
233 res ^= g5.f0 ^ g5.f1 ^ g5.f2
    [all...]
const-init.c 41 // CHECK: @g5 = global { i32, i32 } zeroinitializer
42 _Complex int g5 = (2 + 3i) == (5 + 7i); variable
regparm-struct.c 43 void g5() { function
tbaa-class.cpp 101 uint32_t g5(StructA *A, StructB *B, uint64_t count) { function
tbaa.cpp 95 uint32_t g5(StructA *A, StructB *B, uint64_t count) { function
  /external/linux-tools-perf/perf-3.12.0/arch/sparc/lib/
memcpy.S 236 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, g4, g5)
    [all...]
  /external/clang/test/CXX/except/except.spec/
p5-virtual.cpp 52 virtual void g5() throw(A); // expected-note {{overridden virtual function is here}}
88 virtual void g5() throw(P); // expected-error {{exception specification of overriding function is more lax}}
  /external/chromium_org/third_party/mesa/src/src/mesa/sparc/
sparc_clip.S 107 ld [%i0 + 0x0c], %g5 ! LSU Group
110 addcc %g5, %g5, %g5 ! IEU1 Group
114 subcc %g5, %g4, %g0 ! IEU1 Group
119 subcc %g5, %g4, %g0 ! IEU1 Group
124 subcc %g5, %g4, %g0 ! IEU1 Group
194 1: ld [%i0 + 0x0c], %g5 ! LSU Group
196 addcc %g5, %g5, %g5 ! IEU1 Grou
    [all...]
  /external/mesa3d/src/mesa/sparc/
sparc_clip.S 107 ld [%i0 + 0x0c], %g5 ! LSU Group
110 addcc %g5, %g5, %g5 ! IEU1 Group
114 subcc %g5, %g4, %g0 ! IEU1 Group
119 subcc %g5, %g4, %g0 ! IEU1 Group
124 subcc %g5, %g4, %g0 ! IEU1 Group
194 1: ld [%i0 + 0x0c], %g5 ! LSU Group
196 addcc %g5, %g5, %g5 ! IEU1 Grou
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p3-0x.cpp 37 auto g5() noexcept(noexcept(this->f(ptr))) -> decltype(this->f(ptr));
48 int &ir3 = ci.g5();
56 static_assert(!noexcept(ci.g5()), "exception-specification failure");
  /external/clang/test/SemaTemplate/
current-instantiation.cpp 55 void g5(T&); // expected-note{{previous}}
56 void g5(typename X0::U_type&);
57 void g5(typename X0::X1::my_T_type&); // expected-error{{redecl}}
128 void g5(T&); // expected-note{{previous}}
129 void g5(typename X0::U_type&);
130 void g5(typename X0::X2::my_T_type&); // expected-error{{redecl}}
  /external/clang/test/CodeGenCXX/
pr12251.cpp 45 e5 g5(e5 *x) { function
  /external/chromium_org/v8/test/mjsunit/harmony/
generators-objects.js 40 function* g5(l) { "use strict"; yield 1; for (let x in l) { yield x; } }
46 g5(["foo"]);
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-param-util-generated.h     [all...]

Completed in 590 milliseconds

1 2 3