Lines Matching defs:length

1542     SSize_t length;
1579 length = SvIVx(*++MARK);
1600 if (length < 0)
1601 DIE(aTHX_ "Negative length");
1602 wanted = length;
1620 buffer = SvGROW(bufsv, (STRLEN)(length+1));
1622 count = PerlSock_recvfrom(PerlIO_fileno(IoIFP(io)), buffer, length, offset,
1666 buffer = SvGROW(bufsv, (STRLEN)(length+offset+1));
1676 buffer, length, 0);
1682 buffer, length);
1694 count = PerlSock_recvfrom(PerlIO_fileno(IoIFP(io)), buffer, length, 0,
1700 count = PerlIO_read(IoIFP(io), buffer, length);
1723 length = skip - (bend-buffer);
1737 provided amount read (count) was what was requested (length)
1739 if (got < wanted && count == length) {
1740 length = wanted - got;
1782 Size_t length;
1809 length = (Size_t)SvNVx(*++MARK);
1811 length = (Size_t)SvIVx(*++MARK);
1813 if ((SSize_t)length < 0)
1814 DIE(aTHX_ "Negative length");
1844 /* length and offset are in chars */
1857 if (length > blen - offset)
1858 length = blen - offset;
1861 length = utf8_hop((U8 *)buffer, length) - (U8 *)buffer;
1869 buffer, length, 0);
1876 buffer, length);
1884 /* length is really flags */
1886 length, (struct sockaddr *)sockbuf, mlen);
1889 /* length is really flags */
1890 retval = PerlSock_send(PerlIO_fileno(IoIFP(io)), buffer, blen, length);
2059 /* There seems to be no consensus on the length type of truncate()
2063 /* XXX Configure probe for the length type of *truncate() needed XXX */
2071 /* Checking for length < 0 is problematic as the type might or
2073 /* XXX Configure probe for the signedness of the length type of *truncate() needed? XXX */