Home
last modified time | relevance | path

Searched refs:thisLen (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
DInflater.java261 int thisLen = this.len; in inflate() local
264 bytesRead += (thisLen - this.len); in inflate()
DDeflater.java445 int thisLen = this.len; in deflate() local
448 bytesRead += (thisLen - this.len); in deflate()
/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixPath.java664 int thisLen = path.length; in endsWith() local
668 if (thatLen > thisLen) in endsWith()
672 if (thisLen > 0 && thatLen == 0) in endsWith()
690 int expectedLen = thisLen; in endsWith()
705 if ((thatLen - thatPos) != (thisLen - thisPos)) in endsWith()
/libcore/ojluni/src/main/java/sun/security/x509/
DX500Name.java1356 int thisLen = this.names.length; in commonAncestor() local
1357 if (thisLen == 0 || otherLen == 0) { in commonAncestor()
1360 int minLen = (thisLen < otherLen) ? thisLen: otherLen; in commonAncestor()