Lines Matching refs:sz
522 sz = sizeof(sa);
1806 + size_t sz = hc->contentlength + hc->checked_idx + 10;
1810 + ftruncate(tmp, sz);
1811 + p = mmap(NULL, sz,
1817 + hc->read_size = sz;
1858 int sz;
1876 - if ( sz == 0 || ( sz < 0 && ( errno != EWOULDBLOCK ) ) )
1880 + if ( sz == 0 ) {
1886 + } else if ( sz < 0 ) {
1904 + if (sz > 0) hc->read_idx += sz;
1920 - hc->read_idx += sz;
2028 sz = writev( hc->conn_fd, iv, 2 );
2034 if ( sz == 0 ||
2053 int newlen = hc->responselen - sz;
2054 - (void) memcpy( hc->response, &(hc->response[sz]), newlen );
2055 + (void) memmove( hc->response, &(hc->response[sz]), newlen );
2057 sz = 0;