Lines Matching full:in
64 # TCG masks out certain features otherwise present in
88 for model in models:
89 if "alias-of" in model:
95 for name in sorted(names):
101 for (feature, present) in cpu["model"]["props"].items():
102 if present and feature not in skip:
105 if name in ["host", "max", "base"]:
109 # Dict of all present features in this CPU model
118 # CPUID features present in model, but not in ABI level
121 # CPUID features in ABI level but not present in model
127 for name in models.keys():
128 for level in range(len(levels)):
146 for name in models.keys():
147 for level in range(len(levels)):
152 for level in range(len(abi_models)):
153 # Find the union of features in all CPU models satisfying this ABI
155 for name in abi_models[level]:
156 for feat in models[name]["features"]:
159 # Find the intersection of features in all CPU models satisfying this ABI
161 for feat in allfeatures:
163 for name in models.keys():
166 if feat not in models[name]["features"]:
173 for name in models.keys():
183 for name in models.keys():
185 for level in range(len(levels)):