Home
last modified time | relevance | path

Searched refs:RW (Results 1 – 25 of 105) sorted by relevance

12345

/src/sys/contrib/ck/include/
H A Dck_rwcohort.h44 #define CK_RWCOHORT_WP_INIT(N, RW, WL) ck_rwcohort_wp_##N##_init(RW, WL) argument
45 #define CK_RWCOHORT_WP_READ_LOCK(N, RW, C, GC, LC) \ argument
46 ck_rwcohort_wp_##N##_read_lock(RW, C, GC, LC)
47 #define CK_RWCOHORT_WP_READ_UNLOCK(N, RW, C, GC, LC) \ argument
48 ck_rwcohort_wp_##N##_read_unlock(RW)
49 #define CK_RWCOHORT_WP_WRITE_LOCK(N, RW, C, GC, LC) \ argument
50 ck_rwcohort_wp_##N##_write_lock(RW, C, GC, LC)
51 #define CK_RWCOHORT_WP_WRITE_UNLOCK(N, RW, C, GC, LC) \ argument
52 ck_rwcohort_wp_##N##_write_unlock(RW, C, GC, LC)
148 #define CK_RWCOHORT_RP_INIT(N, RW, WL) ck_rwcohort_rp_##N##_init(RW, WL) argument
[all …]
/src/sys/dev/aic7xxx/
H A Daic79xx.reg88 access_mode RW
102 access_mode RW
119 access_mode RW
245 access_mode RW
261 access_mode RW
270 access_mode RW
278 access_mode RW
314 access_mode RW
323 access_mode RW
333 access_mode RW
[all …]
H A Daic7xxx.reg57 access_mode RW
74 access_mode RW
90 access_mode RW
167 access_mode RW
183 access_mode RW
205 access_mode RW
210 access_mode RW
223 access_mode RW
229 access_mode RW
238 access_mode RW
[all …]
/src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_events/
H A Dzpool_events_duplicates.ksh80 RW=$2
82 log_note "Testing $ERR $RW ereports"
87 if [ "$RW" == "read" ] ; then
110 log_must zinject -d $VDEV1 -e $ERR -T $RW -f 100 $POOL
112 if [ "$RW" == "write" ] ; then
122 log_note "$actual total $ERR $RW ereports where $unique were unique"
125 log_note "UNEXPECTED -- $((actual-unique)) duplicate $ERR $RW ereports"
H A Dzpool_events_errors.ksh86 RW=$3
88 log_note "Testing $ERR $RW on $POOLTYPE"
93 if [ "$RW" == "read" ] ; then
97 log_must zinject -d $VDEV1 -e $ERR -T $RW -f 100 $POOL
99 if [ "$RW" == "write" ] ; then
125 if [ "$RW" == "read" ] ; then
/src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_mount/
H A Dzfs_mount_remount.ksh59 typeset RW="-t zfs -uw"
62 typeset RW="-o remount,rw"
125 log_must mount $RW $TESTFS $MNTPFS
146 log_mustnot mount $RW $TESTSNAP $MNTPSNAP
168 log_mustnot mount $RW $MNTPFS
/src/sys/dev/rtwn/rtl8192c/
H A Dr92c_chan.c224 reg = RW(reg, R92C_TXAGC_A_CCK1, power[RTWN_RIDX_CCK1]); in r92c_write_txpower()
227 reg = RW(reg, R92C_TXAGC_A_CCK2, power[RTWN_RIDX_CCK2]); in r92c_write_txpower()
228 reg = RW(reg, R92C_TXAGC_A_CCK55, power[RTWN_RIDX_CCK55]); in r92c_write_txpower()
229 reg = RW(reg, R92C_TXAGC_A_CCK11, power[RTWN_RIDX_CCK11]); in r92c_write_txpower()
233 reg = RW(reg, R92C_TXAGC_B_CCK1, power[RTWN_RIDX_CCK1]); in r92c_write_txpower()
234 reg = RW(reg, R92C_TXAGC_B_CCK2, power[RTWN_RIDX_CCK2]); in r92c_write_txpower()
235 reg = RW(reg, R92C_TXAGC_B_CCK55, power[RTWN_RIDX_CCK55]); in r92c_write_txpower()
238 reg = RW(reg, R92C_TXAGC_B_CCK11, power[RTWN_RIDX_CCK11]); in r92c_write_txpower()
374 RW(rs->rf_chnlbw[i], R92C_RF_CHNLBW_CHNL, chan)); in r92c_set_chan()
H A Dr92c_rf.c68 RW(reg[chain], R92C_HSSI_PARAM2_READ_ADDR, addr) | in r92c_rf_read()
/src/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBitTracker.cpp94 uint16_t RW = getRegBitWidth(RegisterRef(Reg, Sub)); in mask() local
101 return IsSubLo ? BT::BitMask(0, RW-1) in mask()
102 : BT::BitMask(RW, 2*RW-1); in mask()
275 auto lo = [this] (const BT::RegisterCell &RC, uint16_t RW) in evaluate()
277 assert(RW <= RC.width()); in evaluate()
278 return eXTR(RC, 0, RW); in evaluate()
281 auto hi = [this] (const BT::RegisterCell &RC, uint16_t RW) in evaluate() argument
284 assert(RW <= W); in evaluate()
285 return eXTR(RC, W-RW, W); in evaluate()
345 uint16_t RW = W0; in evaluate() local
[all …]
H A DHexagonBitSimplify.cpp1587 unsigned RW = RC.width(); in findMatch() local
1588 if (W == RW) { in findMatch()
1602 if (W*2 != RW) in findMatch()
2432 unsigned RW = W; in simplifyExtractLow() local
2492 if (Len == RW) in simplifyExtractLow()
2515 if (SW < RW || (SW % RW) != 0) in simplifyExtractLow()
2523 unsigned OE = (Off+Len)/RW; in simplifyExtractLow()
2524 if (OE != Off/RW) { in simplifyExtractLow()
2531 Off = OE*RW; in simplifyExtractLow()
2554 Signed ? (RW == 32 ? Hexagon::S4_extract : Hexagon::S4_extractp) in simplifyExtractLow()
[all …]
/src/usr.bin/bintrans/
H A Duuencode.c127 #define RW (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH) in main_encode() macro
128 mode = RW & ~umask(RW); in main_encode()
/src/sys/contrib/device-tree/src/powerpc/fsl/
H A Dp2020rdb.dts69 label = "NOR (RW) JFFS2 Root File System";
121 label = "NAND (RW) JFFS2 Root File System";
127 label = "NAND (RW) Writable User area";
189 label = "SPI (RW) JFFS2 RFS";
H A Dp1020rdb.dtsi69 label = "NOR (RW) JFFS2 Root File System";
121 label = "NAND (RW) JFFS2 Root File System";
127 label = "NAND (RW) Writable User area";
/src/contrib/ntp/ntpd/
H A Dcmd_args.c160 set_sys_var(v_assign, strlen(v_assign) + 1, RW); in getCmdOpts()
172 (u_short) (RW | DEF)); in getCmdOpts()
/src/contrib/llvm-project/openmp/runtime/src/
H A Dz_AIX_asm.S399 .csect __kmp_unnamed_critical_addr[RW],3
401 .csect __kmp_unnamed_critical_addr[RW],2
403 .globl __kmp_unnamed_critical_addr[RW]
/src/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenSchedule.cpp623 for (Record *RW : RWs) { in collectSchedRW()
624 if (RW->isSubClassOf("SchedWrite")) in collectSchedRW()
625 scanSchedRW(RW, SWDefs, RWSet); in collectSchedRW()
627 assert(RW->isSubClassOf("SchedRead") && "Unknown SchedReadWrite"); in collectSchedRW()
628 scanSchedRW(RW, SRDefs, RWSet); in collectSchedRW()
702 CodeGenSchedRW &RW = getSchedRW(MatchDef); in collectSchedRW() local
703 if (RW.IsAlias) in collectSchedRW()
705 RW.Aliases.push_back(ADef); in collectSchedRW()
745 RWVec, [Def](const CodeGenSchedRW &RW) { return RW.TheDef == Def; }); in getSchedRWIdx() argument
842 auto I = find_if(RWVec, [Seq](CodeGenSchedRW &RW) { in findRWForSequence() argument
[all …]
/src/sys/dev/rtwn/rtl8188e/
H A Dr88e_init.c66 RW(reg, R92C_AFE_XTAL_CTRL_ADDR, val | val << 6)); in r88e_crystalcap_write()
/src/sys/dev/rtwn/rtl8192e/
H A Dr92e_rf.c64 RW(val, R92C_HSSI_PARAM2_READ_ADDR, addr) & in r92e_rf_read()
/src/contrib/llvm-project/llvm/lib/CodeGen/
H A DMLRegAllocEvictAdvisor.cpp273 double RW = 0; member
827 Ret.RW += (Reads && Writes) * Freq; in getLIFeatureComponents()
855 double RW = 0.0; in extractFeatures() local
891 RW += LIFC.RW; in extractFeatures()
933 SET(weighed_read_writes_by_max, float, RW); in extractFeatures()
/src/sys/dev/rtwn/rtl8812a/
H A Dr12a_chan.c574 val = RW(val, R12A_RFMOD_EXT_CHAN, ext20); in r12a_set_chan()
579 val = RW(val, R12A_CCA_ON_SEC_EXT_CHAN, ext20); in r12a_set_chan()
611 val = RW(val, R12A_RFMOD_EXT_CHAN, ext_chan); in r12a_set_chan()
615 val = RW(val, R12A_CCA_ON_SEC_EXT_CHAN, ext_chan); in r12a_set_chan()
/src/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DMCDisassembler.cpp65 SMC_PCASE(RW, 1) in getSMCPriority()
/src/sys/dev/rtwn/
H A Dif_rtwnreg.h113 #define RW(var, field, val) \ macro
H A Dif_rtwn_fw.c64 reg = RW(reg, R92C_MCUFWDL_PAGE, page); in rtwn_fw_loadpage()
/src/sys/dev/aic7xxx/aicasm/
H A Daicasm_symbol.h67 RW = 0x03 enumerator
/src/sys/dts/powerpc/
H A Dp1020rdb.dts120 label = "NOR (RW) JFFS2 Root File System";
172 label = "NAND (RW) JFFS2 Root File System";
178 label = "NAND (RW) Writable User area";
316 label = "SPI (RW) JFFS2 RFS";

12345