| /freebsd-12.1/contrib/tcpdump/ |
| H A D | print-ip6.c | 224 u_int flow; in ip6_print() local 249 flow = EXTRACT_32BITS(&ip6->ip6_flow); in ip6_print() 253 if (flow & 0x0f000000) in ip6_print() 254 ND_PRINT((ndo, "pri 0x%02x, ", (flow & 0x0f000000) >> 24)); in ip6_print() 255 if (flow & 0x00ffffff) in ip6_print() 256 ND_PRINT((ndo, "flowlabel 0x%06x, ", flow & 0x00ffffff)); in ip6_print() 259 if (flow & 0x0ff00000) in ip6_print() 260 ND_PRINT((ndo, "class 0x%02x, ", (flow & 0x0ff00000) >> 20)); in ip6_print() 261 if (flow & 0x000fffff) in ip6_print() 262 ND_PRINT((ndo, "flowlabel 0x%05x, ", flow & 0x000fffff)); in ip6_print()
|
| /freebsd-12.1/contrib/ipfilter/lib/ |
| H A D | printpacket6.c | 25 u_32_t flow; local 30 flow = ntohl(*(u_32_t *)buf); 31 flow &= 0xfffff; 42 PRINTF("ip6/%d %d %#x %d", buf[0] & 0xf, plen, flow, p);
|
| /freebsd-12.1/contrib/gcc/doc/ |
| H A D | cfg.texi | 15 A control flow graph (CFG) is a data structure built on top of the 17 stream) abstracting the control flow behavior of a function that is 20 control flow from one basic block to another. The data structures 21 used to represent the control flow graph are defined in 140 @cindex edge in the flow graph 306 which has a much simpler flow graph: 372 maintaining profile within the flow graph. 436 assembly file and the flow graph is no longer maintained. 598 flow graph and insert instructions on them. In the RTL 656 the data flow module to have liveness updated via the [all …]
|
| /freebsd-12.1/crypto/openssl/ssl/statem/ |
| H A D | README | 18 - Separate message flow state from handshake state (in order to better 20 - message flow state = when to flush buffers; handling restarts in the 21 event of NBIO events; handling the common flow of steps for reading a 22 message and the common flow of steps for writing a message etc 27 The message flow state machine is divided into a reading sub-state machine and a
|
| /freebsd-12.1/sys/kern/ |
| H A D | uipc_mbufhash.c | 161 uint32_t flow; in m_ether_tcpip_hash() local 164 flow = ip6->ip6_flow & IPV6_FLOWLABEL_MASK; in m_ether_tcpip_hash() 165 p = fnv_32_buf(&flow, sizeof(flow), p); in m_ether_tcpip_hash()
|
| /freebsd-12.1/cddl/usr.sbin/dwatch/libexec/ |
| H A D | ip | 23 this string flow; 38 this->flow = this->recv ? "<-" : "->"; 66 this->flow,
|
| H A D | rw | 25 this string flow; 36 this->flow = probefunc == "read" ? "<-" : "->"; 64 this->flow,
|
| H A D | tcp | 64 this string flow; 113 this->flow = probeflow[probename]; 172 /* flow = "[from state]->[to state]" */ 173 this->flow = strjoin(tcpstate[this->from_state], 201 this->flow,
|
| H A D | udplite | 23 this string flow; 41 this->flow = this->recv ? "<-" : "->"; 79 this->flow,
|
| H A D | udp | 23 this string flow; 41 this->flow = this->recv ? "<-" : "->"; 79 this->flow,
|
| H A D | io | 36 this string flow; 50 this->flow = probefunc == "done" ? "<-" : "->"; 94 this->flow,
|
| H A D | sendrecv | 137 this string flow; 155 this->flow = probeflow[probefunc]; 218 this->flow,
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | YAMLTraits.h | 499 struct Fallback { bool flow; }; 503 static char (&f(SameType<bool Fallback::*, &C::flow>*))[1]; 1842 template <> struct IsFlowSequenceBase<true> { static const bool flow = true; }; 1868 SequenceElementTraits<T>::flow>::value>::type> 1869 : SequenceTraitsImpl<std::vector<T>, SequenceElementTraits<T>::flow> {}; 1873 SequenceElementTraits<T>::flow>::value>::type> 1874 : SequenceTraitsImpl<SmallVector<T, N>, SequenceElementTraits<T>::flow> {}; 1880 static const bool flow = true; 1885 static const bool flow = false; 1888 static const bool flow = false; [all …]
|
| /freebsd-12.1/contrib/libpcap/ |
| H A D | pcap-rdmasniff.c | 57 struct ibv_flow * flow; member 83 ibv_destroy_flow(priv->flow); in rdmasniff_cleanup() 262 priv->flow = ibv_create_flow(priv->qp, &flow_attr); in rdmasniff_activate() 263 if (!priv->flow) { in rdmasniff_activate() 325 if (priv->flow) { in rdmasniff_activate() 326 ibv_destroy_flow(priv->flow); in rdmasniff_activate()
|
| /freebsd-12.1/contrib/binutils/opcodes/ |
| H A D | arc-dis.c | 570 state->flow = noflow; in dsmOneArcInst() 595 state->flow = invalid_instr; in dsmOneArcInst() 625 state->flow = invalid_instr; in dsmOneArcInst() 653 state->flow = invalid_instr; in dsmOneArcInst() 708 state->flow=invalid_instr; in dsmOneArcInst() 724 state->flow = invalid_instr; in dsmOneArcInst() 804 state->flow=invalid_instr; in dsmOneArcInst() 893 state->flow = state->_opcode == op_BLC /* BL */ in dsmOneArcInst() 919 state->flow = is_linked ? direct_call : direct_jump; in dsmOneArcInst() 928 state->flow = is_linked ? indirect_call : indirect_jump; in dsmOneArcInst()
|
| H A D | arc-dis.h | 61 enum Flow flow; member
|
| /freebsd-12.1/sys/netgraph/atm/sscop/ |
| H A D | ng_sscop.c | 97 int flow; /* flow control states */ member 307 if (priv->flow) { in flow_upper() 310 priv->flow = 0; in flow_upper() 323 priv->flow = 1; in flow_upper() 330 if (priv->flow) in flow_upper() 340 priv->flow = 1; in flow_upper() 536 priv->flow = 1; in ng_sscop_rcvmsg() 749 if (sig == SSCOP_DATA_indication && priv->flow) in sscop_send_upper()
|
| /freebsd-12.1/sys/netgraph/bluetooth/l2cap/ |
| H A D | ng_l2cap_evnt.c | 706 bcopy(&val.flow, &ch->iflow, sizeof(ch->iflow)); in ng_l2cap_process_cfg_req() 862 bcopy(&val.flow, &cmd->ch->oflow, in ng_l2cap_process_cfg_rsp() 1459 val->flow.token_rate = le32toh(val->flow.token_rate); in get_next_l2cap_opt() 1460 val->flow.token_bucket_size = in get_next_l2cap_opt() 1461 le32toh(val->flow.token_bucket_size); in get_next_l2cap_opt() 1462 val->flow.peak_bandwidth = le32toh(val->flow.peak_bandwidth); in get_next_l2cap_opt() 1463 val->flow.latency = le32toh(val->flow.latency); in get_next_l2cap_opt() 1464 val->flow.delay_variation = le32toh(val->flow.delay_variation); in get_next_l2cap_opt()
|
| H A D | ng_l2cap_llpi.c | 352 ng_l2cap_flow_p flow) in ng_l2cap_lp_qos_req() argument 398 ep->flags = flow->flags; in ng_l2cap_lp_qos_req() 399 ep->service_type = flow->service_type; in ng_l2cap_lp_qos_req() 400 ep->token_rate = flow->token_rate; in ng_l2cap_lp_qos_req() 401 ep->peak_bandwidth = flow->peak_bandwidth; in ng_l2cap_lp_qos_req() 402 ep->latency = flow->latency; in ng_l2cap_lp_qos_req() 403 ep->delay_variation = flow->delay_variation; in ng_l2cap_lp_qos_req()
|
| /freebsd-12.1/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/ |
| H A D | JDTrace.java | 52 static boolean flow = false; field in JDTrace 183 if (flow) { in consumeProbeData() 194 if (flow) { in consumeProbeData() 195 Flow flow = data.getFlow(); in consumeProbeData() local 196 int indent = (flow.getDepth() * 2); in consumeProbeData() 204 switch (flow.getKind()) { in consumeProbeData() 221 switch (flow.getKind()) { in consumeProbeData() 885 flow = (dtrace.getOption(Option.flowindent) != Option.UNSET); in main()
|
| /freebsd-12.1/sys/net/altq/ |
| H A D | altq_subr.c | 1046 altq_extractflow(m, af, flow, filt_bmask) in altq_extractflow() argument 1049 struct flowinfo *flow; 1063 fin = (struct flowinfo_in *)flow; 1092 fin6 = (struct flowinfo_in6 *)flow; 1126 flow->fi_len = sizeof(struct flowinfo); 1127 flow->fi_family = AF_UNSPEC; 1529 struct flowinfo flow; local 1534 altq_extractflow(m, af, &flow, classifier->acc_fbmask); 1536 if (flow.fi_family == AF_INET) { 1537 struct flowinfo_in *fp = (struct flowinfo_in *)&flow; [all …]
|
| /freebsd-12.1/sys/gnu/dts/mips/ |
| H A D | WL-351.dts | 105 * port5: enabled, gige, full-duplex, rx/tx-flow-control 106 * port6: enabled, gige, full-duplex, rx/tx-flow-control
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | ChangeLog.tree-ssa | 6900 * tree-flow.h: Likewise. 9772 * tree-flow.h: Likewise. 11487 flow control. 13028 * tree-flow.h: ... here 14461 * tree-flow.h: Likewise. 14961 Include tree-flow.h 15399 * tree-flow.h: Include tree-flow-inline.h, basic-block.h and 15433 declared in tree-flow.h 16948 tree-flow.h. 17510 * tree-flow.h: Ditto. [all …]
|
| /freebsd-12.1/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | dt_consume.c | 417 dtrace_flowkind_t flow = DTRACEFLOW_NONE; in dt_flowindent() local 442 flow = DTRACEFLOW_ENTRY; in dt_flowindent() 446 flow = DTRACEFLOW_RETURN; in dt_flowindent() 456 if (flow == DTRACEFLOW_ENTRY) { in dt_flowindent() 459 flow = DTRACEFLOW_NONE; in dt_flowindent() 467 if (flow == DTRACEFLOW_RETURN) { in dt_flowindent() 484 flow = DTRACEFLOW_NONE; in dt_flowindent() 488 if (flow == DTRACEFLOW_ENTRY || flow == DTRACEFLOW_RETURN) { in dt_flowindent() 497 data->dtpda_flow = flow; in dt_flowindent() 2159 if (flow) in dt_consume_cpu() [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | MIRYamlMapping.h | 175 static const bool flow = true; 196 static const bool flow = true; 269 static const bool flow = true; 337 static const bool flow = true;
|