Home
last modified time | relevance | path

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

/aoo4110/main/filter/source/xsltfilter/com/sun/star/comp/xsltfilter/
H A DBase64.java1373 private int bufferLength; // Length of buffer (3 or 4) field in Base64.InputStream
1420 this.bufferLength = encode ? 4 : 3; in InputStream()
1421 this.buffer = new byte[ bufferLength ]; in InputStream()
1535 if( position >= bufferLength ) in read()
1609 private int bufferLength; field in Base64.OutputStream
1655 this.bufferLength = encode ? 3 : 4; in OutputStream()
1656 this.buffer = new byte[ bufferLength ]; in OutputStream()
1692 if( position >= bufferLength ) // Enough to encode. in write()
1694 out.write( encode3to4( b4, buffer, bufferLength, options ) ); in write()
1714 if( position >= bufferLength ) // Enough to output. in write()

Completed in 12 milliseconds