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

1 2 3

  /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 2 // RUN: grep '@g0 = external hidden constant i32' %t
5 __private_extern__ const int g0; variable
9 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
alias.c 4 int g0; variable
5 // CHECKBASIC: @g0 = common global i32 0
10 extern int g1 __attribute((alias("g0")));
11 // CHECKBASIC-DAG: @g1 = alias i32* @g0
bitfield.c 18 int g0(void) { function
19 // CHECK-LABEL: @g0()
21 // PATH-LABEL: @g0()
debug-info.c 17 struct s0 { struct s0 *p; } g0; variable in typeref:struct:s0
  /external/clang/test/Frontend/
ast-codegen.c 7 // CHECK: @g0 = common global i32 0, align 4
8 int g0; variable
  /external/clang/test/PCH/
va_arg.c 8 char *g0(char** argv, int argc) { return argv[argc]; } function
11 f(g0, argv, 1, 2, 3);
stmts.c 8 void g0(void) { f0(5); } function
  /external/chromium_org/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/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/SemaTemplate/
ackermann.cpp 38 int g0[Ackermann<3, 4>::value == 125 ? 1 : -1]; variable
default-arguments-cxx0x.cpp 11 void g0() { function
  /external/chromium_org/v8/test/mjsunit/harmony/
block-let-declaration.js 115 function g0() {
  /external/clang/test/Sema/
attr-noreturn.c 14 int g0 __attribute__((noreturn)); // expected-warning {{'noreturn' only applies to function types; type here is 'int'}} variable
attr-unused.c 10 int g0 __attribute__((unused)); variable
constant-builtins.c 6 float g0 = __builtin_huge_val(); variable
merge-decls.c 27 Vf2 g0; // expected-note {{previous definition is here}} variable
28 Vi2 g0; // expected-error {{redefinition of 'g0'}} variable
  /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));
  /external/clang/test/CXX/temp/temp.spec/
no-body.cpp 24 template<typename T> void g0(T) { } function
31 template void g0(int) { } // expected-error {{function cannot be defined in an explicit instantiation; if this declaration is meant to be a function definition, remove the 'template' keyword}} function in namespace:noargs_body
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
agc.cpp 654 Word16 gain_in, gain_out, g0, gain;
673 g0 = 0;
682 * g0 = (1-agc_fac) * sqrt(gain_in/gain_out); *
692 // g0 = i * (1-agc_fac)
693 g0 = mult (i, sub (32767, agc_fac));
705 gain = add (gain, g0);
752 Word16 g0; local
778 g0 = 0;
792 * g0 = (1-agc_fac) * sqrt(gain_in/gain_out); *
808 /* g0 = i * (1-agc_fac) *
975 Word16 g0; local
    [all...]

Completed in 464 milliseconds

1 2 3