Lines Matching refs:byte
148 byte = ctypes.c_uint8.from_buffer(reader.minidump, slot + i).value
149 if byte >= 0x20 and byte < 0x7f:
150 asc_line += chr(byte)
153 hex_line += " %02x" % (byte)
864 byte = ctypes.c_uint8.from_buffer(self.minidump, loc).value
865 if byte >= 0x7f:
867 if byte < 0x20 and byte != 0:
869 if byte < 0x7f and byte >= 0x20:
871 if byte == 0xa: # newline
886 byte = ctypes.c_uint8.from_buffer(self.minidump, loc).value
887 if (byte == 0x8b or # mov
888 byte == 0x89 or # mov reg-reg
889 (byte & 0xf0) == 0x50 or # push/pop
890 (sixty_four and (byte & 0xf0) == 0x40) or # rex prefix
891 byte == 0xc3 or # return
892 byte == 0x74 or # jeq
893 byte == 0x84 or # jeq far
894 byte == 0x75 or # jne
895 byte == 0x85 or # jne far
896 byte == 0xe8 or # call
897 byte == 0xe9 or # jmp far
898 byte == 0xeb): # jmp near
3203 # Some disassemblers insert spaces between each byte,