Searched refs:hashSize (Results 1 - 8 of 8) sorted by relevance
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/ |
H A D | UnsharedNameTable.java | 66 * @param hashSize the (constant) size to be used for the hash table 69 public UnsharedNameTable(Names names, int hashSize) { argument 71 hashMask = hashSize - 1; 72 hashes = new HashEntry[hashSize];
|
H A D | SharedNameTable.java | 77 * @param hashSize the (constant) size to be used for the hash table 81 public SharedNameTable(Names names, int hashSize, int nameSize) { argument 83 hashMask = hashSize - 1; 84 hashes = new NameImpl[hashSize];
|
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/dk/ |
H A D | ArcFourCrypto.java | 51 private static final int hashSize = 16; field in class:ArcFourCrypto 119 return hashSize; // bytes 303 byte[] result = new byte[hashSize + output.length]; 304 System.arraycopy(checksum, 0, result, 0, hashSize); 305 System.arraycopy(output, 0, result, hashSize, output.length); 376 byte[] checksum = new byte[hashSize]; 377 System.arraycopy(ciphertext, start, checksum, 0, hashSize); 384 byte[] plaintext = cipher.doFinal(ciphertext, start+hashSize, 385 len-hashSize); 393 hashSize); [all...] |
H A D | AesDkCrypto.java | 91 private static final int hashSize = 96/8; field in class:AesDkCrypto 156 return hashSize; // bytes 173 byte[] output = new byte[hashSize]; 174 System.arraycopy(hash, 0, output, 0, hashSize); 340 byte[] output = new byte[toBeEncrypted.length + hashSize]; 414 byte[] plaintext = cipher.doFinal(ciphertext, start, len-hashSize); 432 int hmacOffset = start + len - hashSize; 436 traceOutput("message Hmac", ciphertext, hmacOffset, hashSize); 439 if (calculatedHmac.length >= hashSize) { 440 for (int i = 0; i < hashSize; [all...] |
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/ |
H A D | RSASignature.java | 420 int hashSize, String hashAlgorithm, long hCryptProv, long hCryptKey) 426 private native static boolean verifySignedHash(byte[] hash, int hashSize, argument 419 signHash(boolean noHashOID, byte[] hash, int hashSize, String hashAlgorithm, long hCryptProv, long hCryptKey) argument
|
/openjdk7/jdk/src/share/native/sun/java2d/loops/ |
H A D | ProcessPath.c | 1960 jint hashSize = ((yMax - yMin)>>MDP_PREC) + 4; local 1982 ALLOC(yHash, Point*, hashSize); 1983 for (k = 0; k < hashSize; k++) { 2016 y<=yMax && k < hashSize; y += MDP_MULT, k++)
|
/openjdk7/jdk/src/share/classes/sun/security/ssl/ |
H A D | Handshaker.java | 1158 int hashSize = cipherSuite.macAlg.size; 1183 cipher.ivSize, hashSize,
|
/openjdk7/jdk/src/share/classes/sun/java2d/loops/ |
H A D | ProcessPath.java | 1906 int hashSize = ((yMax - yMin)>>MDP_PREC) + 4; 1926 Point[] yHash = new Point[hashSize]; 1953 y<=yMax && k < hashSize; y += MDP_MULT, k++)
|
Completed in 68 milliseconds