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:X86_CR0_CD
(Results
1 - 25
of
25
) sorted by relevance
/kernel/linux/linux-6.6/arch/x86/kernel/cpu/mtrr/
H
A
D
cyrix.c
151
cr0 = read_cr0() |
X86_CR0_CD
;
in prepare_set()
172
write_cr0(read_cr0() & ~
X86_CR0_CD
);
in post_set()
/kernel/linux/linux-5.10/arch/x86/kernel/cpu/mtrr/
H
A
D
cyrix.c
151
cr0 = read_cr0() |
X86_CR0_CD
;
in prepare_set()
172
write_cr0(read_cr0() & ~
X86_CR0_CD
);
in post_set()
H
A
D
generic.c
744
cr0 = read_cr0() |
X86_CR0_CD
;
in __acquires()
787
write_cr0(read_cr0() & ~
X86_CR0_CD
);
in __releases()
/kernel/linux/linux-5.10/drivers/cpufreq/
H
A
D
powernow-k6.c
115
write_cr0(cr0 |
X86_CR0_CD
);
in powernow_k6_set_cpu_multiplier()
/kernel/linux/linux-5.10/arch/x86/include/uapi/asm/
H
A
D
processor-flags.h
70
#define
X86_CR0_CD
_BITUL(X86_CR0_CD_BIT)
macro
/kernel/linux/linux-6.6/drivers/cpufreq/
H
A
D
powernow-k6.c
115
write_cr0(cr0 |
X86_CR0_CD
);
in powernow_k6_set_cpu_multiplier()
/kernel/linux/linux-6.6/arch/x86/include/uapi/asm/
H
A
D
processor-flags.h
70
#define
X86_CR0_CD
_BITUL(X86_CR0_CD_BIT)
macro
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/asm-x86/asm/
H
A
D
processor-flags.h
77
#define
X86_CR0_CD
_BITUL(X86_CR0_CD_BIT)
macro
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/asm-x86/asm/
H
A
D
processor-flags.h
77
#define
X86_CR0_CD
_BITUL(X86_CR0_CD_BIT)
macro
/kernel/linux/linux-5.10/drivers/edac/
H
A
D
amd64_edac.h
512
write_cr0(read_cr0() |
X86_CR0_CD
);
in disable_caches()
518
write_cr0(read_cr0() & ~
X86_CR0_CD
);
in enable_caches()
/kernel/linux/linux-6.6/drivers/edac/
H
A
D
amd64_edac.h
492
write_cr0(read_cr0() |
X86_CR0_CD
);
in disable_caches()
498
write_cr0(read_cr0() & ~
X86_CR0_CD
);
in enable_caches()
/kernel/linux/linux-6.6/arch/x86/kvm/
H
A
D
kvm_cache_regs.h
12
#define X86_CR0_PDPTR_BITS (
X86_CR0_CD
| X86_CR0_NW | X86_CR0_PG)
H
A
D
x86.c
920
if ((cr0 & X86_CR0_NW) && !(cr0 &
X86_CR0_CD
))
in kvm_is_valid_cr0()
964
if (((cr0 ^ old_cr0) &
X86_CR0_CD
) &&
in kvm_post_set_cr0()
12134
new_cr0 |= (old_cr0 & (X86_CR0_NW |
X86_CR0_CD
));
in kvm_vcpu_reset()
12136
new_cr0 |= X86_CR0_NW |
X86_CR0_CD
;
in kvm_vcpu_reset()
/kernel/linux/linux-5.10/tools/testing/selftests/kvm/include/x86_64/
H
A
D
processor.h
389
#define
X86_CR0_CD
(1UL<<30) /* Cache Disable */
macro
/kernel/linux/linux-6.6/arch/x86/kernel/cpu/
H
A
D
cacheinfo.c
1076
cr0 = read_cr0() |
X86_CR0_CD
;
in __acquires()
1116
write_cr0(read_cr0() & ~
X86_CR0_CD
);
in __releases()
/kernel/linux/linux-5.10/arch/x86/kvm/svm/
H
A
D
nested.c
267
if (((vmcb12->save.cr0 &
X86_CR0_CD
) == 0) && (vmcb12->save.cr0 & X86_CR0_NW))
in nested_vmcb_check_save()
1221
if (((cr0 &
X86_CR0_CD
) == 0) && (cr0 & X86_CR0_NW))
in svm_set_nested_state()
H
A
D
svm.c
1200
svm_set_cr0(&svm->vcpu, X86_CR0_NW |
X86_CR0_CD
| X86_CR0_ET);
in init_vmcb()
1686
cr0 &= ~(
X86_CR0_CD
| X86_CR0_NW);
in svm_set_cr0()
/kernel/linux/linux-6.6/arch/x86/kvm/svm/
H
A
D
nested.c
284
if (CC((save->cr0 &
X86_CR0_CD
) == 0 && (save->cr0 & X86_CR0_NW)) ||
in __nested_vmcb_check_save()
1715
if (((cr0 &
X86_CR0_CD
) == 0) && (cr0 & X86_CR0_NW))
in svm_set_nested_state()
H
A
D
svm.c
1904
hcr0 &= ~(
X86_CR0_CD
| X86_CR0_NW);
in svm_set_cr0()
/kernel/linux/linux-5.10/arch/x86/include/asm/
H
A
D
kvm_host.h
95
| X86_CR0_NW |
X86_CR0_CD
| X86_CR0_PG))
/kernel/linux/linux-6.6/tools/testing/selftests/kvm/include/x86_64/
H
A
D
processor.h
1234
#define
X86_CR0_CD
(1UL<<30) /* Cache Disable */
macro
/kernel/linux/linux-6.6/arch/x86/include/asm/
H
A
D
kvm_host.h
120
| X86_CR0_NW |
X86_CR0_CD
| X86_CR0_PG))
/kernel/linux/linux-5.10/arch/x86/kvm/vmx/
H
A
D
vmx.c
135
#define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW |
X86_CR0_CD
)
4591
cr0 = X86_CR0_NW |
X86_CR0_CD
| X86_CR0_ET;
in vmx_vcpu_reset()
7239
if (kvm_read_cr0(vcpu) &
X86_CR0_CD
) {
in vmx_get_mt_mask()
/kernel/linux/linux-5.10/arch/x86/kvm/
H
A
D
x86.c
833
unsigned long pdptr_bits =
X86_CR0_CD
| X86_CR0_NW | X86_CR0_PG;
in kvm_set_cr0()
845
if ((cr0 & X86_CR0_NW) && !(cr0 &
X86_CR0_CD
))
in kvm_set_cr0()
881
if (((cr0 ^ old_cr0) &
X86_CR0_CD
) &&
in kvm_set_cr0()
/kernel/linux/linux-6.6/arch/x86/kvm/vmx/
H
A
D
vmx.c
143
#define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW |
X86_CR0_CD
)
7620
if (kvm_read_cr0_bits(vcpu,
X86_CR0_CD
)) {
in vmx_get_mt_mask()
Completed in 81 milliseconds