Exemplo n.º 1
0
 def __ge__(self, other):
     return hextools.hex_to_int(
         self.section_virtual_address) >= hextools.hex_to_int(
             section_virtual_address.offset)
Exemplo n.º 2
0
 def __eq__(self, other):
     return hextools.hex_to_int(
         self.section_virtual_address) == hextools.hex_to_int(
             other.section_virtual_address)
Exemplo n.º 3
0
 def __eq__(self, other):
     return hextools.hex_to_int(self.symbol_value) == hextools.hex_to_int(
         other.symbol_value)
Exemplo n.º 4
0
 def __eq__(self, other):
     return hextools.hex_to_int(self.address) == hextools.hex_to_int(
         other.address)
Exemplo n.º 5
0
 def __gt__(self, other):
     return hextools.hex_to_int(self.address) > hextools.hex_to_int(
         other.address)
Exemplo n.º 6
0
 def __eq__(self, other):
     return hextools.hex_to_int(self.relocation_address) == hextools.hex_to_int(other.relocation_address)
Exemplo n.º 7
0
 def __eq__(self, other):
     return hextools.hex_to_int(self.segment_offset) == hextools.hex_to_int(
         other.segment_offset)