Lines Matching refs:ecx
60 unsigned int ecx = 0;
65 : "c" (ecx));
73 unsigned int ecx = 0;
79 : : "a" (eax), "c" (ecx), "d" (edx));
84 unsigned int *ecx, unsigned int *edx)
86 /* ecx is often an input as well as an output. */
91 "=c" (*ecx),
93 : "0" (*eax), "2" (*ecx));
96 /* Intel-defined CPU features, CPUID level 0x00000007:0 (ecx) */
104 unsigned int ecx;
108 ecx = 0x0;
109 __cpuid(&eax, &ebx, &ecx, &edx);
111 if (!(ecx & X86_FEATURE_PKU)) {
115 if (!(ecx & X86_FEATURE_OSPKE)) {
134 unsigned int ecx;
145 ecx = leaf;
146 __cpuid(&eax, &ebx, &ecx, &edx);