HomeSort by relevance Sort by last modified time
    Searched defs:g0 (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/clang/test/CodeGen/
2008-07-21-mixed-var-fn-decl.c 3 int g0, f0(); variable
6 // CHECK: @g0 = common global i32 0, align 4
attr-used.c 2 // RUN: grep '@llvm.used = .*@g0' %t
7 int g0 __attribute__((used)); variable
darwin-string-literals.c 16 const char *g0 = "string0"; variable
linkage-redecl.c 14 void g0() { function
private-extern.c 3 // CHECK-DAG: @g0 = external hidden constant i32
6 __private_extern__ const int g0; variable
10 return g0;
PR3613-static-decl.c 2 // RUN: grep '@g0 = internal global %.truct.s0 { i32 3 }' %t | count 1
8 static struct s0 g0; variable in typeref:struct:s0
11 return g0.a;
14 static struct s0 g0 = {3}; variable in typeref:struct:s0
asm-attrs.c 17 int g0, g1; variable
28 __asm__ ("foo4" : "=r"(g1) : "r"(a), "m"(g0));
29 __asm__ ("foo5" : "=r"(g1) : "r"(a), "Q"(g0));
30 __asm__ ("foo6" : "=r"(g1), "=m"(g0) : "r"(a));
alias.c 6 int g0; variable
7 // CHECKBASIC-DAG: @g0 = common global i32 0
8 // CHECKASM-DAG: .comm g0,4,4
30 extern int g1 __attribute((alias("g0")));
31 // CHECKBASIC-DAG: @g1 = alias i32, i32* @g0
33 // CHECKASM-DAG: g1 = g0
  /external/clang/test/Frontend/
ast-codegen.c 8 // CHECK: @g0 = common global i32 0, align 4
9 int g0; variable
  /external/clang/test/Sema/
attr-notail.c 12 int g0 __attribute__((not_tail_called)); // expected-warning {{'not_tail_called' attribute only applies to functions}} variable
attr-disable-tail-calls.c 11 int g0 __attribute__((disable_tail_calls)); // expected-warning {{'disable_tail_calls' attribute only applies to functions and methods}} variable
attr-noreturn.c 14 int g0 __attribute__((noreturn)); // expected-warning {{'noreturn' only applies to function types; type here is 'int'}} variable
  /external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p6.cpp 5 void g0();
16 template<int X, int Y> void A0<X, Y>::g0() { } function in class:A0
  /external/clang/test/CodeGenObjC/
attr-strong.c 6 struct s0 * __attribute__((objc_gc(strong))) g0; variable in typeref:struct:s0
8 g0->a = 0;
  /external/clang/test/PCH/
va_arg.c 9 char *g0(char** argv, int argc) { return argv[argc]; } function
12 f(g0, argv, 1, 2, 3);
stmts.c 8 void g0(void) { f0(5); } function
  /external/clang/test/SemaTemplate/
ackermann.cpp 38 int g0[Ackermann<3, 4>::value == 125 ? 1 : -1]; variable
  /external/v8/test/mjsunit/compiler/
control-flow-1.js 35 function g0(x, y) { function
39 assertTrue(g0(0, 0));
40 assertFalse(g0(0, 1));
  /external/v8/test/mjsunit/es6/
tail-call-simple.js 127 function g0(n){ function
134 var g_bound = g0.bind({});
  /external/v8/test/mjsunit/es8/
syntactic-tail-call-simple.js 127 function g0(n){ function
134 var g_bound = g0.bind({});
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
agc2_amr_wb.cpp 125 int16 gain_in, gain_out, g0; local
161 g0 = 0;
170 * g0 = sqrt(gain_in/gain_out)
178 g0 = amr_wb_round(shl_int32(s, 9));
184 sig_out[i] = extract_h(shl_int32(fxp_mul_16by16(sig_out[i], g0), 3));
  /prebuilts/go/darwin-x86/src/runtime/
sys_windows_386.s 106 // do we need to switch to the g0 stack?
110 JEQ g0
112 // switch to the g0 stack
116 // make it look like mstart called us on g0, to stop traceback
127 g0: label
365 // Execute call on m->g0 stack, in case we are not actually
390 // executing on m->g0 already
395 // Switch to m->g0 stack and back.
sys_windows_amd64.s 138 // do we need to switch to the g0 stack?
142 JEQ g0
144 // switch to g0 stack
148 // make it look like mstart called us on g0, to stop traceback
161 g0: label
389 // Execute call on m->g0 stack, in case we are not actually
414 // executing on m->g0 already
419 // Switch to m->g0 stack and back.
  /prebuilts/go/linux-x86/src/runtime/
sys_windows_386.s 106 // do we need to switch to the g0 stack?
110 JEQ g0
112 // switch to the g0 stack
116 // make it look like mstart called us on g0, to stop traceback
127 g0: label
365 // Execute call on m->g0 stack, in case we are not actually
390 // executing on m->g0 already
395 // Switch to m->g0 stack and back.
sys_windows_amd64.s 138 // do we need to switch to the g0 stack?
142 JEQ g0
144 // switch to g0 stack
148 // make it look like mstart called us on g0, to stop traceback
161 g0: label
389 // Execute call on m->g0 stack, in case we are not actually
414 // executing on m->g0 already
419 // Switch to m->g0 stack and back.

Completed in 478 milliseconds

1 2 3 4