Package freenet.support.CPUInformation

Examples of freenet.support.CPUInformation.IntelCPUInfo


            return JBIGI_OPTIMIZATION_K6_2;
          if(amdcpu.IsK6Compatible())
            return JBIGI_OPTIMIZATION_K6;
        } else
          if(c instanceof IntelCPUInfo) {
            IntelCPUInfo intelcpu = (IntelCPUInfo) c;
            if(intelcpu.IsPentium4Compatible())
              return JBIGI_OPTIMIZATION_PENTIUM4;
            if(intelcpu.IsPentium3Compatible())
              return JBIGI_OPTIMIZATION_PENTIUM3;
            if(intelcpu.IsPentium2Compatible())
              return JBIGI_OPTIMIZATION_PENTIUM2;
            if(intelcpu.IsPentiumMMXCompatible())
              return JBIGI_OPTIMIZATION_PENTIUMMMX;
            if(intelcpu.IsPentiumCompatible())
              return JBIGI_OPTIMIZATION_PENTIUM;
          }
      }
      return null;
    } catch(UnknownCPUException e) {
View Full Code Here

TOP

Related Classes of freenet.support.CPUInformation.IntelCPUInfo

Copyright © 2018 www.massapicom. 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.