Examples of IsAthlon64Compatible()


Examples of freenet.support.CPUInformation.AMDCPUInfo.IsAthlon64Compatible()

       
      } else {
        CPUInfo c = CPUID.getInfo();
        if(c instanceof AMDCPUInfo) {
          AMDCPUInfo amdcpu = (AMDCPUInfo) c;
          if(amdcpu.IsAthlon64Compatible())
            return JBIGI_OPTIMIZATION_X86_64_32;
          if(amdcpu.IsAthlonCompatible())
            return JBIGI_OPTIMIZATION_ATHLON;
          if(amdcpu.IsK6_3_Compatible())
            return JBIGI_OPTIMIZATION_K6_3;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.