Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:PSR_N_BIT
(Results
1 - 25
of
25
) sorted by relevance
/kernel/linux/linux-5.10/arch/arm/probes/
H
A
D
decode.c
106
return cpsr &
PSR_N_BIT
;
in __check_mi()
111
return (~cpsr) &
PSR_N_BIT
;
in __check_pl()
138
cpsr ^= (cpsr << 3); /*
PSR_N_BIT
^= PSR_V_BIT */
in __check_ge()
139
return (~cpsr) &
PSR_N_BIT
;
in __check_ge()
144
cpsr ^= (cpsr << 3); /*
PSR_N_BIT
^= PSR_V_BIT */
in __check_lt()
145
return cpsr &
PSR_N_BIT
;
in __check_lt()
150
unsigned long temp = cpsr ^ (cpsr << 3); /*
PSR_N_BIT
^= PSR_V_BIT */
in __check_gt()
151
temp |= (cpsr << 1); /*
PSR_N_BIT
|= PSR_Z_BIT */
in __check_gt()
152
return (~temp) &
PSR_N_BIT
;
in __check_gt()
157
unsigned long temp = cpsr ^ (cpsr << 3); /*
PSR_N_BIT
in __check_le()
[all...]
/kernel/linux/linux-6.6/arch/arm/probes/
H
A
D
decode.c
106
return cpsr &
PSR_N_BIT
;
in __check_mi()
111
return (~cpsr) &
PSR_N_BIT
;
in __check_pl()
138
cpsr ^= (cpsr << 3); /*
PSR_N_BIT
^= PSR_V_BIT */
in __check_ge()
139
return (~cpsr) &
PSR_N_BIT
;
in __check_ge()
144
cpsr ^= (cpsr << 3); /*
PSR_N_BIT
^= PSR_V_BIT */
in __check_lt()
145
return cpsr &
PSR_N_BIT
;
in __check_lt()
150
unsigned long temp = cpsr ^ (cpsr << 3); /*
PSR_N_BIT
^= PSR_V_BIT */
in __check_gt()
151
temp |= (cpsr << 1); /*
PSR_N_BIT
|= PSR_Z_BIT */
in __check_gt()
152
return (~temp) &
PSR_N_BIT
;
in __check_gt()
157
unsigned long temp = cpsr ^ (cpsr << 3); /*
PSR_N_BIT
in __check_le()
[all...]
/kernel/linux/linux-6.6/arch/arm64/kernel/
H
A
D
traps.c
74
return (pstate &
PSR_N_BIT
) != 0;
in __check_mi()
79
return (pstate &
PSR_N_BIT
) == 0;
in __check_pl()
106
pstate ^= (pstate << 3); /*
PSR_N_BIT
^= PSR_V_BIT */
in __check_ge()
107
return (pstate &
PSR_N_BIT
) == 0;
in __check_ge()
112
pstate ^= (pstate << 3); /*
PSR_N_BIT
^= PSR_V_BIT */
in __check_lt()
113
return (pstate &
PSR_N_BIT
) != 0;
in __check_lt()
118
/*
PSR_N_BIT
^= PSR_V_BIT */
in __check_gt()
121
temp |= (pstate << 1); /*
PSR_N_BIT
|= PSR_Z_BIT */
in __check_gt()
122
return (temp &
PSR_N_BIT
) == 0;
in __check_gt()
127
/*
PSR_N_BIT
in __check_le()
[all...]
H
A
D
process.c
183
pstate &
PSR_N_BIT
? 'N' : 'n',
in print_pstate()
H
A
D
ptrace.c
2292
regs->pstate &=
PSR_N_BIT
| PSR_Z_BIT | PSR_C_BIT | PSR_V_BIT;
in valid_native_regs()
/kernel/linux/linux-5.10/arch/arm/include/asm/
H
A
D
virt.h
16
#define BOOT_CPU_MODE_MISMATCH
PSR_N_BIT
/kernel/linux/linux-6.6/arch/arm/include/asm/
H
A
D
virt.h
16
#define BOOT_CPU_MODE_MISMATCH
PSR_N_BIT
/kernel/linux/linux-5.10/arch/arm/include/uapi/asm/
H
A
D
ptrace.h
87
#define
PSR_N_BIT
0x80000000
macro
/kernel/linux/linux-6.6/arch/arm/include/uapi/asm/
H
A
D
ptrace.h
87
#define
PSR_N_BIT
0x80000000
macro
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/asm-arm/asm/
H
A
D
ptrace.h
54
#define
PSR_N_BIT
0x80000000
macro
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/asm-arm/asm/
H
A
D
ptrace.h
67
#define
PSR_N_BIT
0x80000000
macro
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/asm-arm/asm/
H
A
D
ptrace.h
67
#define
PSR_N_BIT
0x80000000
macro
/kernel/linux/linux-5.10/arch/arm64/kernel/
H
A
D
insn.c
1457
return (pstate &
PSR_N_BIT
) != 0;
in __check_mi()
1462
return (pstate &
PSR_N_BIT
) == 0;
in __check_pl()
1489
pstate ^= (pstate << 3); /*
PSR_N_BIT
^= PSR_V_BIT */
in __check_ge()
1490
return (pstate &
PSR_N_BIT
) == 0;
in __check_ge()
1495
pstate ^= (pstate << 3); /*
PSR_N_BIT
^= PSR_V_BIT */
in __check_lt()
1496
return (pstate &
PSR_N_BIT
) != 0;
in __check_lt()
1501
/*
PSR_N_BIT
^= PSR_V_BIT */
in __check_gt()
1504
temp |= (pstate << 1); /*
PSR_N_BIT
|= PSR_Z_BIT */
in __check_gt()
1505
return (temp &
PSR_N_BIT
) == 0;
in __check_gt()
1510
/*
PSR_N_BIT
in __check_le()
[all...]
H
A
D
process.c
246
pstate &
PSR_N_BIT
? 'N' : 'n',
in print_pstate()
H
A
D
ptrace.c
1895
regs->pstate &=
PSR_N_BIT
| PSR_Z_BIT | PSR_C_BIT | PSR_V_BIT;
in valid_native_regs()
/kernel/linux/linux-5.10/arch/arm64/kvm/
H
A
D
inject_fault.c
79
new |= (old &
PSR_N_BIT
);
in enter_exception64()
/kernel/linux/linux-5.10/arch/arm64/include/uapi/asm/
H
A
D
ptrace.h
58
#define
PSR_N_BIT
0x80000000
macro
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/asm-arm64/asm/
H
A
D
ptrace.h
31
#define
PSR_N_BIT
0x80000000
macro
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/asm-arm64/asm/
H
A
D
ptrace.h
46
#define
PSR_N_BIT
0x80000000
macro
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/asm-arm64/asm/
H
A
D
ptrace.h
46
#define
PSR_N_BIT
0x80000000
macro
/kernel/linux/linux-6.6/arch/arm64/include/uapi/asm/
H
A
D
ptrace.h
58
#define
PSR_N_BIT
0x80000000
macro
/kernel/linux/linux-6.6/arch/arm64/kvm/hyp/
H
A
D
exception.c
129
new |= (old &
PSR_N_BIT
);
in enter_exception64()
/kernel/linux/linux-5.10/arch/arm/kernel/
H
A
D
process.c
139
buf[0] = flags &
PSR_N_BIT
? 'N' : 'n';
in __show_regs()
/kernel/linux/linux-6.6/arch/arm/kernel/
H
A
D
process.c
153
buf[0] = flags &
PSR_N_BIT
? 'N' : 'n';
in __show_regs()
/kernel/linux/linux-6.6/arch/arm64/kvm/
H
A
D
emulate-nested.c
1896
PSR_N_BIT
| PSR_Z_BIT | PSR_C_BIT | PSR_V_BIT |
in kvm_check_illegal_exception_return()
Completed in 20 milliseconds