Home
last modified time | relevance | path

Searched +full:int +full:- +full:fwd +full:- +full:mask (Results 1 – 25 of 43) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dregex2.h1 /*-
58 * - OPLUS_ and O_PLUS are *inside* the loop they create.
59 * - OQUEST_ and O_QUEST are *outside* the bypass they create.
60 * - OCH_ and O_CH are *outside* the multi-way branch they create, while
77 /* (back, fwd are offsets) */
78 #define OEND (1LU<<OPSHIFT) /* endmarker - */
80 #define OBOL (3LU<<OPSHIFT) /* left anchor - */
81 #define OEOL (4LU<<OPSHIFT) /* right anchor - */
82 #define OANY (5LU<<OPSHIFT) /* . - */
86 #define OPLUS_ (9LU<<OPSHIFT) /* + prefix fwd to suffix */
[all …]
/freebsd/contrib/nvi/regex/
H A Dregex2.h3 /*-
39 * First, the stuff that ends up in the outside-world include file
42 = int re_magic;
45 = struct re_guts *re_g; // none of your business :-)
66 * - OPLUS_ and O_PLUS are *inside* the loop they create.
67 * - OQUEST_ and O_QUEST are *outside* the bypass they create.
68 * - OCH_ and O_CH are *outside* the multi-way branch they create, while
79 /* (back, fwd are offsets) */
80 #define OEND (1) /* endmarker - */
82 #define OBOL (3) /* left anchor - */
[all …]
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dbrcm,bcm7120-l2-intc.txt1 Broadcom BCM7120-style Level 2 interrupt controller
4 is hooked to a parent interrupt controller: e.g: ARM GIC for ARM-based
9 - outputs multiple interrupts signals towards its interrupt controller parent
11 - controls how some of the interrupts will be flowing, whether they will
16 - has one 32-bit enable word and one 32-bit status word
18 - no atomic set/clear operations
20 - not all bits within the interrupt controller actually map to an interrupt
26 0 -----[ MUX ] ------------|==========> GIC interrupt 75
27 \-----------\
29 1 -----[ MUX ] --------)---|==========> GIC interrupt 76
[all …]
H A Dbrcm,bcm7120-l2-intc.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/interrupt-controlle
[all...]
H A Dbrcm,bcm7038-l1-intc.txt1 Broadcom BCM7038-style Level 1 interrupt controller
4 directly to one of the HW INT lines on each CPU. Every BCM7xxx set-top chip
9 - 64, 96, 128, or 160 incoming level IRQ lines
11 - Most onchip peripherals are wired directly to an L1 input
13 - A separate instance of the register set for each CPU, allowing individual
16 - Atomic mask/unmask operations
18 - No polarity/level/edge settings
20 - No FIFO or priority encoder logic; software is expected to read all
21 2-5 status words to determine which IRQs are pending
25 - compatible: should be "brcm,bcm7038-l1-intc"
[all …]
H A Dbrcm,bcm7038-l1-intc.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/interrupt-controller/brcm,bcm7038-l1-intc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Broadcom BCM7038-style Level 1 interrupt controller
11 directly to one of the HW INT lines on each CPU. Every BCM7xxx set-top chip
16 - 64, 96, 128, or 160 incoming level IRQ lines
18 - Most onchip peripherals are wired directly to an L1 input
20 - A separate instance of the register set for each CPU, allowing individual
23 - Atomic mask/unmask operations
[all …]
/freebsd/crypto/openssh/
H A Dserverloop.c62 #include "openbsd-compat/sys-queue.h"
80 #include "auth-options.h"
89 extern int use_privsep;
91 static int no_more_sessions = 0; /* Disallow further sessions. */
105 static int
106 bind_permitted(int port, uid_t uid) in bind_permitted()
116 sigchld_handler(int sig) in sigchld_handler()
122 sigterm_handler(int sig) in sigterm_handler()
131 int r, channel_id; in client_alive_check()
146 if ((channel_id = channel_find_open(ssh)) == -1) { in client_alive_check()
[all …]
H A Dreadconf.c49 # include "openbsd-compat/glob.h"
78 # 2. user-specific file
79 # 3. system-wide file
81 # Thus, host-specific definitions should be at the beginning of the
84 # Host-specific declarations. These may override anything above. A single
100 Ciphers 3des-cbc
109 ProxyCommand ssh-proxy %h %p
115 Ciphers aes128-ctr
135 static int read_config_file_depth(const char *filename, struct passwd *pw,
137 int flags, int *activep, int *want_final_pass, int depth);
[all …]
H A Dclientloop.c92 #include "openbsd-compat/sys-queue.h"
119 #define HOSTKEY_PROOF_RSA_ALGS "rsa-sha2-512,rsa-sha2-256"
128 extern int muxserver_sock; /* XXX use mux_client_cleanup() instead */
132 * command line, or the Hostname specified for the user-supplied name in a
156 volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
157 static int last_was_c
989 struct Forward fwd; process_cmdline() local
[all...]
H A Dservconf.h19 #include <openbsd-compat/sys-queue.h>
24 #define PERMIT_NOT_SET -1
37 #define PERMITOPEN_NONE -2
47 /* Magic name for internal sftp-server */
48 #define INTERNAL_SFTP_NAME "internal-sftp"
64 int port; /* <=0 if unspecified */
77 int ports[MAX_PORTS]; /* Port number to listen on. */
82 int address_family; /* Address family used by the server. */
87 int *host_key_file_userprovided; /* Key was specified by user. */
92 char *host_key_agent; /* ssh-agent socket for host keys. */
[all …]
H A Dchannels.h45 #define SSH_CHANNEL_OPEN 4 /* normal open two-way channel */
50 #define SSH_CHANNEL_RPORT_LISTENER 11 /* Listening to a R-style port */
58 #define SSH_CHANNEL_RUNIX_LISTENER 19 /* Listening to a R-style domain socket. */
59 #define SSH_CHANNEL_MUX_PROXY 20 /* proxy channel for mux-client */
64 #define CHANNEL_CANCEL_PORT_STATIC -1
67 #define CHANNEL_NONBLOCK_LEAVE 0 /* don't modify non-blocking state */
68 #define CHANNEL_NONBLOCK_SET 1 /* set non-blocking state */
69 #define CHANNEL_NONBLOCK_STDIO 2 /* set non-blocking and restore on close */
71 /* c->restore_block mask flags */
90 typedef void channel_open_fn(struct ssh *, int, int, void *);
[all …]
/freebsd/sys/contrib/device-tree/src/mips/brcm/
H A Dbcm7358.dtsi1 // SPDX-License-Identifier: GPL-2.0
3 #address-cells = <1>;
4 #size-cells = <1>;
8 #address-cells = <1>;
9 #size-cells = <0>;
11 mips-hpt-frequency = <375000000>;
24 cpu_intc: interrupt-controller {
25 #address-cells = <0>;
26 compatible = "mti,cpu-interrupt-controller";
28 interrupt-controller;
[all …]
H A Dbcm7360.dtsi1 // SPDX-License-Identifier: GPL-2.0
3 #address-cells = <1>;
4 #size-cells = <1>;
8 #address-cells = <1>;
9 #size-cells = <0>;
11 mips-hpt-frequency = <375000000>;
24 cpu_intc: interrupt-controller {
25 #address-cells = <0>;
26 compatible = "mti,cpu-interrupt-controller";
28 interrupt-controller;
[all …]
H A Dbcm7362.dtsi1 // SPDX-License-Identifier: GPL-2.0
3 #address-cells = <1>;
4 #size-cells = <1>;
8 #address-cells = <1>;
9 #size-cells = <0>;
11 mips-hpt-frequency = <375000000>;
30 cpu_intc: interrupt-controller {
31 #address-cells = <0>;
32 compatible = "mti,cpu-interrupt-controller";
34 interrupt-controller;
[all …]
H A Dbcm7346.dtsi1 // SPDX-License-Identifier: GPL-2.0
3 #address-cells = <1>;
4 #size-cells = <1>;
8 #address-cells = <1>;
9 #size-cells = <0>;
11 mips-hpt-frequency = <163125000>;
30 cpu_intc: interrupt-controller {
31 #address-cells = <0>;
32 compatible = "mti,cpu-interrupt-controller";
34 interrupt-controller;
[all …]
H A Dbcm7435.dtsi1 // SPDX-License-Identifier: GPL-2.0
3 #address-cells = <1>;
4 #size-cells = <1>;
8 #address-cells = <1>;
9 #size-cells = <0>;
11 mips-hpt-frequency = <175625000>;
42 cpu_intc: interrupt-controller {
43 #address-cells = <0>;
44 compatible = "mti,cpu-interrupt-controller";
46 interrupt-controller;
[all …]
H A Dbcm7425.dtsi1 // SPDX-License-Identifier: GPL-2.0
3 #address-cells = <1>;
4 #size-cells = <1>;
8 #address-cells = <1>;
9 #size-cells = <0>;
11 mips-hpt-frequency = <163125000>;
30 cpu_intc: interrupt-controller {
31 #address-cells = <0>;
32 compatible = "mti,cpu-interrupt-controller";
34 interrupt-controller;
[all …]
H A Dbcm7125.dtsi1 // SPDX-License-Identifier: GPL-2.0
3 #address-cells = <1>;
4 #size-cells = <1>;
8 #address-cells = <1>;
9 #size-cells = <0>;
11 mips-hpt-frequency = <202500000>;
30 cpu_intc: interrupt-controller {
31 #address-cells = <0>;
32 compatible = "mti,cpu-interrupt-controller";
34 interrupt-controller;
[all …]
H A Dbcm7420.dtsi1 // SPDX-License-Identifier: GPL-2.0
3 #address-cells = <1>;
4 #size-cells = <1>;
8 #address-cells = <1>;
9 #size-cells = <0>;
11 mips-hpt-frequency = <93750000>;
30 cpu_intc: interrupt-controller {
31 #address-cells = <0>;
32 compatible = "mti,cpu-interrupt-controller";
34 interrupt-controller;
[all …]
/freebsd/sys/contrib/device-tree/src/arm/broadcom/
H A Dbcm7445.dtsi1 // SPDX-License-Identifier: GPL-2.0
2 #include <dt-bindings/interrupt-controller/arm-gic.h>
5 #address-cells = <2>;
6 #size-cells = <2>;
9 interrupt-parent = <&gic>;
16 #address-cells = <1>;
17 #size-cells = <0>;
20 compatible = "brcm,brahma-b15";
22 enable-method = "brcm,brahma-b15";
27 compatible = "brcm,brahma-b15";
[all …]
/freebsd/sys/netinet/
H A Dip_fw.h1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2002-2009 Luigi Rizzo, Universita` di Pisa
51 * Most commands (queue, pipe, tag, untag, limit...) can have a 16-bit
56 * the use of a 16-bit fields for that value. In reality, we can have
75 uint16_t reserved[2]; /* Align to 64-bit boundary */
153 * such structures contain pointers or other 64-bit entities,
155 * 64-bit architectures, so the must be handled with care.
168 O_IP_SRC_MASK, /* ip = IP/mask */
173 O_IP_DST_MASK, /* ip = IP/mask */
[all …]
H A Dsctp_output.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved.
5 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
6 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
1863 int
1866 int do_update) in sctp_is_address_in_scope()
1868 if ((scope->loopback_scope == 0) && in sctp_is_address_in_scope()
1869 (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) { in sctp_is_address_in_scope()
1875 switch (ifa->address.sa.sa_family) { in sctp_is_address_in_scope()
[all …]
/freebsd/sys/dev/ice/
H A Dice_switch.c1 /* SPDX-License-Identifier: BSD-3-Clause */
68 * ice_init_def_sw_recp - initialize the recipe book keeping tables
75 int
100 * ice_aq_get_sw_cfg - get switch configuration
115 * configuration information has been returned; if non-zero (meaning not all
124 static int
131 int statu in ice_aq_get_sw_cfg()
[all...]
/freebsd/contrib/ofed/opensm/include/opensm/
H A Dosm_switch.h2 * Copyright (c) 2004-2009 Voltaire, Inc. All rights reserved.
3 * Copyright (c) 2002-2009 Mellanox Technologies LTD. All rights reserved.
4 * Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
16 * - Redistributions of source code must retain the above
20 * - Redistributions in binary form must reproduce the above
156 * fwd tables and rest cached data should be flushed
270 return (lid_ho > p_sw->max_lid_ho || !p_sw->hops[lid_ho]) ? in osm_switch_get_hop_count()
271 OSM_NO_PATH : p_sw->hops[lid_ho][port_num]; in osm_switch_get_hop_count()
318 * Returns 0 if successful. -1 if it failed
358 return (lid_ho > p_sw->max_lid_ho || !p_sw->hops[lid_ho]) ? in osm_switch_get_least_hops()
[all …]
/freebsd/sbin/ipfw/
H A Dipfw2.c1 /*-
2 * Copyright (c) 2002-2003 Luigi Rizzo
3 * Copyright (c) 1996 Alex Nash, Paul Traina, Poul-Henning Kamp
61 int bcwidth;
62 int pcwidth;
63 int show_counters;
64 int show_time; /* show timestamp */
65 uint32_t set_mask; /* enabled sets mask */
73 int resvd_set_number = RESVD_SET;
75 static int ipfw_socke
1151 uint32_t *value, *mask; fill_mark() local
1394 format_mac(struct buf_pr * bp,const uint8_t * addr,const uint8_t * mask) format_mac() argument
3428 n2mask(struct in6_addr * mask,int n) n2mask() argument
3579 get_mac_addr_mask(const char * p,uint8_t * addr,uint8_t * mask) get_mac_addr_mask() argument
[all...]

12