opt               473 ext/net/net.c  	int opt;
opt               480 ext/net/net.c  	opt = SO_SYNCHRONOUS_NONALERT;
opt               482 ext/net/net.c  		       SO_OPENTYPE, (char*)&opt, sizeof(opt));
opt              2172 src/class.c        int speclen = 0, req = 0, opt = 0, i;
opt              2186 src/class.c        if (!SCM_NULLP(lp)) opt++;
opt              2188 src/class.c        if (SCM_PROCEDURE_REQUIRED(body) != req + opt + 1)
opt              2194 src/class.c        m->common.optional = opt;
opt                61 src/extlib.c   static int getcmpmode(ScmObj opt)
opt                62 src/extlib.c    { if (SCM_UNBOUNDP(opt) || opt == sym_equal) return SCM_CMP_EQUAL;
opt                63 src/extlib.c      if (opt == sym_eq) return SCM_CMP_EQ;
opt                64 src/extlib.c      if (opt == sym_eqv) return SCM_CMP_EQV;
opt                65 src/extlib.c      Scm_Error("unrecognized compare mode: %S", opt);
opt              2252 src/gauche.h   #define SCM_PROCEDURE_INIT(obj, req, opt, typ, inf)     \
opt              2254 src/gauche.h       SCM_PROCEDURE(obj)->optional = opt,                 \
opt              2260 src/gauche.h   #define SCM__PROCEDURE_INITIALIZER(klass, req, opt, typ, inf, inl)  \
opt              2261 src/gauche.h       { { klass }, (req), (opt), (typ), FALSE, (inf), SCM_FALSE, (inl) }
opt              2289 src/gauche.h   #define SCM_DEFINE_SUBR(cvar, req, opt, inf, func, inliner, data)           \
opt              2292 src/gauche.h                                      req, opt, SCM_PROC_SUBR, inf, inliner),  \
opt              2357 src/gauche.h   #define SCM_DEFINE_METHOD(cvar, gf, req, opt, specs, func, data)        \
opt              2360 src/gauche.h                                      req, opt, SCM_PROC_METHOD,           \
opt                70 src/proc.c         int req, opt;
opt                76 src/proc.c         opt  = SCM_COMPILED_CODE_OPTIONAL_ARGS(code);
opt                79 src/proc.c         SCM_PROCEDURE_INIT(c, req, opt, SCM_PROC_CLOSURE, info);