a                 803 ext/auxsys/auxsyslib.c #define APPCONS(a, b) SCM_APPEND1(h, t, Scm_Cons(a, b))
a                  95 ext/dbm/bdbm.c #define CAT2(a, b)    a##b
a                  96 ext/dbm/bdbm.c #define CAT3(a, b, c) a##b##c
a                 135 ext/digest/sha.c #define subRound(a, b, c, d, e, f, k, data) \
a                 701 ext/uvector/uvector.c #define INT64LT(a, b)  ((a.hi < b.hi) || (a.hi == b.hi) && (a.lo < b.lo))
a                 703 ext/uvector/uvector.c #define INT64LT(a, b)  (a < b)
a                 377 gc/include/gc_alloc.h ???copy stuff from stl_alloc.h or remove it to a different file ???
a                   7 gc/include/gc_amiga_redirects.h #   define GC_realloc(a,b) GC_amiga_realloc(a,b)
a                  12 gc/include/gc_amiga_redirects.h #   define GC_malloc(a) \
a                  14 gc/include/gc_amiga_redirects.h #   define GC_malloc_atomic(a) \
a                  16 gc/include/gc_amiga_redirects.h #   define GC_malloc_uncollectable(a) \
a                  18 gc/include/gc_amiga_redirects.h #   define GC_malloc_stubborn(a) \
a                  20 gc/include/gc_amiga_redirects.h #   define GC_malloc_atomic_uncollectable(a) \
a                  22 gc/include/gc_amiga_redirects.h #   define GC_malloc_ignore_off_page(a) \
a                  24 gc/include/gc_amiga_redirects.h #   define GC_malloc_atomic_ignore_off_page(a) \
a                 300 gc/include/private/gc_priv.h #   define MS_TIME_DIFF(a,b) ((double) (a.tv_sec - b.tv_sec) * 1000.0 \
a                 308 gc/include/private/gc_priv.h #   define MS_TIME_DIFF(a,b) ((long)((a)-(b)))
a                 333 gc/include/private/gc_priv.h #   define MS_TIME_DIFF(a,b) ((unsigned long) \
a                1848 gc/include/private/gc_priv.h # define GC_printf1(f,a) GC_printf(f, (long)a, 0l, 0l, 0l, 0l, 0l)
a                1849 gc/include/private/gc_priv.h # define GC_printf2(f,a,b) GC_printf(f, (long)a, (long)b, 0l, 0l, 0l, 0l)
a                1850 gc/include/private/gc_priv.h # define GC_printf3(f,a,b,c) GC_printf(f, (long)a, (long)b, (long)c, 0l, 0l, 0l)
a                1851 gc/include/private/gc_priv.h # define GC_printf4(f,a,b,c,d) GC_printf(f, (long)a, (long)b, (long)c, \
a                1853 gc/include/private/gc_priv.h # define GC_printf5(f,a,b,c,d,e) GC_printf(f, (long)a, (long)b, (long)c, \
a                1855 gc/include/private/gc_priv.h # define GC_printf6(f,a,b,c,d,e,g) GC_printf(f, (long)a, (long)b, (long)c, \
a                1860 gc/include/private/gc_priv.h # define GC_err_printf1(f,a) GC_err_printf(f, (long)a, 0l, 0l, 0l, 0l, 0l)
a                1861 gc/include/private/gc_priv.h # define GC_err_printf2(f,a,b) GC_err_printf(f, (long)a, (long)b, 0l, 0l, 0l, 0l)
a                1862 gc/include/private/gc_priv.h # define GC_err_printf3(f,a,b,c) GC_err_printf(f, (long)a, (long)b, (long)c, \
a                1864 gc/include/private/gc_priv.h # define GC_err_printf4(f,a,b,c,d) GC_err_printf(f, (long)a, (long)b, \
a                1866 gc/include/private/gc_priv.h # define GC_err_printf5(f,a,b,c,d,e) GC_err_printf(f, (long)a, (long)b, \
a                1869 gc/include/private/gc_priv.h # define GC_err_printf6(f,a,b,c,d,e,g) GC_err_printf(f, (long)a, (long)b, \
a                 971 gc/misc.c      void GC_printf(format, a, b, c, d, e, f)
a                 973 gc/misc.c      long a, b, c, d, e, f;
a                 984 gc/misc.c      void GC_err_printf(format, a, b, c, d, e, f)
a                 986 gc/misc.c      long a, b, c, d, e, f;
a                 107 gc/tests/test.c   void *GC_amiga_gctest_calloc_explicitly_typed(size_t a,size_t lb, GC_descr d){
a                 122 gc/tests/test.c # define GC_malloc_explicitly_typed(a,b) GC_amiga_gctest_malloc_explicitly_typed(a,b)
a                 123 gc/tests/test.c # define GC_calloc_explicitly_typed(a,b,c) GC_amiga_gctest_calloc_explicitly_typed(a,b,c)
a                 585 src/code.c     #define INSN1(x, a)     SCM_VM_INSN1(x, a)
a                 586 src/code.c     #define INSN2(x, a, b)  SCM_VM_INSN2(x, a, b)
a                 294 src/gauche.h   #define SCM_CPP_CAT(a, b)   a ## b
a                 295 src/gauche.h   #define SCM_CPP_CAT3(a, b, c)  a ## b ## c
a                 803 src/gauche.h   #define SCM_LIST1(a)             Scm_Cons(a, SCM_NIL)
a                 804 src/gauche.h   #define SCM_LIST2(a,b)           Scm_Cons(a, SCM_LIST1(b))
a                 805 src/gauche.h   #define SCM_LIST3(a,b,c)         Scm_Cons(a, SCM_LIST2(b, c))
a                 806 src/gauche.h   #define SCM_LIST4(a,b,c,d)       Scm_Cons(a, SCM_LIST3(b, c, d))
a                 807 src/gauche.h   #define SCM_LIST5(a,b,c,d,e)     Scm_Cons(a, SCM_LIST4(b, c, d, e))
a                2164 src/gauche.h   #define Scm_Add2(a, b)       Scm_Add((a), (b), SCM_NIL)
a                2165 src/gauche.h   #define Scm_Subtract2(a, b)  Scm_Subtract((a), (b), SCM_NIL)
a                2166 src/gauche.h   #define Scm_Multiply2(a, b)  Scm_Multiply((a), (b), SCM_NIL)
a                2167 src/gauche.h   #define Scm_Divide2(a, b)    Scm_Divide((a), (b), SCM_NIL)
a                  48 src/port.c     #define MAX(a, b) ((a)>(b)? (a) : (b))
a                  49 src/port.c     #define MIN(a, b) ((a)<(b)? (a) : (b))