Lines Matching refs:BB
1595 BB[i] = b;<br />
1605 <code>int</code> fields, and <code>AA</code> and <code>BB</code> are ordinary
1613 <p>At the end of execution,<code>AA</code> and <code>BB</code> will be full of
1626 BB[1535] = 165<br />
1628 BB[1536] = 165<br />
1634 BB[1537] = 167</code></td>
1657 iteration 166 (or later). <code>BB[1537]</code> holds 167, so it appears things
1670 BB[1535] = 165<br />
1672 BB[1536] = 165<br />
1678 BB[1537] = 165 // stale b</code></td>
1691 <p>Now, <code>BB[1537]</code> holds 165, a smaller value than we expected, so we
1692 know we have a problem. Put succinctly, for i=166, BB[AA[i]+1] < i. (This also
1695 <code>BB[AA[166]+1] == 165</code>.)</p>