OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:noinline
(Results
1 - 25
of
263
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/clang/test/Sema/
attr-noinline.c
3
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}}
/bionic/linker/
rt.cpp
33
extern "C" void __attribute__((
noinline
)) __attribute__((visibility("default"))) rtld_db_dlactivity() {
/external/clang/test/CodeGen/
attr-noinline.c
2
// RUN: grep '
noinline
' %t
4
void t1() __attribute__((
noinline
));
2007-06-05-NoInlineAttribute.c
3
static int bar(int x, int y) __attribute__((
noinline
));
/external/compiler-rt/lib/asan/lit_tests/TestCases/Helpers/
initialization-bug-extra2.cc
3
int __attribute__((
noinline
)) initY() {
/external/compiler-rt/lib/asan/lit_tests/TestCases/
deep_tail_call.cc
9
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); }
null_deref.cc
10
__attribute__((
noinline
))
stack-use-after-return.cc
13
__attribute__((
noinline
))
19
__attribute__((
noinline
))
25
__attribute__((
noinline
))
initialization-bug.cc
30
int __attribute__((
noinline
)) initX() {
/external/compiler-rt/lib/tsan/lit_tests/
free_race2.c
4
void __attribute__((
noinline
)) foo(int *mem) {
8
void __attribute__((
noinline
)) bar(int *mem) {
simple_stack2.cc
8
void __attribute__((
noinline
)) foo1() {
12
void __attribute__((
noinline
)) bar1() {
19
void __attribute__((
noinline
)) foo2() {
25
void __attribute__((
noinline
)) bar2() {
simple_stack.c
8
void __attribute__((
noinline
)) foo1() {
12
void __attribute__((
noinline
)) bar1() {
17
void __attribute__((
noinline
)) foo2() {
21
void __attribute__((
noinline
)) bar2() {
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
initialization-bug-any-order.cc
22
int __attribute__((
noinline
)) initX() {
/external/valgrind/main/memcheck/tests/
origin3-no.c
17
__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
)) int t4(void
[
all
...]
origin2-not-quite.c
16
__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)
err_disable2.c
12
__attribute__((
noinline
)) void usechar ( char c )
20
__attribute__((
noinline
)) void err ( void )
wrap1.c
9
__attribute__((
noinline
))
/bionic/tests/
stack_unwinding_test_impl.c
27
#define
noinline
__attribute__((__noinline__))
macro
30
static
noinline
_Unwind_Reason_Code stop_fn(int a unused,
41
static void
noinline
foo_cleanup(char* param unused) {
45
static void
noinline
do_crash() {
50
static void
noinline
foo() {
59
static void
noinline
sigsegv_handler(int param unused) {
/external/valgrind/main/massif/tests/
overloaded-new.cpp
17
__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)
42
__attribute__((
noinline
)) void operator delete[] (void* p)
/external/chromium_org/base/third_party/symbolize/
utilities.h
11
#define ATTRIBUTE_NOINLINE __attribute__ ((
noinline
))
/external/clang/test/CodeGenCXX/
noinline-template.cpp
3
// 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/valgrind/main/none/tests/x86/
smc1.c
68
__attribute__((
noinline
))
71
__attribute__((
noinline
))
74
__attribute__((
noinline
))
77
__attribute__((
noinline
))
80
__attribute__((
noinline
))
/external/valgrind/main/exp-sgcheck/tests/
hsg.c
10
__attribute__((
noinline
))
19
__attribute__((
noinline
))
26
__attribute__((
noinline
))
/external/compiler-rt/lib/msan/lit_tests/
no_sanitize_memory.cc
18
__attribute__((
noinline
))
no_sanitize_memory_prop.cc
18
__attribute__((
noinline
))
Completed in 478 milliseconds
1
2
3
4
5
6
7
8
9
10
11