Searched defs:jv (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarInputStream.java49 private JarVerifier jv; field in class:JarInputStream
98 jv = new JarVerifier(bytes);
153 if (jv != null && e != null) {
157 if (jv.nothingToVerify() == true) {
158 jv = null;
161 jv.beginEntry(e, mev);
211 if (jv != null) {
212 jv.update(n, b, off, len, mev);
H A DJarFile.java64 private JarVerifier jv; field in class:JarFile
182 jv = new JarVerifier(b);
267 if (certs == null && jv != null) {
268 certs = jv.getCerts(JarFile.this, this);
278 if (signers == null && jv != null) {
279 signers = jv.getCodeSigners(JarFile.this, this);
292 if (jv != null) {
343 jv.beginEntry(e, mev);
344 jv.update(b.length, b, 0, b.length, mev);
345 jv
[all...]
H A DJarVerifier.java429 private JarVerifier jv; field in class:JarVerifier.VerifierStream
436 JarVerifier jv) throws IOException
439 this.jv = jv;
441 this.jv.beginEntry(je, mev);
444 this.jv.update(-1, this.mev);
451 jv.update(b, mev);
454 jv.update(-1, mev);
468 jv.update(n, b, off, len, mev);
471 jv
433 VerifierStream(Manifest man, JarEntry je, InputStream is, JarVerifier jv) argument
[all...]
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Dk_rem_pio2.c105 * jv index for pointing to the suitable ipio2[] for the
107 * ( 2^e0*x[0] * ipio2[jv-1]*2^(-24jv) )/8
109 * e0-3-24*jv >= 0 or (e0-3)/24 >= jv
110 * Hence jv = max(0,(e0-3)/24).
183 int jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
190 /* determine jx,jv,q0, note that 3>q0 */
192 jv = (e0-3)/24; if(jv<
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrig.cpp202 * jv index for pointing to the suitable ipio2[] for the
204 * ( 2^e0*x[0] * ipio2[jv-1]*2^(-24jv) )/8
206 * e0-3-24*jv >= 0 or (e0-3)/24 >= jv
207 * Hence jv = max(0,(e0-3)/24).
261 int jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
268 /* determine jx,jv,q0, note that 3>q0 */
270 jv = (e0-3)/24; if(jv<
[all...]

Completed in 148 milliseconds