Searched refs:INT32 (Results 1 - 25 of 33) sorted by relevance

12

/asus-wl-520gu-7.0.1.45/src/router/jpeg-6b/
H A Djidctred.c58 #define FIX_0_211164243 ((INT32) 1730) /* FIX(0.211164243) */
59 #define FIX_0_509795579 ((INT32) 4176) /* FIX(0.509795579) */
60 #define FIX_0_601344887 ((INT32) 4926) /* FIX(0.601344887) */
61 #define FIX_0_720959822 ((INT32) 5906) /* FIX(0.720959822) */
62 #define FIX_0_765366865 ((INT32) 6270) /* FIX(0.765366865) */
63 #define FIX_0_850430095 ((INT32) 6967) /* FIX(0.850430095) */
64 #define FIX_0_899976223 ((INT32) 7373) /* FIX(0.899976223) */
65 #define FIX_1_061594337 ((INT32) 8697) /* FIX(1.061594337) */
66 #define FIX_1_272758580 ((INT32) 10426) /* FIX(1.272758580) */
67 #define FIX_1_451774981 ((INT32) 1189
[all...]
H A Djidctint.c70 * intermediate INT32 array would be needed.)
93 #define FIX_0_298631336 ((INT32) 2446) /* FIX(0.298631336) */
94 #define FIX_0_390180644 ((INT32) 3196) /* FIX(0.390180644) */
95 #define FIX_0_541196100 ((INT32) 4433) /* FIX(0.541196100) */
96 #define FIX_0_765366865 ((INT32) 6270) /* FIX(0.765366865) */
97 #define FIX_0_899976223 ((INT32) 7373) /* FIX(0.899976223) */
98 #define FIX_1_175875602 ((INT32) 9633) /* FIX(1.175875602) */
99 #define FIX_1_501321110 ((INT32) 12299) /* FIX(1.501321110) */
100 #define FIX_1_847759065 ((INT32) 15137) /* FIX(1.847759065) */
101 #define FIX_1_961570560 ((INT32) 1606
[all...]
H A Djfdctint.c70 * array is INT32 anyway.)
93 #define FIX_0_298631336 ((INT32) 2446) /* FIX(0.298631336) */
94 #define FIX_0_390180644 ((INT32) 3196) /* FIX(0.390180644) */
95 #define FIX_0_541196100 ((INT32) 4433) /* FIX(0.541196100) */
96 #define FIX_0_765366865 ((INT32) 6270) /* FIX(0.765366865) */
97 #define FIX_0_899976223 ((INT32) 7373) /* FIX(0.899976223) */
98 #define FIX_1_175875602 ((INT32) 9633) /* FIX(1.175875602) */
99 #define FIX_1_501321110 ((INT32) 12299) /* FIX(1.501321110) */
100 #define FIX_1_847759065 ((INT32) 15137) /* FIX(1.847759065) */
101 #define FIX_1_961570560 ((INT32) 1606
[all...]
H A Djdct.h19 * for 8-bit samples, INT32 for 12-bit samples. (NOTE: Floating-point DCT
32 typedef INT32 DCTELEM; /* must have 32 bits */
61 typedef INT32 IFAST_MULT_TYPE; /* need 32 bits for scaled quantizers */
125 * All values are expected to be of type INT32.
131 #define ONE ((INT32) 1)
139 #define FIX(x) ((INT32) ((x) * CONST_SCALE + 0.5))
141 /* Descale and correctly round an INT32 value that's scaled by N bits.
148 /* Multiply an INT32 variable by an INT32 constant to yield an INT32 resul
[all...]
H A Djdcolor.c24 INT32 * Cr_g_tab; /* => table for Cr to G conversion */
25 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
61 #define ONE_HALF ((INT32) 1 << (SCALEBITS-1))
62 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
74 INT32 x;
83 cconvert->Cr_g_tab = (INT32 *)
85 (MAXJSAMPLE+1) * SIZEOF(INT32));
86 cconvert->Cb_g_tab = (INT32 *)
88 (MAXJSAMPLE+1) * SIZEOF(INT32));
134 register INT32 * Crgta
[all...]
H A Drdbmp.c248 #define GET_4B(array,offset) ((INT32) UCH(array[offset]) + \
249 (((INT32) UCH(array[offset+1])) << 8) + \
250 (((INT32) UCH(array[offset+2])) << 16) + \
251 (((INT32) UCH(array[offset+3])) << 24))
252 INT32 bfOffBits;
253 INT32 headerSize;
254 INT32 biWidth = 0; /* initialize to avoid compiler warning */
255 INT32 biHeight = 0;
257 INT32 biCompression;
258 INT32 biXPelsPerMete
[all...]
H A Djidctflt.c221 outptr[0] = range_limit[(int) DESCALE((INT32) (tmp0 + tmp7), 3)
223 outptr[7] = range_limit[(int) DESCALE((INT32) (tmp0 - tmp7), 3)
225 outptr[1] = range_limit[(int) DESCALE((INT32) (tmp1 + tmp6), 3)
227 outptr[6] = range_limit[(int) DESCALE((INT32) (tmp1 - tmp6), 3)
229 outptr[2] = range_limit[(int) DESCALE((INT32) (tmp2 + tmp5), 3)
231 outptr[5] = range_limit[(int) DESCALE((INT32) (tmp2 - tmp5), 3)
233 outptr[4] = range_limit[(int) DESCALE((INT32) (tmp3 + tmp4), 3)
235 outptr[3] = range_limit[(int) DESCALE((INT32) (tmp3 - tmp4), 3)
H A Djdmerge.c55 INT32 * Cr_g_tab; /* => table for Cr to G conversion */
56 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
73 #define ONE_HALF ((INT32) 1 << (SCALEBITS-1))
74 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
87 INT32 x;
96 upsample->Cr_g_tab = (INT32 *)
98 (MAXJSAMPLE+1) * SIZEOF(INT32));
99 upsample->Cb_g_tab = (INT32 *)
101 (MAXJSAMPLE+1) * SIZEOF(INT32));
240 INT32 * Crgta
[all...]
H A Djdhuff.h28 INT32 maxcode[18]; /* largest code of length k (-1 if none) */
30 INT32 valoffset[17]; /* huffval[] offset for codes of length k */
72 typedef INT32 bit_buf_type; /* type of bit-extraction buffer */
H A Djfdctfst.c79 #define FIX_0_382683433 ((INT32) 98) /* FIX(0.382683433) */
80 #define FIX_0_541196100 ((INT32) 139) /* FIX(0.541196100) */
81 #define FIX_0_707106781 ((INT32) 181) /* FIX(0.707106781) */
82 #define FIX_1_306562965 ((INT32) 334) /* FIX(1.306562965) */
102 /* Multiply a DCTELEM variable by an INT32 constant, and immediately
H A Djccolor.c22 INT32 * rgb_ycc_tab; /* => table for RGB to YCbCr conversion */
59 #define CBCR_OFFSET ((INT32) CENTERJSAMPLE << SCALEBITS)
60 #define ONE_HALF ((INT32) 1 << (SCALEBITS-1))
61 #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
89 INT32 * rgb_ycc_tab;
90 INT32 i;
93 cconvert->rgb_ycc_tab = rgb_ycc_tab = (INT32 *)
95 (TABLE_SIZE * SIZEOF(INT32)));
136 register INT32 * ctab = cconvert->rgb_ycc_tab;
192 register INT32 * cta
[all...]
H A Dwrbmp.c170 INT32 headersize, bfSize;
191 bfSize = headersize + (INT32) dest->row_width * (INT32) cinfo->output_height;
213 PUT_4B(bmpinfoheader, 24, (INT32) (cinfo->X_density*100)); /* XPels/M */
214 PUT_4B(bmpinfoheader, 28, (INT32) (cinfo->Y_density*100)); /* XPels/M */
235 INT32 headersize, bfSize;
256 bfSize = headersize + (INT32) dest->row_width * (INT32) cinfo->output_height;
H A Djdmarker.c154 * V should be declared unsigned int or perhaps INT32.
240 INT32 length;
304 INT32 length;
376 INT32 length;
422 INT32 length;
456 if (count > 256 || ((INT32) count) > length)
493 INT32 length;
551 INT32 length;
585 unsigned int datalen, INT32 remaining)
591 INT32 totalle
[all...]
H A Djquant2.c184 typedef INT32 FSERROR; /* may need more than 16 bits */
185 typedef INT32 LOCFSERROR; /* be sure calculation temps are big enough */
264 INT32 volume;
299 register INT32 maxv = 0;
322 INT32 dist0,dist1,dist2;
661 INT32 minmaxdist, min_dist, max_dist, tdist;
662 INT32 mindist[MAXNUMCOLORS]; /* min distance to colormap entry i */
786 register INT32 * bptr; /* pointer into bestdist[] array */
788 INT32 dist0, dist1; /* initial distance values */
789 register INT32 dist
[all...]
H A Djddctmgr.c200 DESCALE(MULTIPLY16V16((INT32) qtbl->quantval[i],
201 (INT32) aanscales[i]),
H A Djidctfst.c92 #define FIX_1_082392200 ((INT32) 277) /* FIX(1.082392200) */
93 #define FIX_1_414213562 ((INT32) 362) /* FIX(1.414213562) */
94 #define FIX_1_847759065 ((INT32) 473) /* FIX(1.847759065) */
95 #define FIX_2_613125930 ((INT32) 669) /* FIX(2.613125930) */
115 /* Multiply a DCTELEM variable by an INT32 constant, and immediately
125 * declared INT32, so a 32-bit multiply will be used.
137 * We assume that int right shift is unsigned if INT32 right shift is.
H A Djmorecfg.h158 /* INT32 must hold at least signed 32-bit values. */
160 #ifndef XMD_H /* X11/xmd.h correctly defines INT32 */
161 typedef long INT32; typedef
H A Djdhuff.c207 if (((INT32) code) >= (((INT32) 1) << si))
221 dtbl->valoffset[l] = (INT32) p - (INT32) huffcode[p];
403 register INT32 code;
H A Djquant1.c131 typedef INT32 FSERROR; /* may need more than 16 bits */
132 typedef INT32 LOCFSERROR; /* be sure calculation temps are big enough */
254 return (int) (((INT32) j * MAXJSAMPLE + maxj/2) / maxj);
264 return (int) (((INT32) (2*j + 1) * MAXJSAMPLE + maxj) / (2*maxj));
400 INT32 num,den;
410 den = 2 * ODITHER_CELLS * ((INT32) (ncolors - 1));
413 num = ((INT32) (ODITHER_CELLS-1 - 2*((int)base_dither_matrix[j][k])))
H A Djchuff.c30 INT32 put_buffer; /* current bit-accumulation buffer */
235 if (((INT32) code) >= (((INT32) 1) << si))
306 register INT32 put_buffer = (INT32) code;
313 put_buffer &= (((INT32) 1)<<size) - 1; /* mask off any extra bits in code */
H A Djcsample.c147 INT32 outvalue;
170 outvalue += (INT32) GETJSAMPLE(*inptr++);
299 INT32 membersum, neighsum, memberscale, neighscale;
399 INT32 membersum, neighsum, memberscale, neighscale;
H A Djcphuff.c35 INT32 put_buffer; /* current bit-accumulation buffer */
72 /* IRIGHT_SHIFT is like RIGHT_SHIFT, but works on int rather than INT32.
73 * We assume that int right shift is unsigned if INT32 right shift is,
232 register INT32 put_buffer = (INT32) code;
242 put_buffer &= (((INT32) 1)<<size) - 1; /* mask off any extra bits in code */
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dwavefront.h58 typedef int INT32; typedef
327 INT32 Fraction:4;
328 INT32 Integer:20;
329 INT32 Unused:8;
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dwavefront.h58 typedef int INT32; typedef
327 INT32 Fraction:4;
328 INT32 Integer:20;
329 INT32 Unused:8;
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/acpi/include/
H A Dactypes.h42 * INT32 32-bit (4 byte) signed value
63 typedef int INT32; typedef
86 typedef long INT32; typedef
123 typedef int INT32; typedef
128 typedef INT32 NATIVE_INT;
166 typedef INT32 s32;

Completed in 397 milliseconds

12