Searched refs:noinline (Results 1 - 25 of 213) sorted by relevance

123456789

/external/clang/test/Sema/
H A Dattr-noinline.c3 int a __attribute__((noinline)); // expected-warning {{'noinline' attribute only applies to functions}}
5 void t1() __attribute__((noinline));
7 void t2() __attribute__((noinline(2))); // expected-error {{'noinline' attribute takes no arguments}}
/external/clang/test/CodeGen/
H A Dattr-noinline.c2 // RUN: grep 'noinline' %t
4 void t1() __attribute__((noinline));
H A Dflatten.c5 __attribute__((noinline)) void ni(void) {}
/external/compiler-rt/test/asan/TestCases/Helpers/
H A Dinitialization-bug-extra2.cc3 int __attribute__((noinline)) initY() {
/external/compiler-rt/test/asan/TestCases/
H A Ddeep_tail_call.cc9 void __attribute__((noinline)) call4(int i) { global[i+10]++; }
11 void __attribute__((noinline)) call3(int i) { call4(i); }
13 void __attribute__((noinline)) call2(int i) { call3(i); }
15 void __attribute__((noinline)) call1(int i) { call2(i); }
H A Dnull_deref.cc6 __attribute__((noinline))
H A Dinitialization-bug.cc30 int __attribute__((noinline)) initX() {
/external/compiler-rt/test/tsan/
H A Dfree_race2.c4 void __attribute__((noinline)) foo(int *mem) {
8 void __attribute__((noinline)) bar(int *mem) {
H A Dsimple_stack2.cc8 void __attribute__((noinline)) foo1() {
12 void __attribute__((noinline)) bar1() {
19 void __attribute__((noinline)) foo2() {
25 void __attribute__((noinline)) bar2() {
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dinitialization-bug-any-order.cc20 int __attribute__((noinline)) initX() {
H A Dcoverage-fork-direct.cc13 __attribute__((noinline))
16 __attribute__((noinline))
19 __attribute__((noinline))
H A Dcoverage-fork.cc13 __attribute__((noinline))
16 __attribute__((noinline))
19 __attribute__((noinline))
/external/valgrind/main/memcheck/tests/amd64/
H A Dsh-mem-vec128.c8 static __attribute__((noinline))
H A Dsh-mem-vec256.c8 static __attribute__((noinline))
/external/valgrind/main/memcheck/tests/x86/
H A Dsh-mem-vec128.c8 static __attribute__((noinline))
/external/valgrind/main/memcheck/tests/
H A Dorigin3-no.c17 __attribute__((noinline)) int t1(void);
18 __attribute__((noinline)) int t2(void);
19 __attribute__((noinline)) int t3(void);
20 __attribute__((noinline)) int t4(void);
21 __attribute__((noinline)) int t5(void);
22 __attribute__((noinline)) int t6(void);
38 __attribute__((noinline)) int t1(void)
48 __attribute__((noinline)) int t2(void)
58 __attribute__((noinline)) int t3(void)
68 __attribute__((noinline)) in
[all...]
H A Dorigin2-not-quite.c16 __attribute__((noinline)) int t1(void);
17 __attribute__((noinline)) int t2(void);
18 __attribute__((noinline)) int t3(void);
32 __attribute__((noinline)) int t1(void)
41 __attribute__((noinline)) int t2(void)
50 __attribute__((noinline)) int t3(void)
H A Derr_disable2.c12 __attribute__((noinline)) void usechar ( char c )
20 __attribute__((noinline)) void err ( void )
/external/valgrind/main/massif/tests/
H A Doverloaded-new.cpp17 __attribute__((noinline)) void* operator new (std::size_t n) throw (std::bad_alloc)
22 __attribute__((noinline)) void* operator new (std::size_t n, std::nothrow_t const &) throw ()
27 __attribute__((noinline)) void* operator new[] (std::size_t n) throw (std::bad_alloc)
32 __attribute__((noinline)) void* operator new[] (std::size_t n, std::nothrow_t const &) throw ()
37 __attribute__((noinline)) void operator delete (void* p) throw()
42 __attribute__((noinline)) void operator delete[] (void* p) throw()
/external/clang/test/CodeGenCXX/
H A Ddebug-info-same-line.cpp15 void noinline(int x, int y) { function
27 noinline(5, 6), noinline(7, 8);
38 // CHECK: call {{.*}}noinline{{.*}}({{i32[ ]?[a-z]*}} 5, {{i32[ ]?[a-z]*}} 6), !dbg [[NOINLINE:![0-9]*]]
39 // CHECK: call {{.*}}noinline{{.*}}({{i32[ ]?[a-z]*}} 7, {{i32[ ]?[a-z]*}} 8), !dbg [[NOINLINE]]
H A Dnoinline-template.cpp3 // This was a problem in Sema, but only shows up as noinline missing
11 template <class T> __attribute__((noinline)) void Vector<T>::growStorageBy() {
18 // CHECK: attributes [[NI]] = { noinline nounwind{{.*}} }
/external/compiler-rt/test/msan/
H A Dchained_origin.cc23 __attribute__((noinline))
28 __attribute__((noinline))
33 __attribute__((noinline))
H A Dchained_origin_empty_stack.cc20 __attribute__((noinline))
25 __attribute__((noinline))
/external/ltrace/testsuite/ltrace.main/
H A Dbranch_func.c25 __attribute__((noinline, optimize(3))) int
31 __attribute__((noinline, optimize(3))) int
37 __attribute__((noinline, optimize(3))) int
/external/chromium_org/base/third_party/symbolize/
H A Dutilities.h11 #define ATTRIBUTE_NOINLINE __attribute__ ((noinline))

Completed in 2316 milliseconds

123456789