Home
last modified time | relevance | path

Searched refs:AFTER (Results 1 – 23 of 23) sorted by relevance

/freebsd/sys/dev/ath/ath_hal/ah_regdomain/
H A Dah_rd_freqbands.h24 #define AFTER(x) ((x)+1) macro
46 #define F1_4935_4945 AFTER(F1_4915_4925)
48 #define F1_4920_4980 AFTER(F1_4935_4945)
50 #define F1_4942_4987 AFTER(F1_4920_4980)
52 #define F1_4945_4985 AFTER(F1_4942_4987)
54 #define F1_4950_4980 AFTER(F1_4945_4985)
56 #define F1_5035_5040 AFTER(F1_4950_4980)
58 #define F1_5040_5080 AFTER(F1_5035_5040)
60 #define F1_5055_5055 AFTER(F1_5040_5080)
63 #define F1_5120_5240 AFTER(F1_5055_5055)
[all …]
/freebsd/usr.sbin/wlanstats/
H A Dwlanstats.c62 #define AFTER(prev) ((prev)+1) macro
67 #define S_RX_TOOSHORT AFTER(S_RX_BADVERSION)
69 #define S_RX_WRONGBSS AFTER(S_RX_TOOSHORT)
71 #define S_RX_DUP AFTER(S_RX_WRONGBSS)
73 #define S_RX_WRONGDIR AFTER(S_RX_DUP)
75 #define S_RX_MCASTECHO AFTER(S_RX_WRONGDIR)
77 #define S_RX_NOTASSOC AFTER(S_RX_MCASTECHO)
79 #define S_RX_NOPRIVACY AFTER(S_RX_NOTASSOC)
81 #define S_RX_UNENCRYPTED AFTER(S_RX_NOPRIVACY)
83 #define S_RX_WEPFAIL AFTER(S_RX_UNENCRYPTED)
[all …]
/freebsd/tools/tools/ath/athstats/
H A Dathstats.c71 #define AFTER(prev) ((prev)+1) macro
76 #define S_OUTPUT AFTER(S_INPUT)
78 #define S_TX_ALTRATE AFTER(S_OUTPUT)
80 #define S_TX_SHORTRETRY AFTER(S_TX_ALTRATE)
82 #define S_TX_LONGRETRY AFTER(S_TX_SHORTRETRY)
84 #define S_TX_XRETRIES AFTER(S_TX_LONGRETRY)
86 #define S_MIB AFTER(S_TX_XRETRIES)
89 #define S_TX_LINEAR AFTER(S_MIB)
91 #define S_BSTUCK AFTER(S_TX_LINEAR)
93 #define S_INTRCOAL AFTER(S_BSTUCK)
[all …]
/freebsd/tools/tools/mwl/mwlstats/
H A Dmwlstats.c89 #define AFTER(prev) ((prev)+1) macro
94 #define S_RX_MCAST AFTER(S_INPUT)
96 #define S_RX_NONCTL AFTER(S_RX_MCAST)
98 #define S_RX_MGT AFTER(S_RX_NONCTL)
100 #define S_RX_CTL AFTER(S_RX_MGT)
102 #define S_OUTPUT AFTER(S_RX_CTL)
104 #define S_TX_MCAST AFTER(S_OUTPUT)
106 #define S_TX_MGMT AFTER(S_TX_MCAST)
108 #define S_TX_RETRY AFTER(S_TX_MGMT)
110 #define S_TX_MRETRY AFTER(S_TX_RETR
[all...]
/freebsd/tools/tools/ath/athaggrstats/
H A Dathaggrstats.c62 #define AFTER(prev) ((prev)+1) macro
68 #define S_NONBAW_PKT AFTER(S_SINGLE_PKT)
70 #define S_AGGR_PKT AFTER(S_NONBAW_PKT)
72 #define S_BAW_CLOSED_SINGLE_PKT AFTER(S_AGGR_PKT)
74 #define S_LOW_HWQ_SINGLE_PKT AFTER(S_BAW_CLOSED_SINGLE_PKT)
76 #define S_SCHED_NOPKT AFTER(S_LOW_HWQ_SINGLE_PKT)
78 #define S_RTS_AGGR_LIMITED AFTER(S_SCHED_NOPKT)
80 #define S_PKT0 AFTER(S_RTS_AGGR_LIMITED)
82 #define S_PKT1 AFTER(S_PKT0)
84 #define S_PKT2 AFTER(S_PKT1)
[all …]
/freebsd/tools/tools/npe/npestats/
H A Dnpestats.c45 #define AFTER(prev) ((prev)+1) macro
50 #define S_FCS AFTER(S_ALIGN)
52 #define S_MACRX AFTER(S_FCS)
54 #define S_RXORN AFTER(S_MACRX)
56 #define S_LEARN AFTER(S_RXORN)
58 #define S_LARGE AFTER(S_LEARN)
60 #define S_STP AFTER(S_LARGE)
62 #define S_RX_VLAN_TYPE AFTER(S_STP)
64 #define S_RX_VLAN_ID AFTER(S_RX_VLAN_TYPE)
66 #define S_BADSRC AFTER(S_RX_VLAN_ID)
[all …]
/freebsd/tests/sys/kern/
H A Dlistener_wakeup.c71 AFTER, enumerator
77 { SLEEP_ACCEPT, WAKEUP_SHUTDOWN, AFTER, false, ECONNABORTED },
78 { SLEEP_SELECT, WAKEUP_SHUTDOWN, AFTER, false, 0 },
79 { SLEEP_POLL, WAKEUP_SHUTDOWN, AFTER, false, 0 },
80 { SLEEP_KQUEUE, WAKEUP_SHUTDOWN, AFTER, false, 0 },
81 { SLEEP_ACCEPT, WAKEUP_CLOSE, AFTER, false, ETIMEDOUT },
82 { SLEEP_SELECT, WAKEUP_CLOSE, AFTER, false, EBADF },
83 { SLEEP_POLL, WAKEUP_CLOSE, AFTER, false, 0 },
84 { SLEEP_KQUEUE, WAKEUP_CLOSE, AFTER, false, 0 },
89 { SLEEP_SELECT, WAKEUP_SHUTDOWN, AFTER, true, 0 },
[all …]
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dlib_raw.c75 #define AFTER(N) if (USE_TRACEF(TRACE_BITS)) _nc_locked_tracef("%s after bits: %s", N, _nc_tracebit… macro
78 #define AFTER(s)
124 AFTER("raw"); in NCURSES_EXPORT()
169 AFTER("cbreak"); in NCURSES_SP_NAME()
207 AFTER("qiflush"); in NCURSES_SP_NAME()
262 AFTER("noraw"); in NCURSES_SP_NAME()
304 AFTER("nocbreak"); in NCURSES_SP_NAME()
338 AFTER("noqiflush"); in NCURSES_SP_NAME()
385 AFTER("intrflush"); in NCURSES_SP_NAME()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMemoryLegalizer.cpp55 AFTER enumerator
1075 Position::AFTER); in enableVolatileAndOrNonTemporal()
1102 if (Pos == Position::AFTER) in insertWait()
1183 if (Pos == Position::AFTER) in insertWait()
1201 if (Pos == Position::AFTER) in insertAcquire()
1228 if (Pos == Position::AFTER) in insertAcquire()
1261 if (Pos == Position::AFTER) in insertAcquire()
1288 if (Pos == Position::AFTER) in insertAcquire()
1428 Position::AFTER); in enableVolatileAndOrNonTemporal()
1484 if (Pos == Position::AFTER) in insertAcquire()
[all …]
/freebsd/usr.bin/ident/tests/
H A Dtest.in8 $Foo: bar $ (WRONG -- NO SPACE AFTER :)
9 $Foo:bar $ (WRONG -- NO SPACE AFTER :)
/freebsd/contrib/bmake/unit-tests/
H A Dopt-x-reduce-exported.mk7 .MAKEFLAGS: BEFORE=before -X AFTER=after
/freebsd/contrib/ldns/drill/
H A DREGRESSIONS14 record. The DSs are now printed AFTER the packet.
/freebsd/tools/tools/locale/patch/
H A Dpatch-UnicodeData.txt13 4DFE;HEXAGRAM FOR AFTER COMPLETION;So;0;ON;;;;;N;;;;;
/freebsd/contrib/llvm-project/lld/docs/ELF/
H A Dlinker_script.rst50 } [INSERT [AFTER|BEFORE] anchor_section;]
180 [AFTER|BEFORE]`` command, the description will be provided by the
/freebsd/contrib/libpcap/
H A DCMakeLists.txt2355 include_directories(AFTER ${dpdk_INCLUDE_DIRS})
2356 link_directories(AFTER ${dpdk_LIBRARIES})
2570 include_directories(AFTER ${DAG_INCLUDE_DIRS})
2606 include_directories(AFTER ${SEPTEL_INCLUDE_DIRS})
2627 include_directories(AFTER ${SNF_INCLUDE_DIRS})
2651 include_directories(AFTER ${AirPcap_INCLUDE_DIRS})
2672 include_directories(AFTER ${TC_INCLUDE_DIRS})
/freebsd/contrib/file/magic/Magdir/
H A Dlinux216 …x240 (memdisk16.bin) 0x268 (memtest32.bin memtest64.bin ldntldr.bin linux AFTER handover offset) 0…
/freebsd/contrib/sendmail/src/
H A DREADME1562 I had a LOCAL_RULE_0 that wound up AFTER the
/freebsd/contrib/ntp/sntp/libevent/
H A DChangeLog757 o Debug mode option to error on evthread init AFTER other event calls. (dcfb19a Mark Ellzey)
/freebsd/contrib/libevent/
H A DChangeLog757 o Debug mode option to error on evthread init AFTER other event calls. (dcfb19a Mark Ellzey)
/freebsd/contrib/ntp/
H A DChangeLog4734 * [Bug 840] do fudge configuration AFTER peers (thus refclocks) have been
H A DCommitLog[all...]
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td4493 HelpText<"Add directory to AFTER include search path">;
/freebsd/crypto/heimdal/lib/wind/
H A DUnicodeData.txt9391 4DFE;HEXAGRAM FOR AFTER COMPLETION;So;0;ON;;;;;N;;;;;