DCTELEM            32 third_party/libjpeg/jcdctmgr.c   DCTELEM * divisors[NUM_QUANT_TBLS];
DCTELEM            60 third_party/libjpeg/jcdctmgr.c   DCTELEM * dtbl;
DCTELEM            79 third_party/libjpeg/jcdctmgr.c 	fdct->divisors[qtblno] = (DCTELEM *)
DCTELEM            81 third_party/libjpeg/jcdctmgr.c 				      DCTSIZE2 * SIZEOF(DCTELEM));
DCTELEM            85 third_party/libjpeg/jcdctmgr.c 	dtbl[i] = ((DCTELEM) qtbl->quantval[i]) << 3;
DCTELEM           113 third_party/libjpeg/jcdctmgr.c 	  fdct->divisors[qtblno] = (DCTELEM *)
DCTELEM           115 third_party/libjpeg/jcdctmgr.c 					DCTSIZE2 * SIZEOF(DCTELEM));
DCTELEM           119 third_party/libjpeg/jcdctmgr.c 	  dtbl[i] = (DCTELEM)
DCTELEM           189 third_party/libjpeg/jcdctmgr.c   DCTELEM * divisors = fdct->divisors[compptr->quant_tbl_no];
DCTELEM           190 third_party/libjpeg/jcdctmgr.c   DCTELEM workspace[DCTSIZE2];	/* work area for FDCT subroutine */
DCTELEM           197 third_party/libjpeg/jcdctmgr.c     { register DCTELEM *workspaceptr;
DCTELEM           227 third_party/libjpeg/jcdctmgr.c     { register DCTELEM temp, qval;
DCTELEM            35 third_party/libjpeg/jdct.h typedef JMETHOD(void, forward_DCT_method_ptr, (DCTELEM * data));
DCTELEM            97 third_party/libjpeg/jdct.h EXTERN(void) jpeg_fdct_islow JPP((DCTELEM * data));
DCTELEM            98 third_party/libjpeg/jdct.h EXTERN(void) jpeg_fdct_ifast JPP((DCTELEM * data));
DCTELEM           106 third_party/libjpeg/jfdctfst.c #define MULTIPLY(var,const)  ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
DCTELEM           114 third_party/libjpeg/jfdctfst.c jpeg_fdct_ifast (DCTELEM * data)
DCTELEM           116 third_party/libjpeg/jfdctfst.c   DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
DCTELEM           117 third_party/libjpeg/jfdctfst.c   DCTELEM tmp10, tmp11, tmp12, tmp13;
DCTELEM           118 third_party/libjpeg/jfdctfst.c   DCTELEM z1, z2, z3, z4, z5, z11, z13;
DCTELEM           119 third_party/libjpeg/jfdctfst.c   DCTELEM *dataptr;
DCTELEM           140 third_party/libjpeg/jfdctint.c jpeg_fdct_islow (DCTELEM * data)
DCTELEM           145 third_party/libjpeg/jfdctint.c   DCTELEM *dataptr;
DCTELEM           173 third_party/libjpeg/jfdctint.c     dataptr[0] = (DCTELEM) ((tmp10 + tmp11) << PASS1_BITS);
DCTELEM           174 third_party/libjpeg/jfdctint.c     dataptr[4] = (DCTELEM) ((tmp10 - tmp11) << PASS1_BITS);
DCTELEM           177 third_party/libjpeg/jfdctint.c     dataptr[2] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865),
DCTELEM           179 third_party/libjpeg/jfdctint.c     dataptr[6] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp12, - FIX_1_847759065),
DCTELEM           205 third_party/libjpeg/jfdctint.c     dataptr[7] = (DCTELEM) DESCALE(tmp4 + z1 + z3, CONST_BITS-PASS1_BITS);
DCTELEM           206 third_party/libjpeg/jfdctint.c     dataptr[5] = (DCTELEM) DESCALE(tmp5 + z2 + z4, CONST_BITS-PASS1_BITS);
DCTELEM           207 third_party/libjpeg/jfdctint.c     dataptr[3] = (DCTELEM) DESCALE(tmp6 + z2 + z3, CONST_BITS-PASS1_BITS);
DCTELEM           208 third_party/libjpeg/jfdctint.c     dataptr[1] = (DCTELEM) DESCALE(tmp7 + z1 + z4, CONST_BITS-PASS1_BITS);
DCTELEM           238 third_party/libjpeg/jfdctint.c     dataptr[DCTSIZE*0] = (DCTELEM) DESCALE(tmp10 + tmp11, PASS1_BITS);
DCTELEM           239 third_party/libjpeg/jfdctint.c     dataptr[DCTSIZE*4] = (DCTELEM) DESCALE(tmp10 - tmp11, PASS1_BITS);
DCTELEM           242 third_party/libjpeg/jfdctint.c     dataptr[DCTSIZE*2] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865),
DCTELEM           244 third_party/libjpeg/jfdctint.c     dataptr[DCTSIZE*6] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp12, - FIX_1_847759065),
DCTELEM           270 third_party/libjpeg/jfdctint.c     dataptr[DCTSIZE*7] = (DCTELEM) DESCALE(tmp4 + z1 + z3,
DCTELEM           272 third_party/libjpeg/jfdctint.c     dataptr[DCTSIZE*5] = (DCTELEM) DESCALE(tmp5 + z2 + z4,
DCTELEM           274 third_party/libjpeg/jfdctint.c     dataptr[DCTSIZE*3] = (DCTELEM) DESCALE(tmp6 + z2 + z3,
DCTELEM           276 third_party/libjpeg/jfdctint.c     dataptr[DCTSIZE*1] = (DCTELEM) DESCALE(tmp7 + z1 + z4,
DCTELEM           119 third_party/libjpeg/jidctfst.c #define MULTIPLY(var,const)  ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
DCTELEM           141 third_party/libjpeg/jidctfst.c #define ISHIFT_TEMPS	DCTELEM ishift_temp;
DCTELEM           149 third_party/libjpeg/jidctfst.c      (ishift_temp >> (shft)) | ((~((DCTELEM) 0)) << (DCTELEMBITS-(shft))) : \
DCTELEM           172 third_party/libjpeg/jidctfst.c   DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
DCTELEM           173 third_party/libjpeg/jidctfst.c   DCTELEM tmp10, tmp11, tmp12, tmp13;
DCTELEM           174 third_party/libjpeg/jidctfst.c   DCTELEM z5, z10, z11, z12, z13;
DCTELEM           315 third_party/libjpeg/jidctfst.c     tmp10 = ((DCTELEM) wsptr[0] + (DCTELEM) wsptr[4]);
DCTELEM           316 third_party/libjpeg/jidctfst.c     tmp11 = ((DCTELEM) wsptr[0] - (DCTELEM) wsptr[4]);
DCTELEM           318 third_party/libjpeg/jidctfst.c     tmp13 = ((DCTELEM) wsptr[2] + (DCTELEM) wsptr[6]);
DCTELEM           319 third_party/libjpeg/jidctfst.c     tmp12 = MULTIPLY((DCTELEM) wsptr[2] - (DCTELEM) wsptr[6], FIX_1_414213562)
DCTELEM           329 third_party/libjpeg/jidctfst.c     z13 = (DCTELEM) wsptr[5] + (DCTELEM) wsptr[3];
DCTELEM           330 third_party/libjpeg/jidctfst.c     z10 = (DCTELEM) wsptr[5] - (DCTELEM) wsptr[3];
DCTELEM           331 third_party/libjpeg/jidctfst.c     z11 = (DCTELEM) wsptr[1] + (DCTELEM) wsptr[7];
DCTELEM           332 third_party/libjpeg/jidctfst.c     z12 = (DCTELEM) wsptr[1] - (DCTELEM) wsptr[7];