Home
last modified time | relevance | path

Searched refs:layer (Results 1 – 25 of 264) sorted by relevance

1234567891011

/freebsd-14.2/sys/contrib/device-tree/Bindings/display/
H A Dxylon,logicvc-display.yaml182 - layer@0
244 layer@0 {
248 xylon,layer-alpha-mode = "layer";
254 layer@1 {
258 xylon,layer-alpha-mode = "layer";
263 layer@2 {
267 xylon,layer-alpha-mode = "layer";
272 layer@3 {
276 xylon,layer-alpha-mode = "layer";
281 layer@4 {
[all …]
/freebsd-14.2/usr.sbin/ppp/
H A Dlink.c251 int layer; in link_PushPacket() local
264 for (layer = l->nlayers; layer && bp; layer--) in link_PushPacket()
265 if (l->layer[layer - 1]->push != NULL) in link_PushPacket()
280 int layer; in link_PullPacket() local
300 layer = 0; in link_PullPacket()
302 while (layer || lbp[layer]) { in link_PullPacket()
312 if (l->layer[layer]->pull != NULL) in link_PullPacket()
332 link_Stack(struct link *l, struct layer *layer) in link_Stack() argument
339 l->layer[l->nlayers++] = layer; in link_Stack()
405 for (layer = l->nlayers; layer; layer--) in link_ShowLayers()
[all …]
H A Dlink.h57 struct layer const *layer[LAYER_MAX]; /* i/o layers */ member
74 extern int link_Stack(struct link *, struct layer *);
H A Dlqr.c421 int len, layer; in lqr_LayerPush() local
451 for (layer = 0; layer < l->nlayers; layer++) in lqr_LayerPush()
452 switch (l->layer[layer]->type) { in lqr_LayerPush()
463 layer = l->nlayers; in lqr_LayerPush()
473 l->layer[layer]->name); in lqr_LayerPush()
532 struct layer lqrlayer = { LAYER_LQR, "lqr", lqr_LayerPush, lqr_LayerPull };
/freebsd-14.2/sys/compat/linuxkpi/common/src/
H A Dlinux_idr.c207 if (layer == 0) { in idr_remove_layer()
232 int layer; in idr_remove_locked() local
248 layer--; in idr_remove_locked()
282 int layer; in idr_find_layer_locked() local
291 layer--; in idr_find_layer_locked()
436 int layer; in idr_get_new_locked() local
465 for (layer = idr->layers - 1;; layer--) { in idr_get_new_locked()
523 int layer; in idr_get_new_above_locked() local
536 layer = 0; in idr_get_new_above_locked()
538 layer++; in idr_get_new_above_locked()
[all …]
/freebsd-14.2/sys/dev/pms/freebsd/driver/ini/src/
H A Dosapi.c581 ostiEnter(tiRoot_t *ptiRoot, U32 layer, int io) in ostiEnter() argument
586 BUG_ON((io != 0 && io != 1) || (layer != 0 && layer != 1 && layer != 2)); in ostiEnter()
592 BUG_ON(pCard->callLevel[io] >= sizeof(pCard->layer[0]) / in ostiEnter()
593 sizeof(pCard->layer[0][0])); in ostiEnter()
596 unsigned int prev_layer = pCard->layer[io][pCard->callLevel[io] - 1]; in ostiEnter()
601 pCard->enterCycles[io][layer] = cycles; in ostiEnter()
602 pCard->layer[io][pCard->callLevel[io]] = layer; in ostiEnter()
609 ostiLeave(tiRoot_t *ptiRoot, U32 layer, int io) in ostiLeave() argument
614 BUG_ON((io != 0 && io != 1) || (layer != 0 && layer != 1 && layer != 2)); in ostiLeave()
623 BUG_ON(pCard->layer[io][pCard->callLevel[io]] != layer); in ostiLeave()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TraceExporter/common/
H A DTraceHTR.cpp250 HTRBlockLayerUP lldb_private::BasicSuperBlockMerge(IHTRLayer &layer) { in BasicSuperBlockMerge() argument
252 std::make_unique<HTRBlockLayer>(layer.GetLayerId() + 1); in BasicSuperBlockMerge()
254 if (layer.GetNumUnits()) { in BasicSuperBlockMerge()
270 layer.GetMetadataByIndex(0).GetFirstInstructionLoadAddress(); in BasicSuperBlockMerge()
271 size_t num_units = layer.GetNumUnits(); in BasicSuperBlockMerge()
303 lldb::addr_t last_id = layer.GetMetadataByIndex(num_units - 1) in BasicSuperBlockMerge()
327 HTRBlock new_block = layer.MergeUnits(merge_start, n); in BasicSuperBlockMerge()
432 for (const auto &layer : htr.GetBlockLayers()) { in toJSON() local
434 std::vector<size_t> block_id_trace = layer->GetBlockIdTrace(); in toJSON()
438 HTRBlock block = *layer->GetBlockById(id); in toJSON()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TraceExporter/docs/
H A Dhtr.rst15 single instruction layer.
17 …**Block Layer:** Composed of blocks - a block in *layer n* refers to a sequence of blocks in *laye…
18 …*layer 1* refers to a sequence of instructions in *layer 0* (the instruction layer). Metadata is s…
19 a block layer. HTR contains one or more block layers.
21 **Pass:** A transformation applied to a *layer* that generates a new *layer* that is a more summari…
31 …ass* is applied to a *layer* to extract useful information (summarization) and compress the trace …
/freebsd-14.2/sys/x86/x86/
H A Dmp_x86.c535 int layer; in topo_probe() local
618 for (layer = 0; layer < nlayers; ++layer) { in topo_probe()
633 memmove(&topo_layers[layer+1], &topo_layers[layer], in topo_probe()
635 topo_layers[layer].type = TOPO_TYPE_NODE; in topo_probe()
636 topo_layers[layer].subtype = CG_SHARE_NONE; in topo_probe()
647 for (layer = 0; layer < nlayers; ++layer) { in topo_probe()
655 topo_layers[layer].type, in topo_probe()
656 topo_layers[layer].subtype); in topo_probe()
661 for (layer = 0; layer < nlayers; ++layer) { in topo_probe()
669 topo_layers[layer].type, in topo_probe()
[all …]
/freebsd-14.2/crypto/openssl/ssl/record/
H A DREADME.md5 record layer code to aid future maintenance.
7 The record layer is divided into a number of components. At the time of writing
16 be private to the record layer, or whether they form part of the API to the rest
27 interface to the record layer for the rest of libssl. The other 3 components are
28 entirely private to the record layer and therefore should never be accessed
69 the main one is rec_layer_s3.c which provides the core SSL/TLS layer. The second
/freebsd-14.2/sys/contrib/device-tree/Bindings/reset/
H A Duniphier-reset.txt4 Peripheral core reset in glue layer
7 Some peripheral core reset belongs to its own glue layer. Before using
9 this layer. These clocks and resets should be described in each property.
23 - clocks: A list of phandles to the clock gate for the glue layer.
28 - resets: A list of phandles to the reset control for the glue layer.
H A Dsocionext,uniphier-glue-reset.yaml7 title: Socionext UniPhier peripheral core reset in glue layer
10 Some peripheral core reset belongs to its own glue layer. Before using
12 enable this layer. These clocks and resets should be described in each
/freebsd-14.2/sys/netsmb/
H A Dsmb_rq.h127 int smb_rq_alloc(struct smb_connobj *layer, u_char cmd,
129 int smb_rq_init(struct smb_rq *rqp, struct smb_connobj *layer, u_char cmd,
141 int smb_t2_alloc(struct smb_connobj *layer, u_short setup, struct smb_cred *scred,
143 int smb_t2_init(struct smb_t2rq *rqp, struct smb_connobj *layer, u_short setup,
H A Dsmb_rq.c55 static int smb_rq_getenv(struct smb_connobj *layer,
68 error = smb_rq_init(rqp, layer, cmd, scred); in smb_rq_alloc()
88 error = smb_rq_getenv(layer, &rqp->sr_vc, &rqp->sr_share); in smb_rq_init()
276 smb_rq_getenv(struct smb_connobj *layer, in smb_rq_getenv() argument
284 switch (layer->co_level) { in smb_rq_getenv()
286 vcp = CPTOVC(layer); in smb_rq_getenv()
287 if (layer->co_parent == NULL) { in smb_rq_getenv()
294 ssp = CPTOSS(layer); in smb_rq_getenv()
295 cp = layer->co_parent; in smb_rq_getenv()
306 SMBERROR("invalid layer %d passed\n", layer->co_level); in smb_rq_getenv()
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/regulator/
H A Duniphier-regulator.txt9 This regulator controls VBUS and belongs to USB3 glue layer. Before using
11 this layer. These clocks and resets should be described in each property.
21 - clocks: A list of phandles to the clock gate for USB3 glue layer.
26 - resets: A list of phandles to the reset control for USB3 glue layer.
/freebsd-14.2/contrib/libpcap/doc/
H A DREADME.sita39 PCAP into two halves. The top layer performs the majority of the
41 provide the lower layer functionality of actual sniffing and
58 back to the local 'top layer' for forwarding to the actual
61 Note that the DLT_SITA link-layer type includes a proprietary header
67 - Link layer hardware signal status (1 octet)
/freebsd-14.2/crypto/openssh/
H A Dxmss_hash_address.c16 void setLayerADRS(uint32_t adrs[8], uint32_t layer){ in setLayerADRS() argument
17 adrs[0] = layer; in setLayerADRS()
H A DREADME.tun6 layer 2 or 3 traffic.
35 following configuration in /etc/hostname.tun0 to set up the layer 3
40 OpenBSD also supports layer 2 tunneling over the tun device by adding
84 combination with layer 2 tunneling and Ethernet bridging.
/freebsd-14.2/sys/contrib/device-tree/Bindings/crypto/
H A Dpicochip-spacc.txt4 IPSEC and femtocell layer 2 ciphering.
8 "picochip,spacc-l2" for the femtocell layer 2 ciphering engine.
/freebsd-14.2/sys/contrib/device-tree/Bindings/net/
H A Dimx-dwmac.txt1 IMX8 glue layer controller, NXP imx8 families support Synopsys MAC 5.10a IP.
3 This file documents platform glue layer for IMX.
9 - compatible: Should be "nxp,imx8mp-dwmac-eqos" to select glue layer
/freebsd-14.2/sys/dev/ixgbe/
H A Dif_ix.c1298 u64 layer; in ixgbe_add_media_types() local
1303 if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_T) in ixgbe_add_media_types()
1305 if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_T) in ixgbe_add_media_types()
1307 if (layer & IXGBE_PHYSICAL_LAYER_100BASE_TX) in ixgbe_add_media_types()
1309 if (layer & IXGBE_PHYSICAL_LAYER_10BASE_T) in ixgbe_add_media_types()
1339 if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KR) in ixgbe_add_media_types()
2280 int layer; in ixgbe_if_media_status() local
2291 layer = sc->phy_layer; in ixgbe_if_media_status()
2296 layer & IXGBE_PHYSICAL_LAYER_10BASE_T) in ixgbe_if_media_status()
2327 if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_LR) in ixgbe_if_media_status()
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/display/mediatek/
H A Dmediatek,ovl-2l.yaml7 title: Mediatek display overlay 2 layer
14 Mediatek display overlay 2 layer, namely OVL-2L, provides 2 more layer
/freebsd-14.2/sys/dev/ow/
H A DREADME.txt12 device, which implements the own(9) interface (n for network, the layer
13 described in the AN927). The presentation layer and above is the
/freebsd-14.2/sys/contrib/device-tree/Bindings/pci/
H A Duniphier-pcie.txt17 "link" - SoC-specific glue layer registers
20 - clocks: A phandle to the clock gate for PCIe glue layer including
22 - resets: A phandle to the reset line for PCIe glue layer including
/freebsd-14.2/sys/contrib/device-tree/Bindings/display/xlnx/
H A Dxlnx,zynqmp-dpsub.yaml99 - description: Video layer, plane 0 (RGB or luma)
100 - description: Video layer, plane 1 (U/V or U)
101 - description: Video layer, plane 2 (V)
102 - description: Graphics layer

1234567891011