Lines Matching refs:ASMCpuId

676 DECLASM(void) ASMCpuId(uint32_t uOperator, void *pvEAX, void *pvEBX, void *pvECX, void *pvEDX);
678 DECLINLINE(void) ASMCpuId(uint32_t uOperator, void *pvEAX, void *pvEBX, void *pvECX, void *pvEDX)
845 ASMCpuId(uOperator, &uOperator, &uEBX, pvECX, pvEDX);
1179 * Tests if it a genuine Intel CPU based on the ASMCpuId(0) output.
1182 * @param uEBX EBX return from ASMCpuId(0)
1183 * @param uECX ECX return from ASMCpuId(0)
1184 * @param uEDX EDX return from ASMCpuId(0)
1203 ASMCpuId(0, &uEAX, &uEBX, &uECX, &uEDX);
1209 * Tests if it an authentic AMD CPU based on the ASMCpuId(0) output.
1212 * @param uEBX EBX return from ASMCpuId(0)
1213 * @param uECX ECX return from ASMCpuId(0)
1214 * @param uEDX EDX return from ASMCpuId(0)
1233 ASMCpuId(0, &uEAX, &uEBX, &uECX, &uEDX);
1239 * Tests if it a centaur hauling VIA CPU based on the ASMCpuId(0) output.
1242 * @param uEBX EBX return from ASMCpuId(0).
1243 * @param uECX ECX return from ASMCpuId(0).
1244 * @param uEDX EDX return from ASMCpuId(0).
1263 ASMCpuId(0, &uEAX, &uEBX, &uECX, &uEDX);
1304 * Extracts the CPU family from ASMCpuId(1) or ASMCpuId(0x80000001)
1307 * @param uEAX EAX return from ASMCpuId(1) or ASMCpuId(0x80000001).
1318 * Extracts the CPU model from ASMCpuId(1) or ASMCpuId(0x80000001), Intel variant.
1321 * @param uEAX EAX from ASMCpuId(1) or ASMCpuId(0x80000001).
1332 * Extracts the CPU model from ASMCpuId(1) or ASMCpuId(0x80000001), AMD variant.
1335 * @param uEAX EAX from ASMCpuId(1) or ASMCpuId(0x80000001).
1346 * Extracts the CPU model from ASMCpuId(1) or ASMCpuId(0x80000001)
1349 * @param uEAX EAX from ASMCpuId(1) or ASMCpuId(0x80000001).
1361 * Extracts the CPU stepping from ASMCpuId(1) or ASMCpuId(0x80000001)
1364 * @param uEAX EAX from ASMCpuId(1) or ASMCpuId(0x80000001).