Home | History | Annotate | Download | only in fixedbugs

Lines Matching defs:lim

9 const lim = 0x80000000
13 if x == lim {
16 panic("x == lim returned false")
21 if x != lim {
22 panic("x != lim returned true")
28 if x > lim {
31 panic("x > lim returned false")
36 if x >= lim {
39 panic("x >= lim returned false")
44 if x < lim {
45 panic("x < lim returned true")
51 if x <= lim {
52 panic("x <= lim returned true")
57 eq(lim)
58 neq(lim)
59 gt(lim+1)
60 gte(lim+1)
61 lt(lim+1)
62 lte(lim+1)