Lines Matching refs:size
32 nxt_off_t size; in nxt_solaris_event_conn_io_sendfilev() local
43 size = nxt_solaris_buf_coalesce(b, sfv, &nsfv, &sync, limit); in nxt_solaris_event_conn_io_sendfilev()
81 if ((nxt_off_t) sent < size) { in nxt_solaris_event_conn_io_sendfilev()
93 size_t size, total; in nxt_solaris_buf_coalesce() local
109 size = b->file_end - pos; in nxt_solaris_buf_coalesce()
111 if (size == 0) { in nxt_solaris_buf_coalesce()
115 if (total + size > limit) { in nxt_solaris_buf_coalesce()
116 size = limit - total; in nxt_solaris_buf_coalesce()
123 size = b->mem.free - b->mem.pos; in nxt_solaris_buf_coalesce()
125 if (size == 0) { in nxt_solaris_buf_coalesce()
129 if (total + size > limit) { in nxt_solaris_buf_coalesce()
130 size = limit - total; in nxt_solaris_buf_coalesce()
138 if (size == 0) { in nxt_solaris_buf_coalesce()
151 sfv[i].sfv_len = size; in nxt_solaris_buf_coalesce()
154 sfv[i].sfv_len += size; in nxt_solaris_buf_coalesce()
157 total += size; in nxt_solaris_buf_coalesce()
158 last_pos = pos + size; in nxt_solaris_buf_coalesce()