HomeSort by relevance Sort by last modified time
    Searched defs:DCTELEM (Results 1 - 2 of 2) sorted by null

  /external/libjpeg-turbo/
jdct.h 20 * A forward DCT routine is given a pointer to a work area of type DCTELEM[];
21 * the DCT is to be performed in-place in that buffer. Type DCTELEM is int
35 typedef int DCTELEM; /* 16 or 32 bits is fine */
39 typedef short DCTELEM; /* prefer 16 bit with SIMD for parellelism */
44 typedef JLONG DCTELEM; /* must have 32 bits */
93 EXTERN(void) jpeg_fdct_islow (DCTELEM *data);
94 EXTERN(void) jpeg_fdct_ifast (DCTELEM *data);
  /external/pdfium/third_party/libjpeg/
jdct.h 17 * A forward DCT routine is given a pointer to a work area of type DCTELEM[];
18 * the DCT is to be performed in-place in that buffer. Type DCTELEM is int
30 typedef int DCTELEM; /* 16 or 32 bits is fine */
32 typedef INT32 DCTELEM; /* must have 32 bits */
35 typedef JMETHOD(void, forward_DCT_method_ptr, (DCTELEM * data));
97 EXTERN(void) jpeg_fdct_islow JPP((DCTELEM * data));
98 EXTERN(void) jpeg_fdct_ifast JPP((DCTELEM * data));

Completed in 178 milliseconds