OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_mesa_x86_cpu_features
(Results
1 - 5
of
5
) sorted by null
/external/mesa3d/src/mesa/x86/
common_x86_asm.h
45
extern int
_mesa_x86_cpu_features
;
common_x86_features.h
65
#define cpu_has_mmx (
_mesa_x86_cpu_features
& X86_FEATURE_MMX)
68
#define cpu_has_mmxext (
_mesa_x86_cpu_features
& X86_FEATURE_MMXEXT)
73
#define cpu_has_xmm (
_mesa_x86_cpu_features
& X86_FEATURE_XMM)
79
#define cpu_has_xmm2 (
_mesa_x86_cpu_features
& X86_FEATURE_XMM2)
85
#define cpu_has_3dnow (
_mesa_x86_cpu_features
& X86_FEATURE_3DNOW)
88
#define cpu_has_3dnowext (
_mesa_x86_cpu_features
& X86_FEATURE_3DNOWEXT)
93
#define cpu_has_sse4_1 (
_mesa_x86_cpu_features
& X86_FEATURE_SSE4_1)
common_x86.c
62
int
_mesa_x86_cpu_features
= 0x0;
variable
102
_mesa_x86_cpu_features
&= ~(X86_FEATURE_XMM);
124
* If not, turn off the X86_FEATURE_XMM flag in
_mesa_x86_cpu_features
.
135
_mesa_x86_cpu_features
&= ~(X86_FEATURE_XMM);
143
_mesa_x86_cpu_features
&= ~(X86_FEATURE_XMM);
156
_mesa_x86_cpu_features
&= ~(X86_FEATURE_XMM);
208
* Initialize the
_mesa_x86_cpu_features
bitfield.
222
_mesa_x86_cpu_features
= 0x0;
250
_mesa_x86_cpu_features
|= X86_FEATURE_FPU;
252
_mesa_x86_cpu_features
|= X86_FEATURE_CMOV
[
all
...]
x86_xform.c
113
if (
_mesa_x86_cpu_features
) {
/external/mesa3d/src/mesa/main/
cpuinfo.c
62
if (
_mesa_x86_cpu_features
) {
Completed in 265 milliseconds