Examples of IsPentium2Compatible()


Examples of freenet.support.CPUInformation.IntelCPUInfo.IsPentium2Compatible()

            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;
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.