Searched refs:BASE (Results 1 - 25 of 51) sorted by relevance

123

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzadler32.c35 #define BASE 65521UL /* largest prime smaller than 65536 */ macro
37 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
49 if (a >= (BASE << 16)) a -= (BASE << 16); \
50 if (a >= (BASE << 15)) a -= (BASE << 15); \
51 if (a >= (BASE << 14)) a -= (BASE << 14); \
52 if (a >= (BASE << 13)) a -= (BASE << 1
[all...]
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DCompressConstants.java32 static final int BASE = 2; // base for codes found in lookup table field in interface:CompressConstants
H A DCompressInputStream.java50 if (code >= BASE)
51 return codeTable.charAt(code - BASE);
H A DCompressOutputStream.java48 writeCode(BASE + pos);
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/unicast/
H A DCompressConstants.java32 static final int BASE = 2; // base for codes found in lookup table field in interface:CompressConstants
H A DCompressInputStream.java50 if (code >= BASE)
51 return codeTable.charAt(code - BASE);
H A DCompressOutputStream.java48 writeCode(BASE + pos);
/openjdk7/jdk/test/com/sun/org/apache/xml/internal/security/transforms/
H A DClassLoaderTest.java42 private final static String BASE = System.getProperty("test.src", "./"); field in class:ClassLoaderTest
46 File file = new File(BASE);
/openjdk7/jdk/test/java/security/SecureRandom/
H A DGetAlgorithm.java37 private final static String BASE = System.getProperty("test.src", "."); field in class:GetAlgorithm
60 InputStream in = new FileInputStream(new File(BASE, "sha1prng-old.bin"));
66 in = new FileInputStream(new File(BASE, "sha1prng-new.bin"));
/openjdk7/jdk/test/sun/security/pkcs11/
H A DSecmodTest.java56 copyFile("secmod.db", BASE, DBDIR);
57 copyFile("key3.db", BASE, DBDIR);
58 copyFile("cert8.db", BASE, DBDIR);
/openjdk7/jdk/src/share/classes/sun/net/idn/
H A DPunycode.java54 private static final int BASE = 36; field in class:Punycode
90 for(; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
91 delta/=(BASE-TMIN);
94 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
100 * BASE-1, or -1 if b is does not represent a value.
144 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
266 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
290 dest[destLength++]=digitToBasic(t+(q-t)%(BASE
[all...]
/openjdk7/jdk/test/java/util/jar/JarEntry/
H A DGetMethodsReturnClones.java39 private final static String BASE = System.getProperty("test.src", ".") + field in class:GetMethodsReturnClones
44 try (JarFile jf = new JarFile(BASE + "test.jar", true)) {
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/registry/
H A DCompress.java37 static final int BASE = 2; // base for codes found in lookup table field in interface:Compress.CompressConstants
116 if (code >= BASE)
117 return codeTable.charAt(code - BASE);
197 writeCode(BASE + pos);
/openjdk7/jdk/test/sun/security/pkcs11/Secmod/
H A DCrypto.java44 String configName = BASE + SEP + "nsscrypto.cfg";
H A DAddTrustedCert.java47 InputStream in = new FileInputStream(BASE + SEP + "anchor.cer");
53 String configName = BASE + SEP + "nss.cfg";
H A DGetPrivateKey.java46 String configName = BASE + SEP + "nss.cfg";
H A DTrustAnchors.java53 String configName = BASE + SEP + "nsstrust.cfg";
/openjdk7/jdk/test/sun/security/pkcs11/fips/
H A DTrustManagerTest.java57 String configName = BASE + SEP + "fips.cfg";
93 InputStream in = new FileInputStream(BASE + SEP + name);
H A DClientJSSEServerJSSE.java53 String configName = BASE + SEP + "fips.cfg";
/openjdk7/jdk/test/sun/security/provider/KeyStore/
H A DWrongPassword.java39 private final static String BASE = System.getProperty("test.src", "."); field in class:WrongPassword
42 File ksFile = new File(BASE, "pw.jks");
/openjdk7/jdk/test/sun/security/rsa/
H A DTestSignatures.java39 private final static String BASE = System.getProperty("test.src", "."); field in class:TestSignatures
48 InputStream in = new FileInputStream(new File(BASE, "rsakeys.ks"));
/openjdk7/jdk/test/java/security/cert/CertPathValidator/nameConstraintsRFC822/
H A DValidateCertPath.java62 private final static String BASE = System.getProperty("test.src", "./"); field in class:ValidateCertPath
134 File certFile = new File(BASE, certFilePath);
/openjdk7/jdk/test/java/security/cert/pkix/policyChanges/
H A DTestPolicy.java44 private final static String BASE = System.getProperty("test.src"); field in class:TestPolicy
49 InputStream in = new FileInputStream(new File(BASE, name));
/openjdk7/jdk/test/sun/security/pkcs11/rsa/
H A DTestSignatures.java40 private final static String BASE = System.getProperty("test.src", "."); field in class:TestSignatures
49 InputStream in = new FileInputStream(new File(BASE, "rsakeys.ks"));
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/
H A DUtils.java28 static final String BASE = System.getProperty("test.src", "."); field in class:Utils

Completed in 69 milliseconds

123