예제 #1
0
파일: section.py 프로젝트: finixbit/motex
 def __ge__(self, other):
     return hextools.hex_to_int(
         self.section_virtual_address) >= hextools.hex_to_int(
             section_virtual_address.offset)
예제 #2
0
파일: section.py 프로젝트: finixbit/motex
 def __eq__(self, other):
     return hextools.hex_to_int(
         self.section_virtual_address) == hextools.hex_to_int(
             other.section_virtual_address)
예제 #3
0
 def __eq__(self, other):
     return hextools.hex_to_int(self.symbol_value) == hextools.hex_to_int(
         other.symbol_value)
예제 #4
0
파일: callsite.py 프로젝트: finixbit/motex
 def __eq__(self, other):
     return hextools.hex_to_int(self.address) == hextools.hex_to_int(
         other.address)
예제 #5
0
파일: callsite.py 프로젝트: finixbit/motex
 def __gt__(self, other):
     return hextools.hex_to_int(self.address) > hextools.hex_to_int(
         other.address)
예제 #6
0
 def __eq__(self, other):
     return hextools.hex_to_int(self.relocation_address) == hextools.hex_to_int(other.relocation_address)
예제 #7
0
 def __eq__(self, other):
     return hextools.hex_to_int(self.segment_offset) == hextools.hex_to_int(
         other.segment_offset)