Searched refs:dataType (Results 51 - 65 of 65) sorted by relevance

123

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCV9InstructionFactoryImpl.java68 SPARCRegister rs2, SPARCRegister rd, int dataType) {
69 return new SPARCV9CasInstruction(name, addr, rs2, rd, dataType);
67 newV9CasInstruction(String name, SPARCRegisterIndirectAddress addr, SPARCRegister rs2, SPARCRegister rd, int dataType) argument
H A DSPARCV9InstructionFactory.java36 SPARCRegister rs2, SPARCRegister rd, int dataType);
35 newV9CasInstruction(String name, SPARCRegisterIndirectAddress addr, SPARCRegister rs2, SPARCRegister rd, int dataType) argument
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DImageFactory.java62 public static BufferedImage createCCMImage(int cs, int dataType) argument
67 if (dataType == DataBuffer.TYPE_INT)
72 false, false, Transparency.OPAQUE, dataType);
75 cSpace, false, false, Transparency.OPAQUE, dataType);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DSampleModel.java100 protected int dataType; field in class:SampleModel
110 * @param dataType The data type of the DataBuffer storing the pixel data.
119 * @throws IllegalArgumentException if <code>dataType</code> is not
122 public SampleModel(int dataType, int w, int h, int numBands) argument
134 if (dataType < DataBuffer.TYPE_BYTE ||
135 (dataType > DataBuffer.TYPE_DOUBLE &&
136 dataType != DataBuffer.TYPE_UNDEFINED))
138 throw new IllegalArgumentException("Unsupported dataType: "+
139 dataType);
146 this.dataType
[all...]
H A DBufferedImage.java959 int dataType = raster.getDataBuffer().getDataType();
960 switch (dataType) {
978 dataType);
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_parseImage.h125 int dataType; /* Data type of the raster data */ member in struct:__anon674
H A Dawt_parseImage.c267 rasterP->dataType = INT_DATA_TYPE;
279 rasterP->dataType = BYTE_DATA_TYPE;
291 rasterP->dataType = SHORT_DATA_TYPE;
303 rasterP->dataType = BYTE_DATA_TYPE;
320 rasterP->dataType = BYTE_DATA_TYPE;
324 rasterP->dataType = UNKNOWN_DATA_TYPE;
372 if (rasterP->dataType > UNKNOWN_DATA_TYPE && /* data type has been recognized */
392 fprintf(stderr,"DataT : %d\n",rasterP->dataType);
661 switch(rasterP->dataType ) {
715 switch(rasterP->dataType) {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DImageUtil.java146 int dataType = sampleModel.getDataType();
149 switch(dataType) {
193 dataType);
867 int dataType = sampleModel.getDataType();
869 if (dataType < DataBuffer.TYPE_BYTE ||
870 //dataType == DataBuffer.TYPE_SHORT ||
871 dataType > DataBuffer.TYPE_DOUBLE) {
887 int dataTypeSize = DataBuffer.getDataTypeSize(dataType);
898 dataType);
H A DStandardMetadataFormat.java38 int dataType) {
40 addAttribute(elementName, "value", dataType, true, null);
36 addSingleAttributeElement(String elementName, String parentName, int dataType) argument
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DSurfaceData.java486 int dataType = 0;
490 dataType = DataBuffer.TYPE_INT;
493 dataType = DataBuffer.TYPE_USHORT;
498 smHw = new SinglePixelPackedSampleModel(dataType, width, height,
500 DataBuffer dbn = new D3DDataBufferNative(this, dataType,
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageReader.java1366 int dataType;
1368 dataType = DataBuffer.TYPE_BYTE;
1370 dataType = DataBuffer.TYPE_USHORT;
1377 dataType,
1403 dataType,
1485 dataType,
1511 dataType,
/openjdk7/jdk/src/macosx/native/apple/security/
H A DKeystoreImpl.m476 SecExternalItemType dataType = (isCertificate == JNI_TRUE ? kSecFormatX509Cert : kSecFormatWrappedPKCS8);
501 err = SecKeychainItemImport(cfDataToImport, NULL, &dataType, NULL,
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c85 int dataType; /* One of BYTE_DATA_TYPE, SHORT_DATA_TYPE, */ member in struct:__anon740
707 switch (dstRasterP->dataType) {
1710 switch (dstRasterP->dataType) {
1829 hintP->dataType = srcP->raster.dataType;
1861 hintP->dataType = srcP->raster.dataType;
1910 hintP->dataType = BYTE_DATA_TYPE;
1997 switch (rasterP->dataType) {
2138 int dataType local
2302 int dataType = BYTE_DATA_TYPE; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageWriter.java230 int dataType = sampleModel.getDataType();
614 destScanlineLength = destScanlineBytes / (DataBuffer.getDataTypeSize(dataType)>>3);
661 switch(dataType) {
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A DLCMS.c532 void releaseILData (JNIEnv *env, void* pData, jint dataType, argument
534 switch (dataType) {
655 IL_dataType_fID = (*env)->GetFieldID (env, IL, "dataType", "I");

Completed in 79 milliseconds

123