Lines Matching defs:Addr
722 class Addr(CheckedInt):
723 cxx_type = 'Addr'
727 if isinstance(value, Addr):
744 if isinstance(other, Addr):
769 self.end = Addr(kwargs.pop('end'))
771 self.end = self.start + Addr(kwargs.pop('size')) - 1
801 self.start = Addr(kwargs.pop('start'))
806 self.start = Addr(args[0])
809 self.start = Addr(args[0][0])
810 self.end = Addr(args[0][1])
812 self.start = Addr(0)
813 self.end = Addr(args[0]) - 1
816 self.start = Addr(args[0])
817 self.end = Addr(args[1])
837 Addr.cxx_predecls(code)
842 Addr.pybind_predecls(code)
855 code('std::vector<Addr> _masks;')
869 code(' Addr mask;')
1842 MaxAddr = Addr.max
2181 'Counter', 'Addr', 'Tick', 'Percent',