Searched refs:totalLen (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCipherCore.java271 int totalLen = buffered + inputLen;
274 return totalLen;
277 return totalLen;
280 if (totalLen < diffBlocksize)
283 return (totalLen + blockSize -
284 ((totalLen - diffBlocksize) % blockSize));
286 return totalLen + padding.padLength(totalLen);
732 int totalLen = buffered + inputLen;
733 int paddedLen = totalLen;
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRegexp.java45 public int prefixLen, suffixLen, totalLen; field in class:Regexp
64 totalLen = s.length();
83 totalLen = prefixLen + suffixLen;
92 totalLen += mids[i].length();
109 return len == totalLen &&
111 if (len < totalLen)
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_CommonUtils.c136 int curr, len, totalLen, inVersionString; local
142 totalLen = strlen(ALSAVersionString);
146 while (curr < totalLen) {
H A DPLATFORM_API_LinuxOS_ALSA_CommonUtils.c136 int curr, len, totalLen, inVersionString; local
142 totalLen = strlen(ALSAVersionString);
146 while (curr < totalLen) {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DXPathParser.java751 int totalLen = m_ops.getOp(OpMap.MAPINDEX_LENGTH);
753 for (int i = totalLen - 1; i >= pos; i--)
759 m_ops.setOp(OpMap.MAPINDEX_LENGTH,totalLen + length);
773 int totalLen = m_ops.getOp(OpMap.MAPINDEX_LENGTH);
775 m_ops.setOp(totalLen, op);
776 m_ops.setOp(totalLen + OpMap.MAPINDEX_LENGTH, length);
777 m_ops.setOp(OpMap.MAPINDEX_LENGTH, totalLen + length);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dfontpath.c416 int len1=0, len2=0, len3=0, totalLen=0, numDirs=0, local
434 totalLen = len1+len2+len3;
435 fontdirs = (char**)calloc(totalLen, sizeof(char*));

Completed in 61 milliseconds