Home
last modified time | relevance | path

Searched refs:slength (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/games/canfield/canfield/
Dcanfield.c1201 int dlength, slength, i; in tabprint() local
1207 slength = length[sour]; in tabprint()
1208 if (slength == tabrow) in tabprint()
1211 while (slength != tabrow - 1) { in tabprint()
1213 for (i=1; i<=slength-tabrow; i++) in tabprint()
1216 slength--; in tabprint()
/netbsd/src/external/bsd/libarchive/dist/libarchive/
Darchive_write_set_format_pax.c1266 int64_t soffset, slength; local
1296 &soffset, &slength) == ARCHIVE_OK) {
1300 (intmax_t)slength);
1301 sparse_total += slength;
1302 if (sparse_list_add(pax, soffset, slength)
/netbsd/src/external/bsd/libpcap/dist/
Doptimize.c2453 slength(struct slist *s) in slength() function
2530 return slength(p->stmts) + n + 1 + p->longjt + p->longjf; in count_stmts()
2672 max_stmts += slength(opt_state->blocks[i]->stmts) + 1; in opt_init()
2725 slen = slength(p->stmts); in convert_code_r()
3006 icount = slength(block->stmts) + 1 + block->longjt + block->longjf; in dot_dump_node()
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dgengtype.cc1679 size_t slength; in oprintf() local
1688 slength = vasprintf (&s, format, ap); in oprintf()
1689 if (s == NULL || (int) slength < 0) in oprintf()
1693 if (o->bufused + slength > o->buflength) in oprintf()
1702 while (o->bufused + slength >= new_len); in oprintf()
1706 memcpy (o->buf + o->bufused, s, slength); in oprintf()
1707 o->bufused += slength; in oprintf()