Lines Matching full:machine
84 machine = platform.machine()
85 return (machine and
87 not arch.startswith(machine))
93 machine = platform.machine()
94 machine = machine.lower() # Windows 7 capitalizes 'AMD64'.
95 if machine.startswith('arm'):
97 elif (not machine) or (not re.match('(x|i[3-6])86$', machine) is None):
99 elif machine == 'i86pc':
101 elif machine == 'x86_64':
103 elif machine == 'amd64':
105 elif machine == 'ppc64':
112 if '64' in platform.machine():