Lines Matching defs:poss
3033 lws_filepos_t amount, poss;
3121 poss = context->pt_serv_buf_size;
3131 poss > (lws_filepos_t)nwsi->h2.h2n->peer_set.s[H2SET_MAX_FRAME_SIZE])
3132 poss = (lws_filepos_t)nwsi->h2.h2n->peer_set.s[H2SET_MAX_FRAME_SIZE];
3134 poss = poss - (lws_filepos_t)(n + LWS_H2_FRAME_HEADER_LENGTH);
3137 if (poss > wsi->http.tx_content_remain)
3138 poss = wsi->http.tx_content_remain;
3145 poss > wsi->a.protocol->tx_packet_size)
3146 poss = wsi->a.protocol->tx_packet_size;
3163 if (txc < poss)
3164 poss = txc;
3175 poss -= 7; /* allow for final boundary */
3176 if (poss > wsi->http.range.budget)
3177 poss = wsi->http.range.budget;
3184 poss -= 10 + 128;
3188 if (lws_vfs_file_read(wsi->http.fop_fd, &amount, p, poss) < 0)
3205 args.max_len = (int)(unsigned int)poss + 128;