/freebsd/contrib/unbound/edns-subnet/ |
H A D | addrtree.c | 59 struct addredge *edge = (struct addredge *)malloc( sizeof (*edge) ); in edge_create() local 60 if (!edge) in edge_create() 62 edge->node = node; in edge_create() 63 edge->len = addrlen; in edge_create() 64 edge->parent_index = parent_index; in edge_create() 65 edge->parent_node = parent_node; in edge_create() 68 edge->str = (addrkey_t *)calloc(n, sizeof (addrkey_t)); in edge_create() 69 if (!edge->str) { in edge_create() 70 free(edge); in edge_create() 73 memcpy(edge->str, addr, n * sizeof (addrkey_t)); in edge_create() [all …]
|
/freebsd/contrib/ldns/ |
H A D | radix.c | 212 prefix->array[0].edge = add; in ldns_radix_insert() 268 prefix->array[byte].edge = add; in ldns_radix_insert() 269 } else if (prefix->array[byte-prefix->offset].edge == NULL) { in ldns_radix_insert() 291 prefix->array[byte].edge = add; in ldns_radix_insert() 368 node = node->array[byte].edge; in ldns_radix_search() 417 if (!node->array[byte].edge) { in ldns_radix_find_less_equal() 436 node->array[byte].edge); in ldns_radix_find_less_equal() 439 *result = ldns_radix_last_in_subtree_incl_self(node->array[byte].edge); in ldns_radix_find_less_equal() 441 *result = ldns_radix_prev(node->array[byte].edge); in ldns_radix_find_less_equal() 450 node->array[byte].edge); in ldns_radix_find_less_equal() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | mscc-phy-vsc8531.txt | 7 with the 'edge-slowdown' property. 9 - vsc8531,edge-slowdown : % the edge should be slowed down relative to 10 the fastest possible edge time. 13 drive strength will affect the edge rate of 17 and in effect slow down the edge rate if 19 To adjust the edge-slowdown, the 'vddmac' 21 supported edge-slowdown values for a given 69 vsc8531,edge-slowdown = <7>;
|
/freebsd/tests/sys/netgraph/ |
H A D | ng_macfilter_test.sh | 218 local edge="out$(seq 0 1 $HOOKS | sort -R | head -1)" 219 test $edge = 'out0' \ 221 || echo $edge 311 test $i = 2 && edge='out2' || edge='out1' 314 ngctl msg MF: 'direct' "{ hookname=\"$edge\" ether=$ether }" 335 edge='out3' 338 ngctl msg MF: 'direct' "{ hookname=\"$edge\" ether=$ether }" 360 edge="default" 363 ngctl msg MF: 'direct' "{ hookname=\"$edge\" ether=$ether }" 380 edge=$(randomedge) [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/gpio/ |
H A D | cavium-octeon-gpio.txt | 21 1 - edge triggered on the rising edge. 22 2 - edge triggered on the falling edge 37 * 2) Triggering (1 - edge rising 38 * 2 - edge falling
|
H A D | brcm,kona-gpio.txt | 9 GPIO controller only supports edge, not level, triggering of interrupts. 29 1 = low-to-high edge triggered. 30 2 = high-to-low edge triggered. 31 3 = low-to-high or high-to-low edge triggered
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | suff.mk | 23 step1: .PHONY edge-case.to everything 34 edge-case.to: ${.PREFIX}${.ARCHIVE}.additional 36 edge-case.from edge-case.additional:
|
H A D | directive-ifmake.mk | 92 .MAKEFLAGS: !edge 93 .ifmake edge 101 .ifmake \!edge 113 first second unmentioned late-target \!edge:
|
/freebsd/sys/contrib/device-tree/Bindings/soc/qcom/ |
H A D | qcom,smd.txt | 15 processor of some sort - or in SMD language an "edge". The name of the edges 17 The edge is described by the following properties: 40 - qcom,smd-edge: 55 Definition: name of the edge, used for debugging and identification 62 "edge". The names of the devices are not important. The properties of these 74 The following example represents a smd node, with one edge representing the 89 qcom,smd-edge = <15>;
|
H A D | qcom,glink.txt | 1 Qualcomm GLINK edge binding 3 This binding describes a Qualcomm GLINK edge, a fifo based mechanism for 5 of edges can be described by the binding; the GLINK RPM edge and a SMEM based 6 edge. 16 Definition: should specify the subsystem name this edge corresponds to. 27 Definition: specifies the identifier of the remote endpoint of this edge
|
H A D | qcom,smp2p.txt | 6 identified in the system by the directed edge (local processor ID to remote 30 signaling the remote end of the smp2p edge: 39 for this edge 44 Definition: specifies the identifier of the local endpoint of this edge 49 Definition: specifies the identifier of the remote endpoint of this edge
|
H A D | qcom,smd-rpm.txt | 8 The SMD information for the RPM edge should be filled out. See qcom,smd.txt for 9 the required edge properties. All SMD related properties will reside within the 53 qcom,smd-edge = <15>;
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | ExportTrie.cpp | 152 for (const Edge &edge : edges) { in updateOffset() local 153 nodeSize += edge.substring.size() + 1 // String length. in updateOffset() 154 + getULEB128Size(edge.child->offset); // Offset len. in updateOffset() 184 for (const Edge &edge : edges) { in writeTo() local 185 memcpy(buf, edge.substring.data(), edge.substring.size()); in writeTo() 186 buf += edge.substring.size(); in writeTo() 188 buf += encodeULEB128(edge.child->offset, buf); in writeTo()
|
/freebsd/sys/contrib/device-tree/Bindings/pps/ |
H A D | pps-gpio.txt | 15 - assert-falling-edge: when present, assert is indicated by a falling edge 16 (instead of by a rising edge) 24 assert-falling-edge;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64PBQPRegAlloc.cpp | 176 PBQPRAGraph::EdgeId edge = G.findEdge(node1, node2); in addIntraChainConstraint() local 180 if (edge == G.invalidEdgeId()) { in addIntraChainConstraint() 201 if (G.getEdgeNode1Id(edge) == node2) { in addIntraChainConstraint() 207 PBQPRAGraph::RawMatrix costs(G.getEdgeCosts(edge)); in addIntraChainConstraint() 232 G.updateEdgeCosts(edge, std::move(costs)); in addIntraChainConstraint() 272 PBQPRAGraph::EdgeId edge = G.findEdge(node1, node2); in addInterChainConstraint() local 273 assert(edge != G.invalidEdgeId() && in addInterChainConstraint() 278 if (G.getEdgeNode1Id(edge) == node2) { in addInterChainConstraint() 284 PBQP::Matrix costs(G.getEdgeCosts(edge)); in addInterChainConstraint() 309 G.updateEdgeCosts(edge, std::move(costs)); in addInterChainConstraint()
|
/freebsd/sys/contrib/device-tree/Bindings/power/reset/ |
H A D | gpio-poweroff.txt | 3 The driver supports both level triggered and edge triggered power off. 11 condition. This will also cause an inactive->active edge condition, so 12 triggering positive edge triggered power off. After a delay of 100ms, 13 the GPIO is set to inactive, thus causing an active->inactive edge, 14 triggering negative edge triggered power off. After another 100ms
|
H A D | gpio-restart.txt | 4 This binding supports level and edge triggered reset. At driver load 13 inactive->active edge condition, triggering positive edge triggered 15 inactive, thus causing an active->inactive edge, triggering negative edge
|
/freebsd/sys/contrib/device-tree/Bindings/iio/adc/ |
H A D | at91-sama5d2_adc.txt | 14 - atmel,trigger-edge-type: One of possible edge types for the ADTRG hardware 15 trigger pin. When the specific edge type is detected, the conversion will 17 This property uses the IRQ edge types values: IRQ_TYPE_EDGE_RISING , 46 atmel,trigger-edge-type = <IRQ_TYPE_EDGE_BOTH>;
|
/freebsd/usr.sbin/bsdconfig/dot/ |
H A D | dot | 96 edge) printf '\t\t%s' "$node" ;; 332 # printf '\tconcentrate = true;\t// enable edge concentrators\n' 402 [ "$SHOW_CMDLINE" -o ! "$SHOW_INCLUDES" ] && print_node edge "headport = w" 403 print_node edge "style = bold" "color = $edge_color" 443 print_node edge "style = dashed" "color = $edge_color" 505 print_node edge "headport = w" "weight = 100.0" 506 print_node edge "style = bold" "color = $fillcolor"
|
/freebsd/contrib/byacc/ |
H A D | lalr.c | 280 Value_t *edge; in initialize_F() local 292 edge = NEW2(ngotos + 1, Value_t); in initialize_F() 318 edge[nedges++] = map_goto(stateno, symbol); in initialize_F() 326 rp[j] = edge[j]; in initialize_F() 346 FREE(edge); in initialize_F() 363 Value_t *edge; in build_relations() local 368 edge = NEW2(ngotos + 1, Value_t); in build_relations() 410 edge[nedges++] = map_goto(stateno, *rp); in build_relations() 421 shortp[j] = edge[j]; in build_relations() 436 FREE(edge); in build_relations()
|
/freebsd/sys/dev/gpio/ |
H A D | gpiopps.c | 174 uint32_t edge, pincaps; in gpiopps_fdt_attach() local 190 edge = GPIO_INTR_EDGE_FALLING; in gpiopps_fdt_attach() 192 edge = GPIO_INTR_EDGE_RISING; in gpiopps_fdt_attach() 211 if ((pincaps & edge) == 0) { in gpiopps_fdt_attach() 222 sc->gpin, edge)) == NULL) { in gpiopps_fdt_attach()
|
/freebsd/sys/modules/dtb/rockchip/ |
H A D | Makefile | 9 rockchip/rk3399-khadas-edge-captain.dts \ 10 rockchip/rk3399-khadas-edge.dts \ 11 rockchip/rk3399-khadas-edge-v.dts \
|
/freebsd/contrib/libpcap/ |
H A D | gencode.h | 254 struct edge { struct 260 struct edge *next; /* link list of incoming edges for a node */ argument 278 struct edge et; /* edge corresponding to the jt branch */ 279 struct edge ef; /* edge corresponding to the jf branch */ 284 struct edge *in_edges; /* first edge in the set (linked list) of edges with this as a successor */
|
/freebsd/sys/sys/ |
H A D | timepps.h | 119 int edge; member 252 const int edge, const int tsformat) in time_pps_kcbind() argument 257 arg.edge = edge; in time_pps_kcbind()
|
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/ |
H A D | rk3399-khadas-edge.dts | 8 #include "rk3399-khadas-edge.dtsi" 12 compatible = "khadas,edge", "rockchip,rk3399";
|