Searched defs:init_p (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DDHKeyAgreement.java58 private BigInteger init_p = null; field in class:DHKeyAgreement
122 init_p = null;
139 init_p = ((DHParameterSpec)params).getP();
144 if (init_p != null && priv_p != null && !(init_p.equals(priv_p))) {
150 if ((init_p == null && priv_p == null)
154 init_p = priv_p;
190 if (init_p == null || init_g == null) {
198 if (pub_p != null && !(init_p.equals(pub_p))) {
219 init_p, init_
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopnode.cpp430 jlong init_p = (jlong)init_t->_lo + stride_con; local
431 if (init_p > (jlong)max_jint || init_p > (jlong)limit_t->_hi)
434 jlong init_p = (jlong)init_t->_hi + stride_con; local
435 if (init_p < (jlong)min_jint || init_p < (jlong)limit_t->_lo)

Completed in 262 milliseconds