Searched refs:JOCTET (Results 1 – 18 of 18) sorted by relevance
/external/jpeg/ |
D | jdatasrc.c | 29 JOCTET * buffer; /* start of buffer */ 102 src->buffer[0] = (JOCTET) 0xFF; in fill_input_buffer() 103 src->buffer[1] = (JOCTET) JPEG_EOI; in fill_input_buffer() 198 src->buffer = (JOCTET *) in jpeg_stdio_src() 200 INPUT_BUF_SIZE * SIZEOF(JOCTET)); in jpeg_stdio_src()
|
D | jdatadst.c | 29 JOCTET * buffer; /* start of buffer */ 48 dest->buffer = (JOCTET *) in init_destination() 50 OUTPUT_BUF_SIZE * SIZEOF(JOCTET)); in init_destination()
|
D | jmorecfg.h | 132 typedef unsigned char JOCTET; typedef 137 typedef char JOCTET; typedef
|
D | jdmarker.c | 121 const JOCTET * next_input_byte = datasrc->next_input_byte; \ 584 examine_app0 (j_decompress_ptr cinfo, JOCTET FAR * data, in examine_app0() 660 examine_app14 (j_decompress_ptr cinfo, JOCTET FAR * data, in examine_app14() 695 JOCTET b[APPN_DATA_LEN]; in get_interesting_appn() 716 examine_app0(cinfo, (JOCTET FAR *) b, numtoread, length); in get_interesting_appn() 719 examine_app14(cinfo, (JOCTET FAR *) b, numtoread, length); in get_interesting_appn() 745 JOCTET FAR * data; in save_marker() 771 data = cur_marker->data = (JOCTET FAR *) (cur_marker + 1); in save_marker()
|
D | jpeglib.h | 200 JOCTET FAR * data; /* the data contained in the marker */ 718 JOCTET * next_output_byte; /* => next byte to write in buffer */ 730 const JOCTET * next_input_byte; /* => next byte to read from buffer */ 955 const JOCTET * dataptr, unsigned int datalen));
|
D | jdhuff.h | 90 const JOCTET * next_input_byte; /* => next byte to read from source */
|
D | jcapimin.c | 193 const JOCTET *dataptr, unsigned int datalen) in jpeg_write_marker()
|
D | jcphuff.c | 33 JOCTET * next_output_byte; /* => next byte to write in buffer */ 199 { *(entropy)->next_output_byte++ = (JOCTET) (val); \
|
D | jchuff.c | 81 JOCTET * next_output_byte; /* => next byte to write in buffer */ 271 { *(state)->next_output_byte++ = (JOCTET) (val); \
|
D | jdhuff.c | 298 register const JOCTET * next_input_byte = state->next_input_byte; in jpeg_fill_bit_buffer()
|
D | jcmarker.c | 113 *(dest->next_output_byte)++ = (JOCTET) val; in emit_byte()
|
D | structure.doc | 112 compressed data as an array of values of typedef JOCTET. If no data type 114 modules must be written to unpack and pack the chosen JOCTET datatype into
|
D | libjpeg.doc | 1393 The work buffer is defined as an array of datatype JOCTET, which is generally 1395 wide, you must define JOCTET as a wider data type and then modify the data 1402 JOCTET * next_output_byte; /* => next byte to write in buffer */ 1450 const JOCTET * next_input_byte; /* => next byte to read from buffer */ 2943 to redefine JOCTET and/or provide custom data source/destination managers so 2944 that JOCTET represents exactly 8 bits of data on external storage.
|
/external/tesseract/liblept/ |
D | jmorecfg.h | 111 typedef unsigned char JOCTET; typedef 116 typedef char JOCTET; typedef
|
D | jpeglib.h | 204 JOCTET FAR * data; /* the data contained in the marker */ 718 JOCTET * next_output_byte; /* => next byte to write in buffer */ 730 const JOCTET * next_input_byte; /* => next byte to read from buffer */ 955 const JOCTET * dataptr, unsigned int datalen));
|
D | jpegio.c | 536 jpeg_write_marker(&cinfo, JPEG_COM, (const JOCTET *)text, strlen(text)); in pixWriteStreamJpeg()
|
/external/skia/src/images/ |
D | SkImageDecoder_libjpeg.cpp | 107 src->next_input_byte = (const JOCTET*)src->fBuffer; in sk_init_source() 123 src->next_input_byte = (const JOCTET*)src->fBuffer; in sk_fill_input_buffer() 142 src->next_input_byte = (const JOCTET*)src->fBuffer; in sk_skip_input_data() 160 src->next_input_byte = (const JOCTET*)src->fBuffer; in sk_resync_to_restart() 171 src->next_input_byte = (const JOCTET*)src->fMemoryBase; in skmem_init_source() 183 src->next_input_byte = (const JOCTET*)((const char*)src->next_input_byte + num_bytes); in skmem_skip_input_data()
|
/external/webkit/WebCore/platform/image-decoders/jpeg/ |
D | JPEGImageDecoder.cpp | 166 m_info.src->next_input_byte = (JOCTET*)(data.data()) + readOffset; in decode()
|