Lines Matching defs:eax
134 u32 eax, edx;
136 asm("rdmsr" : "=a" (eax), "=d" (edx) : "c" (ecx));
137 eax &= ~(1 << 15);
138 asm("wrmsr" : : "a" (eax), "d" (edx), "c" (ecx));
149 u32 eax, edx;
151 asm("rdmsr" : "=a" (eax), "=d" (edx) : "c" (ecx));
152 eax |= (1<<1)|(1<<7);
153 asm("wrmsr" : : "a" (eax), "d" (edx), "c" (ecx));
161 u32 eax, edx;
164 asm("rdmsr" : "=a" (eax), "=d" (edx) : "c" (ecx));
169 asm("wrmsr" : : "a" (eax), "d" (edx), "c" (ecx));