Home
last modified time | relevance | path

Searched full:streamid (Results 1 – 12 of 12) sorted by relevance

/freebsd/usr.sbin/bhyve/
H A Dpci_xhci.c349 struct xhci_endp_ctx *ep_ctx, uint32_t streamid,
1210 struct pci_xhci_dev_ep *devep, uint32_t streamid) in pci_xhci_find_stream() argument
1226 if (streamid >= devep->ep_MaxPStreams) in pci_xhci_find_stream()
1230 streamid; in pci_xhci_find_stream()
1247 uint32_t streamid; in pci_xhci_cmd_set_tr() local
1288 streamid = XHCI_TRB_2_STREAM_GET(trb->dwTrb2); in pci_xhci_cmd_set_tr()
1290 cmderr = pci_xhci_find_stream(sc, ep_ctx, devep, streamid); in pci_xhci_cmd_set_tr()
1294 devep->ep_sctx[streamid].qwSctx0 = trb->qwTrb0; in pci_xhci_cmd_set_tr()
1295 devep->ep_sctx_trbs[streamid].ringaddr = in pci_xhci_cmd_set_tr()
1297 devep->ep_sctx_trbs[streamid].ccs = in pci_xhci_cmd_set_tr()
[all …]
H A Dusb_emul.h106 uint32_t streamid; member
/freebsd/sys/contrib/device-tree/Bindings/bus/
H A Dxlnx,versal-net-cdx.yaml17 All devices on the CDX bus will have a unique streamid (for IOMMU)
19 (one to one associated with the device). The streamid and deviceid
/freebsd/crypto/openssl/demos/http3/
H A Dossl-nghttp3-demo-server.c852 static int quic_server_write(struct h3ssl *h3ssl, uint64_t streamid, in quic_server_write() argument
861 if (ssl_ids[i].id == streamid) { in quic_server_write()
869 (unsigned long long)streamid, (unsigned long long)flags); in quic_server_write()
874 (unsigned long long)streamid); in quic_server_write()
1206 int64_t streamid; in run_quic_server() local
1208 sveccnt = nghttp3_conn_writev_stream(h3conn, &streamid, &fin, vec, in run_quic_server()
1213 (unsigned long long)streamid, in run_quic_server()
1215 if (streamid != -1 && fin) { in run_quic_server()
1217 (unsigned long long) streamid, fin); in run_quic_server()
1218 nghttp3_conn_add_write_offset(h3conn, streamid, 0); in run_quic_server()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.cpp1921 bool isValidMsgStream(int64_t MsgId, int64_t OpId, int64_t StreamId, in isValidMsgStream() argument
1926 return 0 <= StreamId && isUInt<STREAM_ID_WIDTH_>(StreamId); in isValidMsgStream()
1931 return STREAM_ID_FIRST_ <= StreamId && StreamId < STREAM_ID_LAST_; in isValidMsgStream()
1934 (StreamId == STREAM_ID_NONE_) : in isValidMsgStream()
1935 (STREAM_ID_FIRST_ <= StreamId && StreamId < STREAM_ID_LAST_); in isValidMsgStream()
1938 return StreamId == STREAM_ID_NONE_; in isValidMsgStream()
1955 uint16_t &StreamId, const MCSubtargetInfo &STI) { in decodeMsg() argument
1959 StreamId = 0; in decodeMsg()
1962 StreamId = (Val & STREAM_ID_MASK_) >> STREAM_ID_SHIFT_; in decodeMsg()
1968 uint64_t StreamId) { in encodeMsg() argument
[all …]
H A DAMDGPUBaseInfo.h1203 bool isValidMsgStream(int64_t MsgId, int64_t OpId, int64_t StreamId,
1213 uint16_t &StreamId, const MCSubtargetInfo &STI);
1218 uint64_t StreamId);
/freebsd/sys/arm64/iommu/
H A Dsmmu.c37 * attributes and StreamID.
39 * In case of PCI-based devices, StreamID is a PCI rid.
41 * The StreamID is used to select a Stream Table Entry (STE) in a Stream table,
175 "Transaction StreamID out of range."},
181 "Address Translation Request disallowed for a StreamID "
188 "SMMU bypass is disallowed for this StreamID."},
H A Dsmmureg.h91 #define IDR1_SIDSIZE_S 0 /* Max bits of StreamID */
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp1556 uint16_t StreamId; in printSendMsg() local
1557 decodeMsg(Imm16, MsgId, OpId, StreamId, STI); in printSendMsg()
1562 isValidMsgStream(MsgId, OpId, StreamId, STI)) { in printSendMsg()
1567 O << ", " << StreamId; in printSendMsg()
1571 } else if (encodeMsg(MsgId, OpId, StreamId) == Imm16) { in printSendMsg()
1572 O << "sendmsg(" << MsgId << ", " << OpId << ", " << StreamId << ')'; in printSendMsg()
/freebsd/contrib/tcpdump/
H A Dprint-sctp.c345 nd_uint16_t streamId; member
586 ND_PRINT("[SID: %u] ", GET_BE_U_2(dataHdrPtr->streamId)); in sctp_print()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIDefines.h490 enum StreamId : unsigned { // Stream ID, (2) [9:8]. enum
/freebsd/sys/netinet/
H A Dsctp_indata.c1824 * and size, the other with the streamid and a rsvd in sctp_process_a_data_chunk()