Home | History | Annotate | Download | only in x86asm

Lines Matching refs:enc

65 		enc     []byte
81 text = fmt.Sprintf("%s .%+#x", m[1], int16(uint32(targ)-uint32(uint16(addr))-uint32(len(enc))))
85 text = fmt.Sprintf("%s .%+#x", m[1], int32(uint32(targ)-addr-uint32(len(enc))))
90 ext.Dec <- ExtInst{addr, encbuf, len(enc), text}
92 enc = nil
115 if enc1 := parseContinuation(line, encbuf[:len(enc)]); enc1 != nil {
116 enc = enc1
121 addr, enc, text = parseLine(line, encbuf[:0])
137 func parseLine(line []byte, encstart []byte) (addr uint32, enc []byte, text string) {
153 enc, ok := parseHex(line[:i], encstart)
165 func parseContinuation(line []byte, enc []byte) []byte {
171 enc, _ = parseHex(line, enc)
172 return enc