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_leaf
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-5.10/arch/x86/kvm/
H
A
D
cpuid.h
77
static __always_inline void reverse_cpuid_check(unsigned int
x86_leaf
)
in reverse_cpuid_check()
argument
79
BUILD_BUG_ON(
x86_leaf
== CPUID_LNX_1);
in reverse_cpuid_check()
80
BUILD_BUG_ON(
x86_leaf
== CPUID_LNX_2);
in reverse_cpuid_check()
81
BUILD_BUG_ON(
x86_leaf
== CPUID_LNX_3);
in reverse_cpuid_check()
82
BUILD_BUG_ON(
x86_leaf
== CPUID_LNX_4);
in reverse_cpuid_check()
83
BUILD_BUG_ON(
x86_leaf
>= ARRAY_SIZE(reverse_cpuid));
in reverse_cpuid_check()
84
BUILD_BUG_ON(reverse_cpuid[
x86_leaf
].function == 0);
in reverse_cpuid_check()
103
unsigned int
x86_leaf
= x86_feature / 32;
in x86_feature_cpuid()
local
105
reverse_cpuid_check(
x86_leaf
);
in x86_feature_cpuid()
106
return reverse_cpuid[
x86_leaf
];
in x86_feature_cpuid()
295
unsigned int
x86_leaf
= x86_feature / 32;
kvm_cpu_cap_clear()
local
303
unsigned int
x86_leaf
= x86_feature / 32;
kvm_cpu_cap_set()
local
311
unsigned int
x86_leaf
= x86_feature / 32;
kvm_cpu_cap_get()
local
[all...]
/kernel/linux/linux-6.6/arch/x86/kvm/
H
A
D
reverse_cpuid.h
103
static __always_inline void reverse_cpuid_check(unsigned int
x86_leaf
)
in reverse_cpuid_check()
argument
105
BUILD_BUG_ON(
x86_leaf
== CPUID_LNX_1);
in reverse_cpuid_check()
106
BUILD_BUG_ON(
x86_leaf
== CPUID_LNX_2);
in reverse_cpuid_check()
107
BUILD_BUG_ON(
x86_leaf
== CPUID_LNX_3);
in reverse_cpuid_check()
108
BUILD_BUG_ON(
x86_leaf
== CPUID_LNX_4);
in reverse_cpuid_check()
109
BUILD_BUG_ON(
x86_leaf
>= ARRAY_SIZE(reverse_cpuid));
in reverse_cpuid_check()
110
BUILD_BUG_ON(reverse_cpuid[
x86_leaf
].function == 0);
in reverse_cpuid_check()
157
unsigned int
x86_leaf
= __feature_leaf(x86_feature);
in x86_feature_cpuid()
local
159
reverse_cpuid_check(
x86_leaf
);
in x86_feature_cpuid()
160
return reverse_cpuid[
x86_leaf
];
in x86_feature_cpuid()
[all...]
H
A
D
cpuid.h
193
unsigned int
x86_leaf
= __feature_leaf(x86_feature);
in kvm_cpu_cap_clear()
local
195
reverse_cpuid_check(
x86_leaf
);
in kvm_cpu_cap_clear()
196
kvm_cpu_caps[
x86_leaf
] &= ~__feature_bit(x86_feature);
in kvm_cpu_cap_clear()
201
unsigned int
x86_leaf
= __feature_leaf(x86_feature);
in kvm_cpu_cap_set()
local
203
reverse_cpuid_check(
x86_leaf
);
in kvm_cpu_cap_set()
204
kvm_cpu_caps[
x86_leaf
] |= __feature_bit(x86_feature);
in kvm_cpu_cap_set()
209
unsigned int
x86_leaf
= __feature_leaf(x86_feature);
in kvm_cpu_cap_get()
local
211
reverse_cpuid_check(
x86_leaf
);
in kvm_cpu_cap_get()
212
return kvm_cpu_caps[
x86_leaf
] & __feature_bit(x86_feature);
in kvm_cpu_cap_get()
Completed in 3 milliseconds