Home
last modified time | relevance | path

Searched refs:cpl (Results 1 – 25 of 36) sorted by relevance

12

/netbsd/src/sys/dev/pci/cxgb/
Dcxgb_lro.c112 can_lro_packet(struct cpl_rx_pkt *cpl, unsigned int rss_hi) in can_lro_packet() argument
114 struct ether_header *eh = (struct ether_header *)(cpl + 1); in can_lro_packet()
121 (*((uint8_t *)cpl + 1) & 0x90) != 0x10 || in can_lro_packet()
122 cpl->csum != 0xffff || eh->ether_type != ntohs(ETHERTYPE_IP) || in can_lro_packet()
247 struct cpl_rx_pkt *cpl = (struct cpl_rx_pkt *)(mtod(sm, uint8_t *) + 2); in lro_update_session() local
256 if (cpl->vlan_valid && cpl->vlan != ncpl->vlan) { in lro_update_session()
328 struct cpl_rx_pkt *cpl = (struct cpl_rx_pkt *)(mtod(m, uint8_t *) + ethpad); in t3_rx_eth_lro() local
329 struct ether_header *eh = (struct ether_header *)(cpl + 1); in t3_rx_eth_lro()
337 if (!can_lro_packet(cpl, rss_csum)) in t3_rx_eth_lro()
Dcxgb_sge.c1172 struct cpl_tx_pkt *cpl; in t3_encap() local
1186 cpl = (struct cpl_tx_pkt *)txd; in t3_encap()
1188 cpl->len = htonl(mlen | 0x80000000); in t3_encap()
1208 struct cpl_tx_pkt_lso *hdr = (struct cpl_tx_pkt_lso *) cpl; in t3_encap()
1247 cpl->cntrl = htonl(cntrl); in t3_encap()
1249 if (mlen <= WR_LEN - sizeof(*cpl)) { in t3_encap()
1260 cpl->wr.wr_hi = htonl(V_WR_BCNTLFLT(mlen & 7) | in t3_encap()
1264 cpl->wr.wr_lo = htonl(V_WR_LEN(flits) | in t3_encap()
2156 struct cpl_rx_pkt *cpl = (struct cpl_rx_pkt *)(mtod(m, uint8_t *) + ethpad); in t3_rx_eth() local
2157 struct port_info *pi = &adap->port[adap->rxpkt_map[cpl->iff]]; in t3_rx_eth()
[all …]
/netbsd/src/sys/arch/hp300/stand/common/
Dite_subr.c68 ip->cpl = (ip->fbwidth - ip->dwidth) / ip->ftwidth; in ite_fontinfo()
70 ip->cblanky = ip->fonty + ((128 / ip->cpl) +1) * ip->ftheight; in ite_fontinfo()
77 ip->cpl = ip->fbwidth / ip->ftwidth; in ite_fontinfo()
79 ip->cblanky = ip->fonty + ((128 / ip->cpl) + 1) * ip->ftheight; in ite_fontinfo()
97 (ip->fonty + (c / ip->cpl) * ip->ftheight) * stride; in ite_fontinit1bpp()
98 fbmem += (ip->fontx >> 3) + (c % ip->cpl) * width; in ite_fontinit1bpp()
122 (ip->fonty + (c / ip->cpl) * ip->ftheight) * ip->fbwidth + in ite_fontinit8bpp()
123 (ip->fontx + (c % ip->cpl) * ip->ftwidth)); in ite_fontinit8bpp()
Ditevar.h65 short cpl; member
87 (((c) % (ip)->cpl) * (ip)->ftwidth + (ip)->fontx)
90 (((c) % (ip)->cpl) * ((((ip)->ftwidth + 7) / 8) * 8) + (ip)->fontx)
93 (((c) / (ip)->cpl) * (ip)->ftheight + (ip)->fonty)
Dite_tvrx.c58 ip->cpl = (ip->fbwidth - ip->dwidth) / width; in tvrx_init()
59 ip->cblanky = ip->fonty + ((128 / ip->cpl) +1) * ip->ftheight; in tvrx_init()
Dite_hy.c61 ip->cpl = (ip->fbwidth - ip->dwidth) / width; in hyper_init()
62 ip->cblanky = ip->fonty + ((128 / ip->cpl) +1) * ip->ftheight; in hyper_init()
/netbsd/src/sys/dev/ic/
Dnvmeio.h40 #define nvme_completion_is_error(cpl) \ argument
41 ((NVME_CQE_SC((cpl)->flags) != NVME_CQE_SC_SUCCESS) \
42 || (NVME_CQE_SCT((cpl)->flags) != NVME_CQE_SCT_GENERIC))
70 struct nvme_cqe cpl; member
Dnvme.c1243 pt->cpl.cdw0 = lemtoh32(&cqe->cdw0); in nvme_pt_done()
1244 pt->cpl.flags = lemtoh16(&cqe->flags) & ~NVME_CQE_PHASE; in nvme_pt_done()
1776 *ncqa = (pt.cpl.cdw0 >> 16) + 1; in nvme_set_number_of_queues()
1777 *nsqa = (pt.cpl.cdw0 & 0xffff) + 1; in nvme_set_number_of_queues()
/netbsd/src/sys/arch/mips/mips/
Dlock_stubs_llsc.S263 sltu v0, ta2, ta0 # v0 = cpl < mtx_ipl
264 sltu v1, ta2, ta1 # v1 = cpl < oldspl
322 sltu v0, a1, a2 # v0 = cpl < mtx_ipl
323 sltu v1, a1, a0 # v1 = cpl < oldspl
330 beq a0, a1, 1f # if oldspl == cpl
Dlock_stubs_ras.S368 INT_L ta1, CPU_INFO_CPL(t2) # get current cpl
449 sltu v0, a1, a2 # v0 = cpl < mtx_ipl
450 sltu v1, a1, a0 # v1 = cpl < oldspl
457 beq a0, a1, 1f # if oldspl == cpl
/netbsd/src/sys/arch/arm/arm/
Darm_machdep.c285 int cpl; in cpu_intr_p() local
296 cpl = l->l_cpu->ci_cpl; in cpu_intr_p()
301 if (cpl < IPL_VM) in cpu_intr_p()
/netbsd/src/sys/arch/x68k/dev/
Ditevar.h78 short cpl; member
166 (((c) % (ip)->cpl) * (ip)->ftwidth + (ip)->fontx)
169 (((c) / (ip)->cpl) * (ip)->ftheight + (ip)->fonty)
/netbsd/src/sys/arch/powerpc/powerpc/
Dintr_stubs.c49 int cpl = curcpu()->ci_cpl; in null_splraise() local
51 return cpl; in null_splraise()
/netbsd/src/crypto/external/
DMakefile5 SUBDIR+= bsd cpl
DREADME48 cpl Common Public License
/netbsd/src/crypto/external/cpl/trousers/
DMakefile.inc5 DIST=${NETBSDSRCDIR}/crypto/external/cpl/trousers/dist
/netbsd/src/crypto/external/cpl/tpm-tools/
DMakefile.inc5 TPM_TOOLS=${NETBSDSRCDIR}/crypto/external/cpl/tpm-tools
/netbsd/src/sys/arch/hppa/hppa/
Dlocore.S690 andcm,<> %r1, %arg0, %r1 ; and with complement of new cpl
692 stw %arg0, CI_CPL(%t1) ; store new cpl
706 andcm,<> %r1, %arg0, %r1 ; and with complement of new cpl
758 ldw CI_CPL(%t2), %arg0 ; load cpl
759 andcm,= %r1, %arg0, %r1 ; and ipending with ~cpl
/netbsd/src/external/gpl3/gdb/dist/gdb/
Dgo32-nat.c1550 int cpl = prog_has_started ? (a_tss.tss_cs & 3) : _my_cs () & 3; in display_descriptor() local
1558 ? idx : (idx * 8) | (type ? (cpl | 4) : 0)); in display_descriptor()
1655 ? idx : (idx * 8) | (type ? (cpl | 4) : 0)); in display_descriptor()
1675 int cpl = (prog_has_started ? a_tss.tss_cs : _my_cs ()) & 3; in go32_sldt() local
1686 || (ldt_entry & 3) != (cpl & 3)) in go32_sldt()
/netbsd/src/lib/
DMakefile299 SUBDIR+= ../crypto/external/cpl/trousers/lib
314 SUBDIR+= ../crypto/external/cpl/tpm-tools/lib # depends on trousers
/netbsd/src/external/gpl3/binutils/dist/gas/doc/
Dc-z8k.texi295 bitb rbd,rs cpl rrd,@@rs ext8f imm8
296 bpt cpl rrd,addr exts rrd
297 call @@rd cpl rrd,addr(rs) extsb rd
298 call addr cpl rrd,imm32 extsl rqd
299 call addr(rd) cpl rrd,rrs halt
/netbsd/src/sys/arch/amiga/dev/
Ditevar.h68 short cpl; /* XXX? */ member
/netbsd/src/external/bsd/ntp/dist/ntpq/
Dntpq.c3226 const char * cpl = *datap; in str_strip() local
3227 const char * cpr = cpl + len; in str_strip()
3229 while (cpl != cpr && *(const unsigned char*)cpl <= ' ') in str_strip()
3230 ++cpl; in str_strip()
3231 while (cpl != cpr && *(const unsigned char*)(cpr - 1) <= ' ') in str_strip()
3233 *datap = cpl; in str_strip()
3234 len = (size_t)(cpr - cpl); in str_strip()
/netbsd/src/sys/arch/mips/atheros/
Dar_intr.c226 genath_iointr(int cpl, vaddr_t pc, uint32_t ipending) in genath_iointr() argument
/netbsd/src/external/gpl3/gdb/dist/opcodes/
Dia64-raw.tbl142 PSR.cpl; epc, br.ret; IC:priv-ops, br.call, brl.call, epc, IC:mov-from-AR-ITC, IC:mov-from-…
143 PSR.cpl; rfi; IC:priv-ops, br.call, brl.call, epc, IC:mov-from-AR-ITC, IC:mov-from-AR-RUC, IC…

12