Lines Matching refs:machine
98 # host S390 machine. This facility is required for supporting Simd on V8.
162 machine = platform.machine()
163 return (machine and
165 not arch.startswith(machine))
171 machine = platform.machine()
172 machine = machine.lower() # Windows 7 capitalizes 'AMD64'.
173 if machine.startswith('arm'):
175 elif (not machine) or (not re.match('(x|i[3-6])86$', machine) is None):
177 elif machine == 'i86pc':
179 elif machine == 'x86_64':
181 elif machine == 'amd64':
183 elif machine == 's390x':
185 elif machine == 'ppc64':
192 if '64' in platform.machine():