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

  /external/libjpeg-turbo/
jdct.h 19 * A forward DCT routine is given a pointer to a work area of type DCTELEM[];
20 * the DCT is to be performed in-place in that buffer. Type DCTELEM is int
34 typedef int DCTELEM; /* 16 or 32 bits is fine */
38 typedef short DCTELEM; /* prefer 16 bit with SIMD for parellelism */
43 typedef INT32 DCTELEM; /* must have 32 bits */
92 EXTERN(void) jpeg_fdct_islow (DCTELEM * data);
93 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));
  /external/opencv3/3rdparty/libjpeg/
jdct.h 18 * a pointer to a work area of type DCTELEM[]; the DCT is to be performed
19 * in-place in that buffer. Type DCTELEM is int for 8-bit samples, INT32
35 typedef int DCTELEM; /* 16 or 32 bits is fine */
37 typedef INT32 DCTELEM; /* must have 32 bits */
40 typedef JMETHOD(void, forward_DCT_method_ptr, (DCTELEM * data,
166 JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col));
168 JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col));
172 JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col));
174 JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col));
176 JPP((DCTELEM * data, JSAMPARRAY sample_data, JDIMENSION start_col))
    [all...]

Completed in 733 milliseconds