Searched refs:probe (Results 1 – 5 of 5) sorted by relevance
171 int probe = (p == 0) ? 1 : p; // skip 0 in localInit() local175 U.putInt(t, PROBE, probe); in localInit()270 static final int advanceProbe(int probe) { in advanceProbe() argument271 probe ^= probe << 13; // xorshift in advanceProbe()272 probe ^= probe >>> 17; in advanceProbe()273 probe ^= probe << 5; in advanceProbe()274 U.putInt(Thread.currentThread(), PROBE, probe); in advanceProbe() local275 return probe; in advanceProbe()
209 static final int advanceProbe(int probe) { in advanceProbe() argument210 probe ^= probe << 13; // xorshift in advanceProbe()211 probe ^= probe >>> 17; in advanceProbe()212 probe ^= probe << 5; in advanceProbe()213 THREAD_PROBE.set(Thread.currentThread(), probe); in advanceProbe() local214 return probe; in advanceProbe()
77 probe(bcFile, "BOUNCYCASTLE"); in testKeystores()91 probe(onekeyBcFile, "BOUNCYCASTLE"); in testKeystores()119 private static void probe(File file, String type) throws Exception { in probe() method in ProbeKeystores
1485 int probe = power; in search() local1492 while (probe > 1) { in search()1493 probe >>= 1; in search()1495 if (value >= array[index + probe]) { in search()1496 index += probe; in search()
923 int idx = probe(e); // implicit nullcheck of e945 return size > 0 && probe(o) >= 0;1013 private int probe(Object pe) {1194 int idx = probe(k);1208 return size > 0 && probe(o) >= 0;1242 int i = probe(o);1335 private int probe(Object pk) {