yy                411 ext/uvector/uvector.c     ScmObj yy = Scm_MakeInteger64(y);
yy                412 ext/uvector/uvector.c     ScmObj r = Scm_Add2(xx, yy);
yy                427 ext/uvector/uvector.c     ScmObj yy = Scm_MakeInteger64(y);
yy                428 ext/uvector/uvector.c     ScmObj r = Scm_Subtract2(xx, yy);
yy                443 ext/uvector/uvector.c     ScmObj yy = Scm_MakeInteger64(y);
yy                444 ext/uvector/uvector.c     ScmObj r = Scm_Multiply2(xx, yy);
yy                463 ext/uvector/uvector.c     ScmObj yy = Scm_MakeIntegerU64(y);
yy                464 ext/uvector/uvector.c     ScmObj r = Scm_Add2(xx, yy);
yy                478 ext/uvector/uvector.c     ScmObj yy = Scm_MakeIntegerU64(y);
yy                479 ext/uvector/uvector.c     ScmObj r = Scm_Subtract2(xx, yy);
yy                493 ext/uvector/uvector.c     ScmObj yy = Scm_MakeIntegerU64(y);
yy                494 ext/uvector/uvector.c     ScmObj r = Scm_Multiply2(xx, yy);
yy                773 ext/uvector/uvector.c     signed char xx, yy;
yy                777 ext/uvector/uvector.c         yy = SCM_S8VECTOR_ELEMENTS(y)[i];
yy                778 ext/uvector/uvector.c         if (!(xx == yy)) {
yy                977 ext/uvector/uvector.c     unsigned char xx, yy;
yy                981 ext/uvector/uvector.c         yy = SCM_U8VECTOR_ELEMENTS(y)[i];
yy                982 ext/uvector/uvector.c         if (!(xx == yy)) {
yy               1181 ext/uvector/uvector.c     short xx, yy;
yy               1185 ext/uvector/uvector.c         yy = SCM_S16VECTOR_ELEMENTS(y)[i];
yy               1186 ext/uvector/uvector.c         if (!(xx == yy)) {
yy               1385 ext/uvector/uvector.c     unsigned short xx, yy;
yy               1389 ext/uvector/uvector.c         yy = SCM_U16VECTOR_ELEMENTS(y)[i];
yy               1390 ext/uvector/uvector.c         if (!(xx == yy)) {
yy               1589 ext/uvector/uvector.c     ScmInt32 xx, yy;
yy               1593 ext/uvector/uvector.c         yy = SCM_S32VECTOR_ELEMENTS(y)[i];
yy               1594 ext/uvector/uvector.c         if (!(xx == yy)) {
yy               1793 ext/uvector/uvector.c     ScmUInt32 xx, yy;
yy               1797 ext/uvector/uvector.c         yy = SCM_U32VECTOR_ELEMENTS(y)[i];
yy               1798 ext/uvector/uvector.c         if (!(xx == yy)) {
yy               1997 ext/uvector/uvector.c     ScmInt64 xx, yy;
yy               2001 ext/uvector/uvector.c         yy = SCM_S64VECTOR_ELEMENTS(y)[i];
yy               2002 ext/uvector/uvector.c         if (!int64eqv(xx, yy)) {
yy               2201 ext/uvector/uvector.c     ScmUInt64 xx, yy;
yy               2205 ext/uvector/uvector.c         yy = SCM_U64VECTOR_ELEMENTS(y)[i];
yy               2206 ext/uvector/uvector.c         if (!uint64eqv(xx, yy)) {
yy               2405 ext/uvector/uvector.c     float xx, yy;
yy               2409 ext/uvector/uvector.c         yy = SCM_F32VECTOR_ELEMENTS(y)[i];
yy               2410 ext/uvector/uvector.c         if (!(xx == yy)) {
yy               2609 ext/uvector/uvector.c     double xx, yy;
yy               2613 ext/uvector/uvector.c         yy = SCM_F64VECTOR_ELEMENTS(y)[i];
yy               2614 ext/uvector/uvector.c         if (!(xx == yy)) {
yy               1158 src/bignum.c       ScmBignum *xx, *yy, *z;
yy               1165 src/bignum.c               yy = SCM_BIGNUM(Scm_BignumComplement(y));
yy               1166 src/bignum.c               z = bignum_and(make_bignum(xsize), x, yy, minsize, xsize, 0);
yy               1176 src/bignum.c               yy = SCM_BIGNUM(Scm_BignumComplement(y));
yy               1178 src/bignum.c               z = bignum_and(make_bignum(zsize), xx, yy, minsize, xsize, ysize);
yy               1209 src/bignum.c       ScmBignum *xx, *yy, *z;
yy               1217 src/bignum.c               yy = SCM_BIGNUM(Scm_BignumComplement(y));
yy               1218 src/bignum.c               z = bignum_ior(make_bignum(ysize), x, yy, minsize, 0, ysize);
yy               1232 src/bignum.c               yy = SCM_BIGNUM(Scm_BignumComplement(y));
yy               1233 src/bignum.c               z = bignum_ior(make_bignum(minsize), xx, yy, minsize, 0, 0);
yy                346 src/char.c         ScmCharSet *yy = SCM_CHARSET(y);
yy                349 src/char.c             return (Scm_CharSetEq(xx, yy)? 0 : 1);
yy                351 src/char.c             if (Scm_CharSetEq(xx, yy)) return 0;
yy                352 src/char.c             if (Scm_CharSetLE(xx, yy)) return -1;
yy                353 src/char.c             if (Scm_CharSetLE(yy, xx)) return 1;