Lines Matching refs:_arch
222 self._arch = arch
233 if token.value not in self._arch.constants:
235 single_constant = self._arch.constants[token.value]
243 if single_constant > self._arch.max_unsigned:
245 elif single_constant < self._arch.min_signed:
250 single_constant = self._arch.truncate_word(single_constant)
276 single_value = self._arch.truncate_word(~single_value)
526 if 'arch' in metadata and self._arch.arch_name not in metadata['arch']:
535 if syscall_namespace_name not in self._arch.syscall_groups:
539 syscall_namespace = self._arch.syscall_groups[
544 return (Syscall(name, self._arch.syscalls[name])
546 if syscall_descriptor.value not in self._arch.syscalls:
550 self._arch.syscalls[syscall_descriptor.value]), )