Searched defs:signed (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFormat.java237 * @param signed indicates whether the data is signed or unsigned
243 int channels, boolean signed, boolean bigEndian) {
245 this((signed == true ? Encoding.PCM_SIGNED : Encoding.PCM_UNSIGNED),
557 * time. The numbers may be signed or unsigned integers or floats.
585 * Specifies signed, linear PCM data.
242 AudioFormat(float sampleRate, int sampleSizeInBits, int channels, boolean signed, boolean bigEndian) argument
/openjdk7/hotspot/src/share/vm/libadt/
H A Dport.hpp70 #define signed macro
139 #define signed macro
146 #define signed macro
172 typedef signed char int8;
177 //typedef signed short int16; // Exactly 16bits signed
185 typedef int32_t int32; // Exactly 32bits signed
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRUtils.java197 public static long intToULong(int signed) { argument
198 if (signed < 0) {
199 return ((long) signed) + (((long) Integer.MAX_VALUE) -
203 return signed;
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetMetaDataImpl.java255 * Sets whether a value stored in the designated column is a signed
261 * value is a signed number;
268 colInfo[columnIndex].signed = property;
578 * a signed number.
582 * @return <code>true</code> if if a value in the designated column is a signed
589 return colInfo[columnIndex].signed;
982 * The field that indicates whether the value in this column is a signed number.
987 public boolean signed; field in class:RowSetMetaDataImpl.ColInfo
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DComponentColorModel.java54 * represented by that instance may be signed or unsigned and may
109 * are treated as signed short, float, or double values.
144 * component values or when signed sample values outside a certain range
145 * are used. (As an example, specifying an alpha component as a signed
180 * <code>signed</code> is <code>true</code> for <code>short</code>,
185 private boolean signed; // true for transfer types short, float, double field in class:ComponentColorModel
281 signed = false;
285 signed = true;
290 signed = true;
501 if (nonStdScale || signed) {
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassReader.java735 private int getInt(char ch, boolean signed) throws IOException { argument
736 if (signed) {
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DWrapper.java31 BYTE(Byte.class, byte.class, 'B', (Byte)(byte)0, new byte[0], Format.signed(8)),
32 SHORT(Short.class, short.class, 'S', (Short)(short)0, new short[0], Format.signed(16)),
34 INT(Integer.class, int.class, 'I', (Integer)/*(int)*/0, new int[0], Format.signed(32)),
35 LONG(Long.class, long.class, 'J', (Long)(long)0, new long[0], Format.signed(64)),
101 static int signed(int size) { return format(SIGNED, size, (size > 32 ? 2 : 1)); } method in class:Wrapper.Format
123 /* Is the wrapped value a signed integral type (one of byte, short, int, or long)? */
148 // All conversions are allowed in the enum order between floats and signed ints.
149 // First detect non-signed non-float types (boolean, char, Object, void).
158 // All signed and float conversions in the enum order are widening.
185 // check relations with signed integra
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDirectAudioDevice.java130 // add the other signed'ness for 8-bit
269 int encoding, boolean signed, boolean bigEndian) {
273 enc = signed?AudioFormat.Encoding.PCM_SIGNED:AudioFormat.Encoding.PCM_UNSIGNED;
314 // if this is PCM and 8-bit, then try with signed-ness magic
479 /* some magic to account for not-supported endianness or signed-ness */
1470 boolean signed,
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
/openjdk7/jdk/src/share/native/sun/java2d/opengl/J2D_GL/
H A Dgl.h125 #define signed macro
157 typedef signed char GLbyte; /* 1-byte signed */
158 typedef short GLshort; /* 2-byte signed */
159 typedef int GLint; /* 4-byte signed */
163 typedef int GLsizei; /* 4-byte signed */

Completed in 80 milliseconds