SYMBOL INDEX (26 symbols across 5 files) FILE: accimage.h type ImageObject (line 6) | typedef struct { FILE: accimagemodule.c type PyMemberDef (line 6) | struct PyMemberDef function PyObject (line 13) | static PyObject* Image_getsize(ImageObject* self, void* closure) { function PyObject (line 22) | static PyObject* Image_resize(ImageObject* self, PyObject* args, PyObjec... function PyObject (line 56) | static PyObject* Image_crop(ImageObject* self, PyObject* args, PyObject*... function PyObject (line 106) | static PyObject* Image_transpose(ImageObject* self, PyObject* args, PyOb... function PyObject (line 145) | static PyObject* Image_copyto(ImageObject* self, PyObject* args, PyObjec... function Image_init (line 244) | static int Image_init(ImageObject *self, PyObject *args, PyObject *kwds) { function Image_dealloc (line 265) | static void Image_dealloc(ImageObject *self) { function PyMODINIT_FUNC (line 275) | PyMODINIT_FUNC PyInit_accimage(void) { FILE: imageops.c function image_copy_deinterleave (line 8) | void image_copy_deinterleave(ImageObject* self, unsigned char* output_bu... function image_copy_deinterleave_float (line 25) | void image_copy_deinterleave_float(ImageObject* self, float* output_buff... function image_resize (line 61) | void image_resize(ImageObject* self, int new_height, int new_width, int ... function image_flip_left_right (line 160) | void image_flip_left_right(ImageObject* self) { FILE: jpegloader.c type accimage_jpeg_error_mgr (line 11) | struct accimage_jpeg_error_mgr { function accimage_jpeg_error_exit (line 17) | static void accimage_jpeg_error_exit(j_common_ptr cinfo) { function image_from_file (line 23) | void image_from_file(ImageObject* self, FILE* file) { function image_from_buffer (line 82) | void image_from_buffer(ImageObject* self, void* buf, size_t size) { function image_from_jpeg (line 92) | void image_from_jpeg(ImageObject* self, const char* path) { FILE: test.py function image_to_np (line 12) | def image_to_np(image): function save_image (line 23) | def save_image(path, image): function test_reading_image (line 27) | def test_reading_image(): function test_reading_image_from_memory (line 35) | def test_reading_image_from_memory(): function test_resizing (line 46) | def test_resizing(): function test_cropping (line 56) | def test_cropping(): function test_flipping (line 66) | def test_flipping():