leny              147 gc/cord/cordbscs.c CORD CORD_cat_char_star(CORD x, const char * y, size_t leny)
leny              154 gc/cord/cordbscs.c     if (leny == 0) return(x);
leny              157 gc/cord/cordbscs.c         result_len = lenx + leny;
leny              163 gc/cord/cordbscs.c             memcpy(result + lenx, y, leny);
leny              177 gc/cord/cordbscs.c         if (leny <= SHORT_LIMIT/2
leny              188 gc/cord/cordbscs.c             result_len = right_len + leny;  /* length of new_right */
leny              192 gc/cord/cordbscs.c             	memcpy(new_right + right_len, y, leny);
leny              195 gc/cord/cordbscs.c             	leny = result_len;
leny              208 gc/cord/cordbscs.c         result_len = lenx + leny;
leny               86 gc/include/cord.h CORD CORD_cat_char_star(CORD x, const char * y, size_t leny);
leny              400 src/string.c                            const char *py, int leny)
leny              403 src/string.c       for (; lenx > 0 && leny > 0; lenx--, leny--, px+=ix, py+=iy) {
leny              413 src/string.c       if (leny > 0) return -1;
leny              419 src/string.c       int sizx, lenx, sizy, leny;
leny              429 src/string.c       sizy = SCM_STRING_BODY_SIZE(yb); leny = SCM_STRING_BODY_SIZE(yb);
leny              433 src/string.c       if (sizx == lenx && sizy == leny) {
leny              436 src/string.c           return mb_strcasecmp(px, lenx, py, leny);
leny              536 src/string.c       int sizey = SCM_STRING_BODY_SIZE(yb), leny = SCM_STRING_BODY_LENGTH(yb);
leny              547 src/string.c       return SCM_OBJ(make_str(lenx+leny, sizex+sizey, p, flags));
leny              550 src/string.c   ScmObj Scm_StringAppendC(ScmString *x, const char *str, int sizey, int leny)
leny              557 src/string.c       if (sizey < 0) count_size_and_length(str, &sizey, &leny);
leny              558 src/string.c       else if (leny < 0) leny = count_length(str, sizey);
leny              565 src/string.c       if (SCM_STRING_BODY_INCOMPLETE_P(xb) || leny < 0) {
leny              568 src/string.c       return SCM_OBJ(make_str(lenx + leny, sizex + sizey, p, flags));
leny              703 src/string.c                                   const char *str, int sizey, int leny,
leny              707 src/string.c       int end = start + leny, sizez, newlen;
leny              714 src/string.c                     make_str(leny, sizey, str, 0));
leny              719 src/string.c           sizez = sizex - leny + sizey;