Home
last modified time | relevance | path

Searched full:endpoints (Results 1 – 25 of 274) sorted by relevance

1234567891011

/freebsd-src/usr.sbin/tcpsso/
H A Dtcpsso.876 TCP endpoints in the
132 for existing TCP endpoints can be determined by using
139 will apply the socket option to all TCP endpoints subject to the above state
146 will apply the socket option to all TCP endpoints using the TCP
155 will apply the socket option to all TCP endpoints using the TCP
164 will apply the socket option to all TCP endpoints being in the state
182 only applies to TCP endpoints in the state
194 will apply the socket option to all TCP endpoints using the congestion
232 To switch all TCP endpoints from using the freebsd stack to the RACK stack use:
237 Switch all TCP endpoints i
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAranges.cpp77 Endpoints.clear(); in clear()
86 Endpoints.emplace_back(LowPC, CUOffset, true); in appendRange()
87 Endpoints.emplace_back(HighPC, CUOffset, false); in appendRange()
93 llvm::sort(Endpoints); in construct()
95 for (const auto &E : Endpoints) { in construct()
97 // If the address range between two endpoints is described by some in construct()
119 // Endpoints are not needed now. in construct()
120 Endpoints.clear(); in construct()
121 Endpoints.shrink_to_fit(); in construct()
/freebsd-src/sys/contrib/device-tree/Bindings/usb/
H A Daspeed,usb-vhub.yaml18 Supported number of devices and endpoints vary depending on hardware
20 and 15 generic endpoints, while AST2600 Virtual Hub supports 7 downstream
21 devices and 21 generic endpoints.
46 aspeed,vhub-generic-endpoints:
47 description: Number of generic endpoints supported by the Virtual Hub
108 - aspeed,vhub-generic-endpoints
121 aspeed,vhub-generic-endpoints = <15>;
H A Dgr-udc.txt21 - epobufsizes : Array of buffer sizes for OUT endpoints when they differ
25 only for as many endpoints as the array contains.
27 - epibufsizes : Array of buffer sizes for IN endpoints when they differ
31 only for as many endpoints as the array contains.
H A Dam33xx-usb.txt41 - mentor,num-eps: Specifies the number of endpoints. This is also a
49 and "txN" for transmit endpoints. N specifies the endpoint number.
61 endpoint number (0 … 14 for endpoints 1 … 15 on instance 0 and 15 … 29
62 for endpoints 1 … 15 on instance 1). The second number is 0 for RX and
64 - dma-channels: should be set to 30 representing the 15 endpoints for
H A Dda8xx-usb.txt24 and "txN" for transmit endpoints. N specifies the endpoint number.
37 channel number (0 … 3 for endpoints 1 … 4).
39 - dma-channels: should be set to 4 representing the 4 endpoints.
H A Daspeed,ast2600-udc.yaml15 4 generic endpoints for AST260x.
18 Supports 32/256 stages descriptor mode for all generic endpoints.
/freebsd-src/sys/contrib/device-tree/Bindings/dma/
H A Dste-dma40.txt78 16: USB OTG in/out endpoints 7 & 15
79 17: USB OTG in/out endpoints 6 & 14
80 18: USB OTG in/out endpoints 5 & 13
81 19: USB OTG in/out endpoints 4 & 12
98 36: USB OTG in/out endpoints 3 & 11
99 37: USB OTG in/out endpoints 2 & 10
100 38: USB OTG in/out endpoints 1 & 9
101 39: USB OTG in/out endpoints 8
H A Dstericsson,dma40.yaml38 16: USB OTG in/out endpoints 7 & 15
39 17: USB OTG in/out endpoints 6 & 14
40 18: USB OTG in/out endpoints 5 & 13
41 19: USB OTG in/out endpoints 4 & 12
58 36: USB OTG in/out endpoints 3 & 11
59 37: USB OTG in/out endpoints 2 & 10
60 38: USB OTG in/out endpoints 1 & 9
61 39: USB OTG in/out endpoints 8
/freebsd-src/share/man/man4/
H A Dugen.450 Each USB device can have up to 16 endpoints.
51 Each of these endpoints
54 Each of the endpoints will have a different
63 To find out which endpoints exist, there are a series of
66 of the device, configurations, interfaces, and endpoints.
111 All endpoints handle the following
158 This operation can only be performed when no endpoints for the interface
266 interfaces, alternatives, and endpoints: by index or by number.
275 all endpoints (except the control endpoint) for the current configuration
H A Dusb.493 Within each device there can be up to 16 endpoints.
95 Each of these endpoints will communicate in one of four different modes:
104 The endpoints in a device are grouped into interfaces.
109 Different alternate settings can have different endpoints within it.
113 endpoints and interfaces.
/freebsd-src/sys/dev/usb/
H A Dusb_device.h66 * refer to the USB specification for a definition of "endpoints" and
122 * endpoints for an USB configuration in USB device side mode.
136 * endpoints for an USB configuration in USB device side mode.
210 struct usb_endpoint *endpoints; member
212 struct usb_endpoint endpoints[USB_MAX_EP_UNITS]; member
261 uint8_t endpoints_max; /* number of endpoints present */
H A Dusb_device.c310 struct usb_endpoint *ep = udev->endpoints; in usbd_get_ep_by_addr()
311 struct usb_endpoint *ep_end = udev->endpoints + udev->endpoints_max; in usbd_get_ep_by_addr()
323 * Iterate across all the USB endpoints searching for a match in usbd_get_ep_by_addr()
364 struct usb_endpoint *ep = udev->endpoints; in usbd_get_endpoint()
365 struct usb_endpoint *ep_end = udev->endpoints + udev->endpoints_max; in usbd_get_endpoint()
418 /* this will match BULK and INTERRUPT endpoints */ in usbd_get_endpoint()
432 * Iterate across all the USB endpoints searching for a match in usbd_get_endpoint()
434 * the endpoints from the beginning of the "udev->endpoints" array. in usbd_get_endpoint()
546 * This function will iterate all the USB endpoints excep
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/IR/
H A DMetadata.cpp1249 static bool tryMergeRange(SmallVectorImpl<ConstantInt *> &EndPoints, in tryMergeRange()
1252 unsigned Size = EndPoints.size(); in tryMergeRange()
1253 APInt LB = EndPoints[Size - 2]->getValue(); in tryMergeRange()
1254 APInt LE = EndPoints[Size - 1]->getValue(); in tryMergeRange()
1259 EndPoints[Size - 2] =
1261 EndPoints[Size - 1] = in addRange()
1268 static void addRange(SmallVectorImpl<ConstantInt *> &EndPoints, in addRange()
1270 if (!EndPoints.empty()) in getMostGenericRange()
1271 if (tryMergeRange(EndPoints, Low, High)) in getMostGenericRange()
1274 EndPoints in getMostGenericRange()
1241 tryMergeRange(SmallVectorImpl<ConstantInt * > & EndPoints,ConstantInt * Low,ConstantInt * High) tryMergeRange() argument
1260 addRange(SmallVectorImpl<ConstantInt * > & EndPoints,ConstantInt * Low,ConstantInt * High) addRange() argument
1283 SmallVector<ConstantInt *, 4> EndPoints; getMostGenericRange() local
[all...]
/freebsd-src/usr.bin/tr/
H A Dtr.1157 For non-octal range endpoints
158 represents the range of characters between the range endpoints, inclusive,
161 If either or both of the range endpoints are octal sequences, it
163 range endpoints, inclusive.
/freebsd-src/sys/dev/rtwn/usb/
H A Drtwn_usb_ep.c129 /* Get Tx queues to USB endpoints mapping. */ in rtwn_usb_setup_queues()
170 ep = uc->uc_udev->endpoints; in rtwn_usb_setup_endpoints()
171 ep_end = uc->uc_udev->endpoints + uc->uc_udev->endpoints_max; in rtwn_usb_setup_endpoints()
232 KASSERT(0, ("unhandled number of endpoints %d\n", uc->ntx)); in rtwn_usb_setup_endpoints()
/freebsd-src/sys/contrib/device-tree/Bindings/display/
H A Dst,stm32-ltdc.yaml40 ltdc has one video port with up to 2 endpoints:
43 Note: These 2 endpoints cannot be activated simultaneously.
H A Dallwinner,sun8i-a83t-de2-mixer.yaml54 Input endpoints of the controller.
59 Output endpoints of the controller.
H A Dallwinner,sun9i-a80-deu.yaml49 Input endpoints of the controller.
54 Output endpoints of the controller.
H A Dallwinner,sun6i-a31-drc.yaml55 Input endpoints of the controller.
60 Output endpoints of the controller.
H A Dallwinner,sun4i-a10-display-frontend.yaml66 Input endpoints of the controller.
71 Output endpoints of the controller.
/freebsd-src/share/man/man9/
H A Dofw_graph.966 returns the number of endpoints a port node have.
74 If there is multiple endpoints it will check the
/freebsd-src/sys/dev/usb/wlan/
H A Dif_runvar.h36 /* Tx ring count was 8/endpoint, now 32 for all 4 (or 6) endpoints. */
131 * There are 7 bulk endpoints: 1 for RX
134 * seem to have only 4 TX bulk endpoints (Fukaumi Naoki).
/freebsd-src/sys/contrib/device-tree/Bindings/interconnect/
H A Dinterconnect.txt14 etc. The consumer drivers set constraints on interconnect path (or endpoints)
49 to both endpoints and in such cases, this information will be passed
/freebsd-src/sys/contrib/device-tree/Bindings/display/bridge/
H A Dthine,thc63lvd1024.yaml35 port@1, and both port@0 and port@1 shall contain endpoints.
40 port@3 shall contain endpoints.

1234567891011