Home | History | Annotate | Download | only in fixedbugs

Lines Matching refs:Int64

16 	check("Int8", int64(x), 0x01, a, b, c, d, e, f, g, h)
22 check("Uint8", int64(x), 0x01, a, b, c, d, e, f, g, h)
28 check("Int16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
34 check("Uint16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
40 check("Int32", int64(x), 0x01020304, a, b, c, d, e, f, g, h)
46 check("Uint32", int64(x), 0x01020304, a, b, c, d, e, f, g, h)
49 type Int64 int64
51 func (x Int64) m(a, b, c, d, e, f, g, h byte) {
52 check("Int64", int64(x), 0x0102030405060708, a, b, c, d, e, f, g, h)
58 check("Uint64", int64(x), 0x0102030405060708, a, b, c, d, e, f, g, h)
68 Int64(0x0102030405060708),
80 func check(desc string, have, want int64, a, b, c, d, e, f, g, h byte) {