type_of_result    820 gc/include/gc.h #   define GC_PTR_ADD3(x, n, type_of_result) \
type_of_result    821 gc/include/gc.h 	((type_of_result)GC_same_obj((x)+(n), (x)))
type_of_result    822 gc/include/gc.h #   define GC_PRE_INCR3(x, n, type_of_result) \
type_of_result    823 gc/include/gc.h 	((type_of_result)GC_pre_incr(&(x), (n)*sizeof(*x))
type_of_result    824 gc/include/gc.h #   define GC_POST_INCR2(x, type_of_result) \
type_of_result    825 gc/include/gc.h 	((type_of_result)GC_post_incr(&(x), sizeof(*x))
type_of_result    841 gc/include/gc.h #   define GC_PTR_ADD3(x, n, type_of_result) ((x)+(n))
type_of_result    843 gc/include/gc.h #   define GC_PRE_INCR3(x, n, type_of_result) ((x) += (n))
type_of_result    845 gc/include/gc.h #   define GC_POST_INCR2(x, n, type_of_result) ((x)++)