strb              861 src/string.c       const ScmStringBody *strb = SCM_STRING_BODY(str);
strb              862 src/string.c       int size = SCM_STRING_BODY_SIZE(strb), sizecnt = 0;
strb              864 src/string.c       const char *s = SCM_STRING_BODY_START(strb), *p = s, *e = s + size;
strb              867 src/string.c       if (SCM_STRING_BODY_INCOMPLETE_P(strb)) {
strb             1086 src/string.c       const ScmStringBody *strb = SCM_STRING_BODY(str);
strb             1089 src/string.c       if (SCM_STRING_BODY_INCOMPLETE_P(strb)) {
strb             1092 src/string.c       len = SCM_STRING_BODY_LENGTH(strb);
strb             1115 src/string.c       s = (unsigned char*)SCM_STRING_BODY_START(strb);
strb             1117 src/string.c       prelen = s - (unsigned char*)SCM_STRING_BODY_START(strb);
strb             1121 src/string.c       postlen = SCM_STRING_BODY_SIZE(strb) - midlen - prelen;
strb             1125 src/string.c       memcpy(p, SCM_STRING_BODY_START(strb), prelen);
strb             1131 src/string.c       memcpy(p, SCM_STRING_BODY_START(strb) + prelen + midlen, postlen);
strb             1134 src/string.c       str->body = make_str_body(SCM_STRING_BODY_LENGTH(strb),