Searched refs:rp (Results 1 – 6 of 6) sorted by relevance
44 private BigInteger rp; field in ECFieldF2m59 this.rp = null; in ECFieldF2m()84 public ECFieldF2m(int m, BigInteger rp) { in ECFieldF2m() argument87 this.rp = rp; in ECFieldF2m()91 int bitCount = this.rp.bitCount(); in ECFieldF2m()92 if (!this.rp.testBit(0) || !this.rp.testBit(m) || in ECFieldF2m()98 BigInteger temp = this.rp.clearBit(0).clearBit(m); in ECFieldF2m()155 this.rp = BigInteger.ONE; in ECFieldF2m()156 this.rp = rp.setBit(m); in ECFieldF2m()158 rp = rp.setBit(this.ks[j]); in ECFieldF2m()[all …]
102 RevocationProperties rp = getRevocationProperties(); in init() local104 responderURI = (uri == null) ? toURI(rp.ocspUrl) : uri; in init()107 ? getResponderCert(rp, params.trustAnchors(), in init()127 mode = (rp.ocspEnabled) ? Mode.PREFER_OCSP : Mode.ONLY_CRLS; in init()128 onlyEE = rp.onlyEE; in init()142 crlDP = rp.crlDPEnabled; in init()184 RevocationProperties rp = new RevocationProperties(); in getRevocationProperties()187 rp.onlyEE = onlyEE != null in getRevocationProperties()190 rp.ocspEnabled = ocspEnabled != null in getRevocationProperties()192 rp.ocspUrl = Security.getProperty("ocsp.responderURL"); in getRevocationProperties()[all …]
62 byte[] rp = UnixNativeDispatcher.realpath(file()); in findMountEntry()63 path = new UnixPath(fs, rp); in findMountEntry()
834 byte[] rp = realpath(absolute); in toRealPath()835 return new UnixPath(getFileSystem(), rp); in toRealPath()
2325 private boolean doesMatch(String pattern, int pp, String result, int rp) { in doesMatch() argument2328 if (pp == pattern.length() && rp == result.length()) return true; in doesMatch()2338 if (rp == result.length()) return false; in doesMatch()2341 rp++; in doesMatch()2354 for (int sp = rp; sp < result.length(); sp++) { in doesMatch()2369 if (rp == result.length()) return false; in doesMatch()2372 if (pc != result.charAt(rp)) { in doesMatch()2377 rp++; in doesMatch()
380 long rp = -1; in truncate() local416 rp = position0(fd, p); in truncate()417 } while ((rp == IOStatus.INTERRUPTED) && isOpen()); in truncate()