gmp_object_handlers  224 ext/gmp/gmp.c  static zend_object_handlers gmp_object_handlers;
gmp_object_handlers  391 ext/gmp/gmp.c  	intern->std.handlers = &gmp_object_handlers;
gmp_object_handlers  651 ext/gmp/gmp.c  	memcpy(&gmp_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
gmp_object_handlers  652 ext/gmp/gmp.c  	gmp_object_handlers.offset = XtOffsetOf(gmp_object, std);
gmp_object_handlers  653 ext/gmp/gmp.c  	gmp_object_handlers.free_obj = gmp_free_object_storage;
gmp_object_handlers  654 ext/gmp/gmp.c  	gmp_object_handlers.cast_object = gmp_cast_object;
gmp_object_handlers  655 ext/gmp/gmp.c  	gmp_object_handlers.get_debug_info = gmp_get_debug_info;
gmp_object_handlers  656 ext/gmp/gmp.c  	gmp_object_handlers.clone_obj = gmp_clone_obj;
gmp_object_handlers  657 ext/gmp/gmp.c  	gmp_object_handlers.do_operation = gmp_do_operation;
gmp_object_handlers  658 ext/gmp/gmp.c  	gmp_object_handlers.compare = gmp_compare;