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/libjpeg-turbo/simd/
jsimdcfg.inc.h 100 ; A forward DCT routine is given a pointer to a work area of type DCTELEM[];
102 ; To maximize parallelism, Type DCTELEM is changed to short (originally, int).
104 %define DCTELEM word ; short
105 %define SIZEOF_DCTELEM SIZEOF_WORD ; sizeof(DCTELEM)

Completed in 2885 milliseconds