Searched refs:readCount (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DPCMtoPCMCodec.java504 int readCount = super.read(b, off, len);
507 if(readCount<0) { // EOF or error
508 return readCount;
516 switchSigned8bit(b,off,len,readCount);
520 switchEndian(b,off,len,readCount);
524 switchSignedLE(b,off,len,readCount);
528 switchSignedBE(b,off,len,readCount);
533 switchSignedLE(b,off,len,readCount);
534 switchEndian(b,off,len,readCount);
539 switchSignedBE(b,off,len,readCount);
552 switchSigned8bit(byte[] b, int off, int len, int readCount) argument
559 switchSignedBE(byte[] b, int off, int len, int readCount) argument
566 switchSignedLE(byte[] b, int off, int len, int readCount) argument
573 switchEndian(byte[] b, int off, int len, int readCount) argument
[all...]
H A DAlawCodec.java377 int readCount = 0;
382 while ((readCount = super.read(tempBuffer,0,readLen))>0) {
384 for (i = 0; i < readCount; i+=2) {
417 readLeft -= readCount;
421 if( currentPos==off && readCount<0 ) { // EOF or error
422 return readCount;
432 int readCount = super.read(b, readOffset, readLen);
434 for (i = off; i < (off + (readCount*2)); i+=2) {
440 if( readCount<0 ) { // EOF or error
441 return readCount;
[all...]
H A DUlawCodec.java356 int readCount = 0;
361 while ((readCount = super.read(tempBuffer,0,readLen))>0) {
362 for(i = 0; i < readCount; i+=2) {
392 readLeft -= readCount;
395 if( currentPos==off && readCount<0 ) { // EOF or error on read
396 return readCount;
403 int readCount = super.read(b, readOffset, readLen);
405 if(readCount<0) { // EOF or error
406 return readCount;
408 for (i = off; i < (off + (readCount*
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DCommandInterpreter.java624 int readCount(StringTokenizer t) { method in class:CommandInterpreter
643 int nLevels = readCount(t);
666 int nLevels = readCount(t);

Completed in 46 milliseconds