Home | History | Annotate | Download | only in tests

Lines Matching full:feature

10 // - 0 if the machine matches the asked-for feature.
12 // - 2 if the asked-for feature isn't recognised (this will be the case for
13 // any feature if run on a non-x86/AMD64 machine).
97 return 2; // Unrecognised feature.
104 return 1; // Feature not present
105 // regardless of what that feature actually is
112 if (dmask > 0 && (d & dmask) != 0) return 0; // Feature present.
113 if (cmask > 0 && (c & cmask) != 0) return 0; // Feature present.
115 return 1; // Feature not present.
122 return 2; // Feature not recognised (non-x86/AMD64 machine!)
134 fprintf( stderr, "usage: x86_amd64_features <feature>\n" );