Lines Matching refs:cnt
327 OUT_PKT0(struct fd_ringbuffer *ring, uint16_t regindx, uint16_t cnt)
329 BEGIN_RING(ring, cnt + 1);
330 OUT_RING(ring, pm4_pkt0_hdr(regindx, cnt));
341 OUT_PKT3(struct fd_ringbuffer *ring, uint8_t opcode, uint16_t cnt)
343 BEGIN_RING(ring, cnt + 1);
344 OUT_RING(ring, CP_TYPE3_PKT | ((cnt - 1) << 16) | ((opcode & 0xFF) << 8));
352 OUT_PKT4(struct fd_ringbuffer *ring, uint16_t regindx, uint16_t cnt)
354 BEGIN_RING(ring, cnt + 1);
355 OUT_RING(ring, pm4_pkt4_hdr(regindx, cnt));
359 OUT_PKT7(struct fd_ringbuffer *ring, uint8_t opcode, uint16_t cnt)
361 BEGIN_RING(ring, cnt + 1);
362 OUT_RING(ring, pm4_pkt7_hdr(opcode, cnt));