Home
last modified time | relevance | path

Searched refs:BUFFER_SIZE (Results 1 – 12 of 12) sorted by path

/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dcommons-io-2.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
H A Dhttpclient-4.5.5.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
H A Dhttpcore-4.4.9.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
/plugin/ditaa/ditaa/
H A Dditaa.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/htmlparser/ net/ ...
/plugin/jcapture/lib/
H A Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Djcapture.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dtransform-3.0.2.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DMovieEditorDialog.java1023 private final int BUFFER_SIZE; field in MovieEditorDialog.SoundPlayer
1032BUFFER_SIZE = (int) ((double) numChannels*sampleRate*validBits/(movie.getFramesPerSecond()*8)); //… in SoundPlayer()
1104 byte[] buf = new byte[BUFFER_SIZE]; in run()
H A DWavFile.java22 private final static int BUFFER_SIZE = 4096; field in WavFile
63 buffer = new byte[BUFFER_SIZE]; in WavFile()
364 if (bufferPointer == BUFFER_SIZE) { in writeSample()
365 oStream.write(buffer, 0, BUFFER_SIZE); in writeSample()
380 int read = iStream.read(buffer, 0, BUFFER_SIZE); in readSample()
/plugin/jdraw/lib/
H A Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
H A Dogg.js35 var BUFFER_SIZE = 8192;
39 this.buf = Ogg._malloc(BUFFER_SIZE);
78 while (this._stream.available(BUFFER_SIZE)) {
79 Ogg.HEAPU8.set(this._stream.readBuffer(BUFFER_SIZE).data, this.buf);
80 Ogg._AVOggRead(this.ogg, this.buf, BUFFER_SIZE, this.callback);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapQueue.php37 protected const BUFFER_SIZE = 8192;
149 if ($bufferLen >= self::BUFFER_SIZE) {
150 $this->socket->write(substr($buffer, 0, self::BUFFER_SIZE));
151 $buffer = $bufferLen > self::BUFFER_SIZE ? substr($buffer, self::BUFFER_SIZE) : '';
33 protected const BUFFER_SIZE = 8192; global() define in FreeDSx\\Ldap\\Protocol\\LdapQueue