Searched refs:note (Results 1 - 25 of 194) sorted by relevance

12345678

/external/llvm/test/MC/ELF/
H A Dsection.s5 .section .note.GNU-stack,"",@progbits
6 .section .note.GNU-stack2,"",%progbits
7 .section .note.GNU-,"",@progbits
8 .section -.note.GNU,"",@progbits
10 // CHECK: ('sh_name', 0x00000038) # '.note.GNU-stack'
11 // CHECK: ('sh_name', 0x0000008f) # '.note.GNU-stack2'
12 // CHECK: ('sh_name', 0x000000a0) # '.note.GNU-'
13 // CHECK: ('sh_name', 0x00000084) # '-.note.GNU'
70 .section .note.test,"",@note
[all...]
H A Dcall-abs.s16 .section .note.GNU-stack,"",@progbits
/external/oprofile/daemon/liblegacy/
H A Dopd_mapping.c139 void opd_handle_mapping(struct op_note const * note) argument
146 proc = opd_get_proc(note->pid, note->tgid);
149 verbprintf(vmisc, "Told about mapping for non-existent process %u.\n", note->pid);
150 proc = opd_new_proc(note->pid, note->tgid);
153 hash = note->hash;
166 image = opd_get_image(name, proc->name, 0, note->pid, note->tgid);
168 opd_add_mapping(proc, image, note
[all...]
H A Dopd_proc.h74 * @param note note to handle
82 void opd_handle_fork(struct op_note const * note);
95 * @param note note to handle
103 void opd_handle_exit(struct op_note const * note);
H A Dopd_proc.c238 void opd_handle_fork(struct op_note const * note) argument
244 verbprintf(vmisc, "DO_FORK: from %d, %d to %ld, %ld\n", note->pid, note->tgid,
245 note->addr, note->len);
247 old = opd_get_proc(note->pid, note->tgid);
257 if (opd_get_proc(note->addr, note->len))
261 proc = opd_new_proc(note
317 opd_handle_exit(struct op_note const * note) argument
[all...]
H A Dinit.c72 fprintf(stderr, "Failed to open note device. Possibly you have passed incorrect\n"
75 perror("Failed to open note device");
117 * @param nbuf note buffer area
118 * @param nsize size of note buffer
132 /* it's always OK to read the note device */
159 * @param nbuf note buffer
160 * @param nsize size of note buffer
215 struct op_note const * note; local
218 note = &opd_buf[i];
222 switch (note
[all...]
H A Dopd_mapping.h52 * @param note mapping notification
58 void opd_handle_mapping(struct op_note const * note);
/external/clang/test/SemaCXX/
H A Dwarn-func-as-bool.cpp22 expected-note {{prefix with the address-of operator to silence this warning}}
24 expected-note {{prefix with the address-of operator to silence this warning}}
26 expected-note {{prefix with the address-of operator to silence this warning}}
28 expected-note {{prefix with the address-of operator to silence this warning}}
30 expected-note {{prefix with the address-of operator to silence this warning}} \
31 expected-note {{suffix with parentheses to turn this into a function call}}
33 expected-note {{prefix with the address-of operator to silence this warning}}
H A Dconstexpr-printing.cpp7 constexpr S() : n(extract(*this)), m(0) {} // expected-note {{in call to 'extract(s1)'}}
12 constexpr int extract(const S &s) { return s.n; } // expected-note {{read of uninitialized object is not allowed in a constant expression}}
16 constexpr S s1; // expected-error {{constant expression}} expected-note {{in call to 'S()'}}
36 return *e; // expected-note {{read of non-constexpr variable 'u2'}}
38 U u2(0); // expected-note {{here}}
41 expected-note {{in call to 'test_printing(12, 3.976200e+01, 3+4i, 1.290000e+01+3.600000e+00i, &u2.T::arr[4], u2.another.arr[2], {5, 1, 2, 3}, {{{}}, {{}}, &u1.T::arr[2]})'}}
51 constexpr int get(const int *p) { return *p; } // expected-note {{read of dereferenced one-past-the-end pointer}}
52 constexpr int passLargeArray(V v) { return get(v.arr+256); } // expected-note {{in call to 'get(&v.arr[256])'}}
53 static_assert(passLargeArray(v) == 0, ""); // expected-error {{constant expression}} expected-note {{in call to 'passLargeArray({{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...}})'}}
62 constexpr int badness(Union u) { return u.a + u.b; } // expected-note {{rea
[all...]
H A Dfor-range-dereference.cpp14 Data *end() = delete; //expected-note {{function has been explicitly marked deleted here}}
19 int* begin(DeletedADLBegin) = delete; //expected-note {{candidate function has been explicitly deleted}} \
20 expected-note 6 {{candidate function not viable: no known conversion}}
26 Data *end(); // expected-note 1 {{declared private here}}
30 Data * begin(ADLNoEnd); // expected-note 7 {{candidate function not viable: no known conversion}}
63 expected-note {{when looking up 'end' function for range expression of type 'DeletedEnd'}}
80 expected-note {{when looking up 'begin' function for range expression of type 'DeletedADLBegin'}}
H A Dcast-conversion.cpp11 struct B { // expected-note 3 {{candidate constructor (the implicit copy constructor) not viable}} \
12 expected-note 3 {{candidate constructor (the implicit move constructor) not viable}}
13 B(A); // expected-note 3 {{candidate constructor not viable}}
41 template <int> float* &f0(); // expected-note{{candidate}}
42 template <unsigned> float* &f0(); // expected-note{{candidate}}
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
H A DSDL_QuartzWindow.h37 - (void)appDidHide:(NSNotification*)note;
38 - (void)appWillUnhide:(NSNotification*)note;
39 - (void)appDidUnhide:(NSNotification*)note;
/external/oprofile/module/ia64/
H A Dop_syscalls.c90 struct op_note note; local
96 note.pid = current->pid;
97 note.tgid = op_get_tgid();
98 note.addr = addr;
99 note.len = len;
100 note.offset = offset;
101 note.type = is_execve ? OP_EXEC : OP_MAP;
102 note.hash = hash_path(file);
103 if (note.hash == -1)
105 oprof_put_note(&note);
238 struct op_note note; local
291 struct op_note note; local
302 struct op_note note; local
[all...]
/external/oprofile/module/x86/
H A Dop_syscalls.c50 struct op_note note; local
56 note.pid = current->pid;
57 note.tgid = op_get_tgid();
58 note.addr = addr;
59 note.len = len;
60 note.offset = offset;
61 note.type = is_execve ? OP_EXEC : OP_MAP;
62 note.hash = hash_path(file);
63 if (note.hash == -1)
65 /* holding note loc
210 struct op_note note; local
281 struct op_note note; local
293 struct op_note note; local
[all...]
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
H A Dp3.cpp6 class C {}; // expected-note {{candidate}}
10 expected-note {{candidate}}
/external/llvm/utils/llvm-build/llvmbuild/
H A Dutil.py8 note = lambda message: _write_message('note', message) variable
13 __all__ = ['note', 'warning', 'error', 'fatal']
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_rtttldata.h56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
57 EAS_I32 restTicks; /* ticks to rest after current note */
63 EAS_U8 note; /* MIDI note number */ member in struct:__anon12195
65 EAS_I8 duration; /* default note duration */
H A Deas_imelodydata.h54 EAS_I32 tickBase; /* basline length of 32nd note in 256th of a msec */
55 EAS_I32 tick; /* actual length of 32nd note in 256th of a msec */
56 EAS_I32 restTicks; /* ticks to rest after current note */
66 EAS_U8 note; /* MIDI note number */ member in struct:__anon12182
H A Deas_otadata.h62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */
63 EAS_U32 restTicks; /* ticks to rest after current note */
71 EAS_U8 note; /* MIDI note number */ member in struct:__anon12185
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_rtttldata.h56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
57 EAS_I32 restTicks; /* ticks to rest after current note */
63 EAS_U8 note; /* MIDI note number */ member in struct:__anon12245
65 EAS_I8 duration; /* default note duration */
H A Deas_imelodydata.h54 EAS_I32 tickBase; /* basline length of 32nd note in 256th of a msec */
55 EAS_I32 tick; /* actual length of 32nd note in 256th of a msec */
56 EAS_I32 restTicks; /* ticks to rest after current note */
66 EAS_U8 note; /* MIDI note number */ member in struct:__anon12232
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_rtttldata.h56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
57 EAS_I32 restTicks; /* ticks to rest after current note */
63 EAS_U8 note; /* MIDI note number */ member in struct:__anon12297
65 EAS_I8 duration; /* default note duration */
H A Deas_tcdata.h51 EAS_I32 length; /* length of current note */
55 EAS_I8 note; /* current note */ member in struct:__anon12300
56 EAS_I8 repeatCount; /* note repeat counter */
/external/clang/test/CXX/temp/temp.spec/
H A Dp5.cpp4 template void f(int); // expected-note{{previous explicit instantiation}}
19 template struct X0<int>; // expected-note{{previous explicit instantiation}} \
20 expected-note{{requested here}}
23 template void X0<float>::f(float); // expected-note{{previous explicit instantiation}}
26 template union X0<float>::Inner; // expected-note{{previous explicit instantiation}}
29 template float X0<float>::value; // expected-note{{previous explicit instantiation}}
/external/clang/test/Sema/
H A Dincomplete-decl.c3 struct foo; // expected-note 5 {{forward declaration of 'struct foo'}}
28 expected-note {{forward declaration of 'struct bar'}}

Completed in 635 milliseconds

12345678