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