Lines Matching defs:limit
62 * asid in use ("x"s below). Set "limit" to this value.
65 * When "limit" is reached, search forward from limit+1 and determine the
77 * ^-next ^-limit ^-MAX_ASID
83 /* Hit the asid limit. Start over */
95 int i, gid, inuse_asid, limit;
99 limit = MAX_ASID;
100 if (asid >= limit)
114 if (asid >= limit) {
116 * empty range: reset the range limit and
119 limit = MAX_ASID;
126 if ((inuse_asid > asid) && (inuse_asid < limit))
127 limit = inuse_asid;
129 gru->gs_asid_limit = limit;
132 asid, limit);