Searched defs:highByte (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAlawCodec.java273 int highByte = 0; field in class:AlawCodec.AlawCodecStream
308 highByte = 0;
313 highByte = 1;
387 sample = (short)(( (tempBuffer[i + highByte]) << 8) & 0xFF00);
H A DUlawCodec.java259 int highByte = 0; field in class:UlawCodec.UlawCodecStream
293 highByte = 0;
298 highByte = 1;
364 sample = (short)(( (tempBuffer[i + highByte]) << 8) & 0xFF00);

Completed in 291 milliseconds