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:pteflags
(Results
1 - 10
of
10
) sorted by relevance
/kernel/linux/linux-5.10/arch/powerpc/include/asm/book3s/64/
H
A
D
hash-pkey.h
14
static inline u64 pte_to_hpte_pkey_bits(u64
pteflags
)
in pte_to_hpte_pkey_bits()
argument
16
return (((
pteflags
& H_PTE_PKEY_BIT4) ? HPTE_R_KEY_BIT4 : 0x0UL) |
in pte_to_hpte_pkey_bits()
17
((
pteflags
& H_PTE_PKEY_BIT3) ? HPTE_R_KEY_BIT3 : 0x0UL) |
in pte_to_hpte_pkey_bits()
18
((
pteflags
& H_PTE_PKEY_BIT2) ? HPTE_R_KEY_BIT2 : 0x0UL) |
in pte_to_hpte_pkey_bits()
19
((
pteflags
& H_PTE_PKEY_BIT1) ? HPTE_R_KEY_BIT1 : 0x0UL) |
in pte_to_hpte_pkey_bits()
20
((
pteflags
& H_PTE_PKEY_BIT0) ? HPTE_R_KEY_BIT0 : 0x0UL));
in pte_to_hpte_pkey_bits()
23
static inline u16 hash__pte_to_pkey_bits(u64
pteflags
)
in hash__pte_to_pkey_bits()
argument
25
return (((
pteflags
& H_PTE_PKEY_BIT4) ? 0x10 : 0x0UL) |
in hash__pte_to_pkey_bits()
26
((
pteflags
& H_PTE_PKEY_BIT3) ? 0x8 : 0x0UL) |
in hash__pte_to_pkey_bits()
27
((
pteflags
in hash__pte_to_pkey_bits()
[all...]
H
A
D
pkeys.h
20
static inline u16 pte_to_pkey_bits(u64
pteflags
)
in pte_to_pkey_bits()
argument
24
return hash__pte_to_pkey_bits(
pteflags
);
in pte_to_pkey_bits()
H
A
D
hash.h
148
extern unsigned long htab_convert_pte_flags(unsigned long
pteflags
);
/kernel/linux/linux-6.6/arch/powerpc/include/asm/book3s/64/
H
A
D
hash-pkey.h
17
static inline u64 pte_to_hpte_pkey_bits(u64
pteflags
, unsigned long flags)
in pte_to_hpte_pkey_bits()
argument
21
pte_pkey = (((
pteflags
& H_PTE_PKEY_BIT4) ? HPTE_R_KEY_BIT4 : 0x0UL) |
in pte_to_hpte_pkey_bits()
22
((
pteflags
& H_PTE_PKEY_BIT3) ? HPTE_R_KEY_BIT3 : 0x0UL) |
in pte_to_hpte_pkey_bits()
23
((
pteflags
& H_PTE_PKEY_BIT2) ? HPTE_R_KEY_BIT2 : 0x0UL) |
in pte_to_hpte_pkey_bits()
24
((
pteflags
& H_PTE_PKEY_BIT1) ? HPTE_R_KEY_BIT1 : 0x0UL) |
in pte_to_hpte_pkey_bits()
25
((
pteflags
& H_PTE_PKEY_BIT0) ? HPTE_R_KEY_BIT0 : 0x0UL));
in pte_to_hpte_pkey_bits()
36
static inline u16 hash__pte_to_pkey_bits(u64
pteflags
)
in hash__pte_to_pkey_bits()
argument
38
return (((
pteflags
& H_PTE_PKEY_BIT4) ? 0x10 : 0x0UL) |
in hash__pte_to_pkey_bits()
39
((
pteflags
& H_PTE_PKEY_BIT3) ? 0x8 : 0x0UL) |
in hash__pte_to_pkey_bits()
40
((
pteflags
in hash__pte_to_pkey_bits()
[all...]
H
A
D
pkeys.h
18
static inline u16 pte_to_pkey_bits(u64
pteflags
)
in pte_to_pkey_bits()
argument
22
return hash__pte_to_pkey_bits(
pteflags
);
in pte_to_pkey_bits()
H
A
D
hash.h
162
unsigned long htab_convert_pte_flags(unsigned long
pteflags
, unsigned long flags);
/kernel/linux/linux-5.10/arch/powerpc/mm/book3s64/
H
A
D
hash_utils.c
189
unsigned long htab_convert_pte_flags(unsigned long
pteflags
)
in htab_convert_pte_flags()
argument
194
if ((
pteflags
& _PAGE_EXEC) == 0)
in htab_convert_pte_flags()
203
if (
pteflags
& _PAGE_PRIVILEGED) {
in htab_convert_pte_flags()
207
if (!(
pteflags
& _PAGE_WRITE)) {
in htab_convert_pte_flags()
214
if (
pteflags
& _PAGE_RWX)
in htab_convert_pte_flags()
216
if (!((
pteflags
& _PAGE_WRITE) && (
pteflags
& _PAGE_DIRTY)))
in htab_convert_pte_flags()
225
if (
pteflags
& _PAGE_DIRTY)
in htab_convert_pte_flags()
231
if ((
pteflags
& _PAGE_CACHE_CTL) == _PAGE_TOLERANT)
in htab_convert_pte_flags()
233
else if ((
pteflags
in htab_convert_pte_flags()
[all...]
/kernel/linux/linux-6.6/arch/powerpc/mm/book3s64/
H
A
D
hash_utils.c
289
unsigned long htab_convert_pte_flags(unsigned long
pteflags
, unsigned long flags)
in htab_convert_pte_flags()
argument
294
if ((
pteflags
& _PAGE_EXEC) == 0)
in htab_convert_pte_flags()
303
if (
pteflags
& _PAGE_PRIVILEGED) {
in htab_convert_pte_flags()
307
if (!(
pteflags
& _PAGE_WRITE)) {
in htab_convert_pte_flags()
314
if (
pteflags
& _PAGE_RWX)
in htab_convert_pte_flags()
316
if (!((
pteflags
& _PAGE_WRITE) && (
pteflags
& _PAGE_DIRTY)))
in htab_convert_pte_flags()
325
if (
pteflags
& _PAGE_DIRTY)
in htab_convert_pte_flags()
331
if ((
pteflags
& _PAGE_CACHE_CTL) == _PAGE_TOLERANT)
in htab_convert_pte_flags()
333
else if ((
pteflags
in htab_convert_pte_flags()
[all...]
/kernel/linux/linux-5.10/arch/powerpc/include/asm/
H
A
D
mmu_context.h
287
static inline u64 pte_to_hpte_pkey_bits(u64
pteflags
)
/kernel/linux/linux-6.6/arch/powerpc/include/asm/
H
A
D
mmu_context.h
287
static inline u64 pte_to_hpte_pkey_bits(u64
pteflags
, unsigned long flags)
Completed in 6 milliseconds