Home | History | Annotate | Download | only in arm64asm

Lines Matching refs:enc

41 	enc  [4]byte
47 return fmt.Sprintf("%#x: % x: %s", r.addr, r.enc, r.text)
68 Enc uint32
155 generate(func(enc []byte) {
161 inst, text := disasm(syntax, pad(enc))
165 fmt.Printf("%x -> %s [%d]\n", enc[:len(enc)], dec.text, dec.nenc)
177 cmp := fmt.Sprintf("decode(%x) = %q, %d, want %q, %d%s\n", enc, text, len(enc), dec.text, dec.nenc, suffix)
241 func pad(enc []byte) []byte {
242 if len(enc) < 4 {
243 enc = append(enc[:len(enc):len(enc)], zeros[:4-len(enc)]...)
245 return enc
429 inst.Enc = 0xffffffff
491 inst.Enc = testdata
533 if condmark == true && inst.Enc == 0xffffffff {
536 enc := inst.Enc
537 try([]byte{byte(enc), byte(enc >> 8), byte(enc >> 16), byte(enc >> 24)})
546 JSONCases(t)(func(enc []byte) {
547 try(enc)