OSSIM - Open Source Software Image Map
Version 1.9.0 (20180803)
|
Go to the source code of this file.
Classes | |
struct | linked_list_cell |
Macros | |
#define | TRUE 1 |
#define | FALSE 0 |
#define | LL_FIRST(list) (position_type)list |
#define | LL_NEXT(position) position->next |
Typedefs | |
typedef struct linked_list_cell | cell_type |
typedef struct linked_list_cell * | linked_list_type |
typedef struct linked_list_cell * | position_type |
Functions | |
linked_list_type | ll_init () |
int | ll_empty (linked_list_type list) |
position_type | ll_first (linked_list_type list) |
position_type | ll_last (linked_list_type list) |
position_type | ll_next (position_type position) |
position_type | ll_previous (position_type position, linked_list_type list) |
int | ll_end (position_type position) |
void | ll_element (position_type position, void *element) |
void | ll_insert (void *element, unsigned size, position_type position) |
void | ll_delete (position_type position) |
void | ll_reset (linked_list_type list) |
position_type | ll_locate (void *element, linked_list_type list) |
void | ll_replace (void *element, position_type position) |
#define FALSE 0 |
Definition at line 23 of file linklist.h.
Referenced by ossimJpegStdIOSrc_fill_input_buffer().
#define LL_FIRST | ( | list | ) | (position_type)list |
Definition at line 34 of file linklist.h.
#define LL_NEXT | ( | position | ) | position->next |
Definition at line 40 of file linklist.h.
#define TRUE 1 |
Definition at line 20 of file linklist.h.
Referenced by ossimJpegCodec::decodeJpeg(), DllMain(), empty_output_buffer(), ossimJpegCodec::encode(), fill_input_buffer(), fill_input_buffer12(), ossimJpegCodec::getColorSpace(), ossimJpegStdIOSrc_fill_input_buffer(), ossimJpegStdIOSrc_init_source(), ossimJpegTileSource::restart(), and ossimPdfWriter::writeJpegTile().
typedef struct linked_list_cell cell_type |
typedef struct linked_list_cell * linked_list_type |
typedef struct linked_list_cell * position_type |
void ll_delete | ( | position_type | position | ) |
void ll_element | ( | position_type | position, |
void * | element | ||
) |
int ll_empty | ( | linked_list_type | list | ) |
int ll_end | ( | position_type | position | ) |
position_type ll_first | ( | linked_list_type | list | ) |
linked_list_type ll_init | ( | ) |
void ll_insert | ( | void * | element, |
unsigned | size, | ||
position_type | position | ||
) |
position_type ll_last | ( | linked_list_type | list | ) |
position_type ll_locate | ( | void * | element, |
linked_list_type | list | ||
) |
position_type ll_next | ( | position_type | position | ) |
position_type ll_previous | ( | position_type | position, |
linked_list_type | list | ||
) |
void ll_replace | ( | void * | element, |
position_type | position | ||
) |
void ll_reset | ( | linked_list_type | list | ) |