OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:naked
(Results
1 - 25
of
75
) sorted by null
1
2
3
/external/clang/test/CodeGen/
attr-naked.c
3
void t1() __attribute__((
naked
));
6
// (Note that
naked
needs to imply noinline to work properly.)
7
// CHECK: define void @t1() [[
NAKED
:#[0-9]+]] {
14
// CHECK: define void @t2() [[
NAKED
]] {
15
__attribute((
naked
, always_inline)) void t2() {
18
// Make sure not to generate prolog or epilog for
naked
functions.
19
__attribute((
naked
)) void t3(int x) {
26
// CHECK: attributes [[
NAKED
]] = {
naked
noinline nounwind{{.*}} }
ms-inline-asm-functions.c
50
void __declspec(
naked
)
naked
() {
ms-declspecs.c
22
// CHECK: define void @t3() [[
NAKED
:#[0-9]+]] {
23
__declspec(
naked
) void t3() {}
40
// CHECK: attributes [[
NAKED
]] = {
naked
noinline nounwind{{.*}} }
/external/clang/test/Sema/
attr-naked.c
3
int a __attribute__((
naked
)); // expected-warning {{'
naked
' attribute only applies to functions}}
5
__attribute__((
naked
)) int t0(void) {
9
void t1() __attribute__((
naked
));
11
void t2() __attribute__((
naked
(2))); // expected-error {{'
naked
' attribute takes no arguments}}
13
__attribute__((
naked
)) int t3() { // expected-note{{attribute is here}}
14
return 42; // expected-error{{non-ASM statement in
naked
function is not supported}}
17
__attribute__((
naked
)) int t4() {
22
__attribute__((
naked
)) int t5(int x)
[
all
...]
attr-disable-tail-calls.c
3
void __attribute__((disable_tail_calls,
naked
)) foo1(int a) { // expected-error {{'disable_tail_calls' and '
naked
' attributes are not compatible}} expected-note {{conflicting attribute is here}}
7
void __attribute__((
naked
,disable_tail_calls)) foo2(int a) { // expected-error {{'
naked
' and 'disable_tail_calls' attributes are not compatible}} expected-note {{conflicting attribute is here}}
attr-naked.cpp
9
void __attribute__((
naked
)) Foo::bar() { // expected-note{{attribute is here}}
10
asm("mov r2, %0" : : "r"(v)); // expected-error{{'this' pointer references not allowed in
naked
functions}}
13
void __attribute__((
naked
)) Foo::bar2() {
/external/compiler-rt/test/asan/TestCases/Linux/
clang_gcc_abi.cc
19
__attribute__((
naked
, noinline)) void gcc_abi() {
32
__attribute__((
naked
, noinline)) void clang_abi() {
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
sm4_dump.cpp
64
bool
naked
= false;
local
76
naked
= true;
79
naked
= false;
87
naked
= false;
91
if(!
naked
|| i)
101
if(!
naked
|| i)
/device/google/contexthub/firmware/lib/libc/
strlen.c
84
size_t __attribute__((
naked
))
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
LongJump.c
17
__declspec (
naked
)
SetJump.c
23
_declspec (
naked
)
DisablePaging32.c
17
__declspec (
naked
)
EnablePaging32.c
17
__declspec (
naked
)
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
LongJump.c
30
__declspec (
naked
)
SetJump.c
51
_declspec (
naked
)
DisablePaging32.c
47
__declspec (
naked
)
EnablePaging32.c
50
__declspec (
naked
)
/external/clang/test/SemaCXX/
cxx11-gnu-attrs.cpp
54
[[gnu::
naked
(1,2,3)]] void
naked
(); // expected-error {{takes no arguments}}
/device/google/contexthub/firmware/os/cpu/cortexm4/
cpuMath.c
23
static uint64_t __attribute__((
naked
)) cpuMathUint64TimesUint64Lsr64(uint64_t a, uint64_t b)
/device/google/contexthub/firmware/os/platform/stm32/flash_script/
tool.c
36
void __attribute__((
naked
)) _start(void) {
/device/linaro/bootloader/edk2/CryptoPkg/Library/IntrinsicLib/Ia32/
MathLShiftS64.c
21
__declspec(
naked
) void __cdecl _allshl (void)
MathRShiftU64.c
21
__declspec(
naked
) void __cdecl _aullshr (void)
/device/linaro/bootloader/edk2/StdLib/LibC/CRT/Ia32/
llmul.c
23
__declspec(
naked
) void __cdecl _allmul (void)
llshl.c
21
__declspec(
naked
) void __cdecl _allshl (void)
ulldiv.c
24
__declspec(
naked
) void __cdecl _aulldiv (void)
Completed in 645 milliseconds
1
2
3