Home
last modified time | relevance | path

Searched refs:jpeg_mgr (Results 1 – 1 of 1) sorted by relevance

/system/extras/tests/bionic/libc/other/
Dtest_jpeg.c50 struct jpeg_source_mgr jpeg_mgr; member
61 src->jpeg_mgr.next_input_byte = (unsigned char*)src->base, in _source_init_source()
62 src->jpeg_mgr.bytes_in_buffer = src->end - src->base; in _source_init_source()
79 if (src->jpeg_mgr.next_input_byte + num_bytes > (unsigned char*)src->end ) { in _source_skip_input_data()
83 src->jpeg_mgr.next_input_byte += num_bytes; in _source_skip_input_data()
84 src->jpeg_mgr.bytes_in_buffer -= num_bytes; in _source_skip_input_data()
92 src->jpeg_mgr.next_input_byte = (unsigned char*)src->base; in _source_resync_to_restart()
93 src->jpeg_mgr.bytes_in_buffer = src->end - src->base; in _source_resync_to_restart()
110 src->jpeg_mgr.init_source = _source_init_source; in _source_init()
111 src->jpeg_mgr.fill_input_buffer = _source_fill_input_buffer; in _source_init()
[all …]