OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DCTELEM
(Results
1 - 2
of
2
) sorted by null
/external/jpeg/
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
31
typedef short
DCTELEM
; /* 16 or 32 bits is fine */
33
typedef int
DCTELEM
; /* 16 or 32 bits is fine */
36
typedef INT32
DCTELEM
; /* must have 32 bits */
39
typedef JMETHOD(void, forward_DCT_method_ptr, (
DCTELEM
* data));
101
EXTERN(void) jpeg_fdct_islow JPP((
DCTELEM
* data));
102
EXTERN(void) jpeg_fdct_ifast JPP((
DCTELEM
* data));
/external/qemu/distrib/jpeg-6b/
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 776 milliseconds