Home
last modified time | relevance | path

Searched refs:next_seqno (Results 1 – 10 of 10) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/iris/
Diris_batch.h176 uint64_t next_seqno; member
348 batch->next_seqno = p_atomic_inc_return(&batch->screen->last_seqno); in iris_batch_sync_boundary()
349 assert(batch->next_seqno > 0); in iris_batch_sync_boundary()
364 batch->l3_coherent_seqnos[access] = batch->next_seqno - 1; in iris_batch_mark_flush_sync()
366 batch->coherent_seqnos[access][access] = batch->next_seqno - 1; in iris_batch_mark_flush_sync()
421 batch->l3_coherent_seqnos[i] = batch->next_seqno - 1; in iris_batch_mark_reset_sync()
423 batch->coherent_seqnos[i][j] = batch->next_seqno - 1; in iris_batch_mark_reset_sync()
Diris_blorp.c409 iris_bo_bump_seqno(params->src.addr.buffer, batch->next_seqno, in iris_blorp_exec_render()
412 iris_bo_bump_seqno(params->dst.addr.buffer, batch->next_seqno, in iris_blorp_exec_render()
415 iris_bo_bump_seqno(params->depth.addr.buffer, batch->next_seqno, in iris_blorp_exec_render()
418 iris_bo_bump_seqno(params->stencil.addr.buffer, batch->next_seqno, in iris_blorp_exec_render()
438 iris_bo_bump_seqno(params->src.addr.buffer, batch->next_seqno, in iris_blorp_exec_blitter()
442 iris_bo_bump_seqno(params->dst.addr.buffer, batch->next_seqno, in iris_blorp_exec_blitter()
Diris_batch.c464 iris_bo_bump_seqno(bo, batch->next_seqno, access); in iris_use_pinned_bo()
/third_party/lwip/
D0056-fix-tso-small-packet-drop-in-kernel-server.patch128 - u32_t next_seqno = lwip_ntohl(seg->tcphdr->seqno);
189 - if (seg->len < TCP_MSS || next_seqno != seg_seqno || pbuf_chain_len >= GAZELLE_TCP_MAX_PBU…
210 - next_seqno = seg_seqno + TCP_TCPLEN(seg);
217 - err = tcp_output_seg(pcb, seg, netif, next_seqno + seg->len);
237 - err = tcp_output_seg(pcb, &new_seg, netif, next_seqno);
D0038-add-tso.patch239 + u32_t next_seqno = lwip_ntohl(seg->tcphdr->seqno);
256 + if (seg->len < TCP_MSS || next_seqno != seg_seqno || pbuf_chain_len >= MAX_PBUF_CHAIN_LEN)…
272 + next_seqno = seg_seqno + TCP_TCPLEN(seg);
279 + err = tcp_output_seg(pcb, seg, netif, next_seqno + seg->len);
291 + err = tcp_output_seg(pcb, &new_seg, netif, next_seqno);
D0041-optimite-pcb-list-limit-send-size-and-ack-now.patch179 next_seqno = seg_seqno + TCP_TCPLEN(seg);
184 err = tcp_output_seg(pcb, seg, netif, next_seqno + seg->len);
D0053-cleancode-improve-lwipopts.h-readability.patch1237 u32_t next_seqno = lwip_ntohl(seg->tcphdr->seqno);
1247 - if (seg->len < TCP_MSS || next_seqno != seg_seqno || pbuf_chain_len >= MAX_PBUF_CHAIN_LEN)…
1248 + if (seg->len < TCP_MSS || next_seqno != seg_seqno || pbuf_chain_len >= GAZELLE_TCP_MAX_PBU…
/third_party/mesa3d/src/freedreno/drm/virtio/
Dvirtio_device.c291 req->seqno = ++virtio_dev->next_seqno; in virtio_execbuf_fenced()
338 req->seqno = ++virtio_dev->next_seqno; in virtio_execbuf()
Dvirtio_priv.h58 uint32_t next_seqno; member
Dvirtio_bo.c385 req.hdr.seqno = ++virtio_dev->next_seqno; in virtio_bo_new()