Searched refs:thislen (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/contrib/binutils/bfd/
H A Darchive.c1248 unsigned int thislen;
1254 thislen = strlen (normal);
1256 if (thislen > maxname
1258 thislen = maxname;
1260 if (thislen > maxname)
1263 total_namelen += thislen + 1;
1273 if (strncmp (normal, hdr->ar_name, thislen) != 0
1274 || (thislen < sizeof hdr->ar_name
1275 && hdr->ar_name[thislen] != ar_padchar (current)))
1279 memcpy (hdr->ar_name, normal, thislen);
1242 unsigned int thislen; local
1296 unsigned int thislen; local
[all...]
/freebsd-9.3-release/sys/dev/ie/
H A Dif_ie.c765 int thislen = ie_buflen(sc, head) - offset; local
771 if (thislen > m->m_len - thismboff) {
790 if (thislen < m->m_len - thismboff) {
792 mtod(m, caddr_t) +thismboff, (unsigned) thislen);
793 thismboff += thislen; /* we are this far into the
795 resid -= thislen; /* and this much is left */
804 mtod(m, caddr_t) + thismboff, (unsigned) thislen);
807 resid -= thislen; /* and we are this far through */
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_rtalloc.c269 xfs_rtblock_t thislen; /* this extent size */ local
271 thislen = next - i;
272 if (thislen >= minlen && thislen > bestlen) {
274 bestlen = thislen;

Completed in 74 milliseconds