first              88 gc/include/gc_inl.h # define GC_CONS(result, first, second) \
first             104 gc/include/gc_inl.h     ((word *)op)[0] = (word)(first);	\
first            3983 gc/os_dep.c    	--> We only know how to to get the first 6 arguments
first             301 gc/typd_mlc.c  complex_descriptor * GC_make_sequence_descriptor(first, second)
first             302 gc/typd_mlc.c  complex_descriptor * first;
first             313 gc/typd_mlc.c          result -> sd_first = first;
first             168 src/gauche/char_utf_8.h     unsigned char first = *ucp++;
first             169 src/gauche/char_utf_8.h     if (first < 0x80) { ch = first; }
first             170 src/gauche/char_utf_8.h     else if (first < 0xc0) { ch = SCM_CHAR_INVALID; }
first             171 src/gauche/char_utf_8.h     else if (first < 0xe0) {
first             172 src/gauche/char_utf_8.h         ch = first&0x1f;
first             176 src/gauche/char_utf_8.h     else if (first < 0xf0) {
first             177 src/gauche/char_utf_8.h         ch = first&0x0f;
first             182 src/gauche/char_utf_8.h     else if (first < 0xf8) {
first             183 src/gauche/char_utf_8.h         ch = first&0x07;
first             189 src/gauche/char_utf_8.h     else if (first < 0xfc) {
first             190 src/gauche/char_utf_8.h         ch = first&0x03;
first             197 src/gauche/char_utf_8.h     else if (first < 0xfe) {
first             198 src/gauche/char_utf_8.h         ch = first&0x01;
first             357 src/list.c         ScmObj first, next, result = SCM_NIL;
first             359 src/list.c         for (first = list; SCM_PAIRP(first); first = next) {
first             360 src/list.c             next = SCM_CDR(first);
first             361 src/list.c             SCM_SET_CDR(first, result);
first             362 src/list.c             result = first;
first             530 src/portapi.c      int first, nb, c = 0, r = 0;
first             556 src/portapi.c          first = (unsigned char)*p->src.buf.current++;
first             557 src/portapi.c          nb = SCM_CHAR_NFOLLOWS(first);
first             595 src/portapi.c              c = first;
first             605 src/portapi.c          first = (unsigned char)*p->src.istr.current++;
first             606 src/portapi.c          nb = SCM_CHAR_NFOLLOWS(first);
first             617 src/portapi.c              c = first;