Lines Matching refs:history
178 int[] history = new int[numberOfSetBits];
184 history[x] = nextBitToSet;
191 if (x != history[historyIndex++])
206 int[] history = new int[10];
216 history[x] = nextBitToClear;
223 if (x != history[historyIndex++])
250 HashSet<Integer> history = new HashSet<Integer>();
259 history.add(new Integer(nextBitToSet));
265 if (testSet.get(x) != history.contains(new Integer(x)))
270 Iterator<Integer> setBitIterator = history.iterator();
284 setBitIterator = history.iterator();
292 if (testSet.get(x) != history.contains(new Integer(x)))
297 setBitIterator = history.iterator();
311 setBitIterator = history.iterator();
319 if (testSet.get(x) != history.contains(new Integer(x)))
324 setBitIterator = history.iterator();
424 int[] history = new int[20];
430 history[x] = nextBitToSet;
437 history[x] = nextBitToSet;
445 // Verify the set bits of b3 from the history
448 if (!b3.get(history[x]))