Searched refs:bigEndian (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/util/
H A DKrbDataInputStream.java46 private boolean bigEndian = true; field in class:KrbDataInputStream
51 bigEndian = true;
53 bigEndian = false;
70 if (bigEndian) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DPage.java135 public short getShort(long address, boolean bigEndian) { argument
137 if (bigEndian) {
148 public char getChar(long address, boolean bigEndian) { argument
149 return (char) getShort(address, bigEndian);
152 public int getInt(long address, boolean bigEndian) { argument
154 if (bigEndian) {
169 public long getLong(long address, boolean bigEndian) { argument
171 if (bigEndian) {
194 public float getFloat(long address, boolean bigEndian) { argument
195 return Float.intBitsToFloat(getInt(address, bigEndian));
198 getDouble(long address, boolean bigEndian) argument
[all...]
H A DPageCache.java87 public synchronized short getShort(long address, boolean bigEndian) { argument
88 return checkPage(getPage(address & pageMask), address).getShort(address, bigEndian);
91 public synchronized char getChar(long address, boolean bigEndian) { argument
92 return checkPage(getPage(address & pageMask), address).getChar(address, bigEndian);
95 public synchronized int getInt(long address, boolean bigEndian) { argument
96 return checkPage(getPage(address & pageMask), address).getInt(address, bigEndian);
99 public synchronized long getLong(long address, boolean bigEndian) { argument
100 return checkPage(getPage(address & pageMask), address).getLong(address, bigEndian);
103 public synchronized float getFloat(long address, boolean bigEndian) { argument
104 return checkPage(getPage(address & pageMask), address).getFloat(address, bigEndian);
107 getDouble(long address, boolean bigEndian) argument
[all...]
H A DDebuggerBase.java66 private boolean bigEndian; field in class:DebuggerBase
173 bigEndian = machDesc.isBigEndian();
180 protected final void setBigEndian(boolean bigEndian) { argument
181 this.bigEndian = bigEndian;
267 return cache.getChar(address, bigEndian);
281 return cache.getDouble(address, bigEndian);
295 return cache.getFloat(address, bigEndian);
309 return cache.getInt(address, bigEndian);
323 return cache.getLong(address, bigEndian);
[all...]
/openjdk7/jdk/src/share/classes/java/nio/
H A DHeap-X-Buffer.java.template253 return Bits.getChar(this, ix(nextGetIndex(2)), bigEndian);
257 return Bits.getChar(this, ix(checkIndex(i, 2)), bigEndian);
264 Bits.putChar(this, ix(nextPutIndex(2)), x, bigEndian);
273 Bits.putChar(this, ix(checkIndex(i, 2)), x, bigEndian);
283 return (bigEndian
304 return Bits.getShort(this, ix(nextGetIndex(2)), bigEndian);
308 return Bits.getShort(this, ix(checkIndex(i, 2)), bigEndian);
315 Bits.putShort(this, ix(nextPutIndex(2)), x, bigEndian);
324 Bits.putShort(this, ix(checkIndex(i, 2)), x, bigEndian);
334 return (bigEndian
[all...]
H A DBits.java86 static char getChar(ByteBuffer bb, int bi, boolean bigEndian) { argument
87 return bigEndian ? getCharB(bb, bi) : getCharL(bb, bi);
90 static char getChar(long a, boolean bigEndian) { argument
91 return bigEndian ? getCharB(a) : getCharL(a);
117 static void putChar(ByteBuffer bb, int bi, char x, boolean bigEndian) { argument
118 if (bigEndian)
124 static void putChar(long a, char x, boolean bigEndian) { argument
125 if (bigEndian)
158 static short getShort(ByteBuffer bb, int bi, boolean bigEndian) { argument
159 return bigEndian
162 getShort(long a, boolean bigEndian) argument
189 putShort(ByteBuffer bb, int bi, short x, boolean bigEndian) argument
196 putShort(long a, short x, boolean bigEndian) argument
241 getInt(ByteBuffer bb, int bi, boolean bigEndian) argument
245 getInt(long a, boolean bigEndian) argument
282 putInt(ByteBuffer bb, int bi, int x, boolean bigEndian) argument
289 putInt(long a, int x, boolean bigEndian) argument
356 getLong(ByteBuffer bb, int bi, boolean bigEndian) argument
360 getLong(long a, boolean bigEndian) argument
417 putLong(ByteBuffer bb, int bi, long x, boolean bigEndian) argument
424 putLong(long a, long x, boolean bigEndian) argument
450 getFloat(ByteBuffer bb, int bi, boolean bigEndian) argument
454 getFloat(long a, boolean bigEndian) argument
474 putFloat(ByteBuffer bb, int bi, float x, boolean bigEndian) argument
481 putFloat(long a, float x, boolean bigEndian) argument
507 getDouble(ByteBuffer bb, int bi, boolean bigEndian) argument
511 getDouble(long a, boolean bigEndian) argument
531 putDouble(ByteBuffer bb, int bi, double x, boolean bigEndian) argument
538 putDouble(long a, double x, boolean bigEndian) argument
[all...]
H A DDirect-X-Buffer-bin.java.template39 return Bits.get$Type$(a, bigEndian);
58 Bits.put$Type$(a, x, bigEndian);
92 return (bigEndian
H A DX-Buffer.java.template1403 boolean bigEndian // package-private
1419 return bigEndian ? ByteOrder.BIG_ENDIAN : ByteOrder.LITTLE_ENDIAN;
1433 bigEndian = (bo == ByteOrder.BIG_ENDIAN);
1435 (bigEndian == (Bits.byteOrder() == ByteOrder.BIG_ENDIAN));
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFormat.java162 protected boolean bigEndian; field in class:AudioFormat
180 * @param bigEndian indicates whether the data for a single sample
185 int channels, int frameSize, float frameRate, boolean bigEndian) {
193 this.bigEndian = bigEndian;
210 * @param bigEndian indicates whether the data for a single sample
221 boolean bigEndian, Map<String, Object> properties) {
223 frameSize, frameRate, bigEndian);
238 * @param bigEndian indicates whether the data for a single sample
243 int channels, boolean signed, boolean bigEndian) {
184 AudioFormat(Encoding encoding, float sampleRate, int sampleSizeInBits, int channels, int frameSize, float frameRate, boolean bigEndian) argument
218 AudioFormat(Encoding encoding, float sampleRate, int sampleSizeInBits, int channels, int frameSize, float frameRate, boolean bigEndian, Map<String, Object> properties) argument
242 AudioFormat(float sampleRate, int sampleSizeInBits, int channels, boolean signed, boolean bigEndian) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DPlatform.java75 private static boolean bigEndian; field in class:Platform
120 return bigEndian;
240 bigEndian = nIsBigEndian();
H A DDirectAudioDevice.java269 int encoding, boolean signed, boolean bigEndian) {
301 v.add(new AudioFormat(enc, sampleRate, bits, channels, frameSizeInBytes, sampleRate, bigEndian));
1471 boolean bigEndian,
268 addFormat(Vector v, int bits, int frameSizeInBytes, int channels, float sampleRate, int encoding, boolean signed, boolean bigEndian) argument
1464 nOpen(int mixerIndex, int deviceID, boolean isSource, int encoding, float sampleRate, int sampleSizeInBits, int frameSize, int channels, boolean signed, boolean bigEndian, int bufferSize) argument
H A DDLSSoundbank.java936 boolean bigEndian = audioformat.isBigEndian();
950 if (bigEndian) {
951 bigEndian = false;
958 sampleSizeInBits, channels, frameSize, frameRate, bigEndian);
H A DAudioFloatConverter.java66 boolean bigEndian = format.isBigEndian();
69 offset = bigEndian ? (stepsize - 1) : 0;
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DByteArrayAccess.java74 private static final boolean bigEndian; field in class:ByteArrayAccess
87 bigEndian =
113 } else if (bigEndian && ((inOfs & 3) == 0)) {
152 } else if (bigEndian && ((inOfs & 3) == 0)) {
186 } else if (bigEndian && ((outOfs & 3) == 0)) {
209 } else if (bigEndian && ((outOfs & 3) == 0)) {
230 } else if (bigEndian && ((inOfs & 3) == 0)) {
269 } else if (bigEndian && ((inOfs & 3) == 0)) {
303 } else if (bigEndian && ((outOfs & 3) == 0)) {
326 } else if (bigEndian
[all...]
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DDirectAudio.h63 int bigEndian);
H A DDirectAudioDevice.c447 int bigEndian) {
458 TRACE3("enc=%d, signed=%d, bigEndian=%d\n", encoding, isSigned, bigEndian);
461 channels, sampleRate, encoding, isSigned, bigEndian);
444 DAUDIO_AddAudioFormat(void* creatorV, int significantBits, int frameSizeInBytes, int channels, float sampleRate, int encoding, int isSigned, int bigEndian) argument

Completed in 136 milliseconds