Lines Matching refs:lo
369 lo int
397 // numbers to a given register number range. Lo is inclusive,
398 // hi exclusive (valid registers are lo through hi-1).
399 func RegisterRegister(lo, hi int, Rconv func(int) string) {
400 regSpace = append(regSpace, regSet{lo, hi, Rconv})
409 if rs.lo <= reg && reg < rs.hi {
440 lo As
449 func RegisterOpcode(lo As, Anames []string) {
453 aSpace = append(aSpace, opSet{lo, Anames})
462 if as.lo <= a && int(a-as.lo) < len(as.names) {
463 return as.names[a-as.lo]