Lines Matching full:match
3 # modules). return value must match one of the architecture directories
24 if re.match('(i.86|athlon|x86.64)$', a): return 'x86'
25 elif re.match('arceb$', a): return 'arc'
26 elif re.match('armeb$', a): return 'arm'
27 elif re.match('aarch64$', a): return 'arm64'
28 elif re.match('aarch64_be$', a): return 'arm64'
29 elif re.match('aarch64_ilp32$', a): return 'arm64'
30 elif re.match('aarch64_be_ilp32$', a): return 'arm64'
31 elif re.match('mips(isa|)(32|64|)(r6|)(el|)$', a): return 'mips'
32 elif re.match('mcf', a): return 'm68k'
33 elif re.match('riscv(32|64|)(eb|)$', a): return 'riscv'
34 elif re.match('p(pc|owerpc)(|64)', a): return 'powerpc'
35 elif re.match('sh(3|4)$', a): return 'sh'
36 elif re.match('bfin', a): return 'blackfin'
37 elif re.match('microblazee[bl]', a): return 'microblaze'
49 if re.match('p(pc|owerpc)(|64)', a): return 'ppc'
50 elif re.match('i.86$', a): return 'x86'