Searched refs:UINT8 (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djmorecfg.h136 /* UINT8 must hold at least the values 0..255. */
139 typedef unsigned char UINT8; typedef
142 typedef char UINT8; typedef
144 typedef short UINT8; typedef
H A Djpeglib.h106 UINT8 bits[17]; /* bits[k] = # of symbols with codes of */
108 UINT8 huffval[256]; /* The symbols, in order of incr code length */
201 UINT8 marker; /* marker code: JPEG_COM, or JPEG_APP0+n */
313 UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */
314 UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */
315 UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */
342 UINT8 JFIF_major_version; /* What to write for the JFIF version number */
343 UINT8 JFIF_minor_version;
348 UINT8 density_unit; /* JFIF code for pixel size units */
545 UINT8 arith_dc_
[all...]
H A Djcparam.c157 JHUFF_TBL **htblptr, const UINT8 *bits, const UINT8 *val)
178 MEMCOPY((*htblptr)->huffval, val, nsymbols * SIZEOF(UINT8));
190 static const UINT8 bits_dc_luminance[17] =
192 static const UINT8 val_dc_luminance[] =
195 static const UINT8 bits_dc_chrominance[17] =
197 static const UINT8 val_dc_chrominance[] =
200 static const UINT8 bits_ac_luminance[17] =
202 static const UINT8 val_ac_luminance[] =
225 static const UINT8 bits_ac_chrominanc
[all...]
H A Djdhuff.h49 UINT8 look_sym[1<<HUFF_LOOKAHEAD]; /* symbol, or unused */
H A Djdsample.c61 UINT8 h_expand[MAX_COMPONENTS];
62 UINT8 v_expand[MAX_COMPONENTS];
470 upsample->h_expand[ci] = (UINT8) (h_out_group / h_in_group);
471 upsample->v_expand[ci] = (UINT8) (v_out_group / v_in_group);
H A Djdmarker.c402 cinfo->arith_ac_K[index-NUM_ARITH_TBLS] = (UINT8) val;
404 cinfo->arith_dc_L[index] = (UINT8) (val & 0x0F);
405 cinfo->arith_dc_U[index] = (UINT8) (val >> 4);
430 UINT8 bits[17];
431 UINT8 huffval[256];
699 cinfo->Adobe_transform = (UINT8) transform;
784 cur_marker->marker = (UINT8) cinfo->unread_marker;
H A DimageioJPEG.c742 huff_ptr->bits[i] = (UINT8)hlensBody[i-1];
763 huff_ptr->huffval[i] = (UINT8)hvalsBody[i];
2631 UINT8** scale = NULL;
2680 scale = (UINT8**) calloc(numBands, sizeof(UINT8*));
2691 scale[i] = (UINT8*) malloc((maxBandValue + 1) * sizeof(UINT8));
2702 scale[i][j] = (UINT8)
H A Djchuff.c712 UINT8 bits[MAX_CLEN+1]; /* bits[k] = # of symbols with code length k */
834 htbl->huffval[p] = (UINT8) j;
H A Djquant1.c83 static const UINT8 base_dither_matrix[ODITHER_SIZE][ODITHER_SIZE] = {
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DSoundDefs.h85 typedef unsigned char UINT8; typedef
H A DDirectAudioDevice.c55 UINT8* conversionBuffer;
112 static INLINE UINT8 MAP_ClipAndConvertToUByte(MAP_Sample sample) {
119 return (UINT8) ((sample >> 8) + 128);
146 #define MAP_UINT82SAMPLE(by) ((MAP_Sample) (((INT32) ((UINT8) (by) - 128)) << 8))
147 #define MAP_SAMPLE2UINT8(sample) ((UINT8) ((((MAP_Sample) (sample)) >> 8) + 128))
318 void handleGainAndConversion(DAUDIO_Info* info, UINT8* input, UINT8* output,
592 UINT8* data;
593 UINT8* dataOffset;
594 UINT8* convertedDat
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/core/
H A DPrimitiveCoder.hs53 data FFIType = SINT8 | UINT8 | SINT16 | UINT16 | SINT32 | UINT32
67 ffitype _ Nuchar = UINT8
83 sizeof UINT8 = 1

Completed in 60 milliseconds