Home
last modified time | relevance | path

Searched refs:tcr (Results 1 – 13 of 13) sorted by relevance

/freebsd/sys/powerpc/powerpc/
H A Dclock.c262 uint32_t tcr; in decr_et_start() local
278 tcr = mfspr(SPR_TCR); in decr_et_start()
279 tcr |= TCR_DIE; in decr_et_start()
282 tcr |= TCR_ARE; in decr_et_start()
284 tcr &= ~TCR_ARE; in decr_et_start()
286 mtspr(SPR_TCR, tcr); in decr_et_start()
302 uint32_t tcr; in decr_et_stop() local
308 tcr = mfspr(SPR_TCR); in decr_et_stop()
309 tcr &= ~(TCR_DIE | TCR_ARE); in decr_et_stop()
310 mtspr(SPR_TCR, tcr); in decr_et_stop()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCast.cpp1202 TryCastResult tcr = in CheckReinterpretCast() local
1205 if (tcr != TC_Success && msg != 0) { in CheckReinterpretCast()
1221 if (isValidCast(tcr)) { in CheckReinterpretCast()
1274 TryCastResult tcr = in CheckStaticCast() local
1277 if (tcr != TC_Success && msg != 0) { in CheckStaticCast()
1292 if (isValidCast(tcr)) { in CheckStaticCast()
1340 TryCastResult tcr; in TryStaticCast() local
1345 tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle, in TryStaticCast()
1347 if (tcr != TC_NotApplicable) in TryStaticCast()
1348 return tcr; in TryStaticCast()
[all …]
/freebsd/sys/dev/smc/
H A Dif_smc.c849 u_int status, packet, counter, tcr; in smc_task_intr() local
879 tcr = smc_read_2(sc, EPHSR); in smc_task_intr()
881 if ((tcr & EPHSR_TX_SUC) == 0) in smc_task_intr()
890 tcr = smc_read_2(sc, TCR); in smc_task_intr()
891 tcr |= TCR_TXENA | TCR_PAD_EN; in smc_task_intr()
892 smc_write_2(sc, TCR, tcr); in smc_task_intr()
1042 uint16_t tcr; in smc_miibus_statchg() local
1050 tcr = smc_read_2(sc, TCR); in smc_miibus_statchg()
1053 tcr |= TCR_SWFDUP; in smc_miibus_statchg()
1055 tcr &= ~TCR_SWFDUP; in smc_miibus_statchg()
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_wait_release.h46 static inline flag_t tcr(flag_t f) { return TCR_4(f); }
61 static inline flag_t tcr(flag_t f) { return TCR_8(f); }
76 static inline flag_t tcr(flag_t f) { return TCR_8(f); }
91 static inline flag_t tcr(flag_t f) { return TCR_8(f); }
168 return (traits_type::tcr(*(this->get())) & ~KMP_BARRIER_SLEEP_STATE) ==
171 return traits_type::tcr(*(this->get())) == checker;
182 return traits_type::tcr(*(this->get())) != checker;
/freebsd/sys/dev/rtwn/pci/
H A Drtwn_pci_var.h119 uint32_t tcr; member
H A Drtwn_pci_attach.c530 rtwn_pci_write_4(sc, R92C_TCR, pc->tcr); in rtwn_pci_set_desc_addr()
/freebsd/sys/dev/rtwn/rtl8188e/pci/
H A Dr88ee_attach.c130 pc->tcr = 0x8200; in r88ee_attach()
/freebsd/sys/dev/ffec/
H A Dif_ffec.c370 uint32_t ecr, rcr, tcr; in ffec_miibus_statchg()
391 tcr = RD4(sc, FEC_TCR_REG) & ~FEC_TCR_FDEN; in ffec_miibus_statchg()
430 tcr |= FEC_TCR_FDEN; in ffec_miibus_statchg()
438 WR4(sc, FEC_TCR_REG, tcr); in ffec_miibus_statchg()
369 uint32_t ecr, rcr, tcr; ffec_miibus_statchg() local
/freebsd/sys/dev/rtwn/rtl8192c/pci/
H A Dr92ce_attach.c158 pc->tcr = in r92ce_attach()
/freebsd/sys/arm64/arm64/
H A Dlocore.S927 ldr x2, tcr
980 tcr: label
H A Didentcpu.c2829 uint64_t tcr; in tcr_set_e0pd1() local
2831 tcr = READ_SPECIALREG(tcr_el1); in tcr_set_e0pd1()
2832 tcr |= TCR_E0PD1; in tcr_set_e0pd1()
2833 WRITE_SPECIALREG(tcr_el1, tcr); in tcr_set_e0pd1()
H A Dpmap.c1311 uint64_t tcr; in pmap_bootstrap() local
1313 tcr = READ_SPECIALREG(tcr_el1); in pmap_bootstrap()
1316 KASSERT((tcr & TCR_A1) == 0, ("pmap_bootstrap: TCR_EL1.A1 != 0")); in pmap_bootstrap()
1318 if ((tcr & TCR_DS) != 0) in pmap_bootstrap()
1671 uint64_t tcr; in pmap_dbm_enable() local
1677 tcr = READ_SPECIALREG(tcr_el1) | TCR_HD; in pmap_dbm_enable()
1678 WRITE_SPECIALREG(tcr_el1, tcr); in pmap_dbm_enable()
/freebsd/contrib/atf/
H A DNEWS447 * Simplifications to the atf-c library: removed the io, tcr and ui
451 * Removed the application/X-atf-tcr format introduced in 0.8 release.