Lines Matching refs:tmp
604 uint32_t tmp; in MU_ClearStatusFlags() local
607 tmp = MU_GET_GI_FLAG(flags); in MU_ClearStatusFlags()
608 if (0U != tmp) in MU_ClearStatusFlags()
610 base->GSR = tmp; in MU_ClearStatusFlags()
615 tmp = MU_GET_CORE_FLAG(flags); in MU_ClearStatusFlags()
616 if (0U != tmp) in MU_ClearStatusFlags()
618 base->CSSR0 = tmp; in MU_ClearStatusFlags()
649 uint32_t tmp; in MU_EnableInterrupts() local
652 tmp = MU_GET_TX_INTR(interrupts); in MU_EnableInterrupts()
653 if (0U != tmp) in MU_EnableInterrupts()
655 base->TCR |= tmp; in MU_EnableInterrupts()
659 tmp = MU_GET_RX_INTR(interrupts); in MU_EnableInterrupts()
660 if (0U != tmp) in MU_EnableInterrupts()
662 base->RCR |= tmp; in MU_EnableInterrupts()
666 tmp = MU_GET_GI_INTR(interrupts); in MU_EnableInterrupts()
667 if (0U != tmp) in MU_EnableInterrupts()
669 base->GIER |= tmp; in MU_EnableInterrupts()
673 tmp = MU_GET_CORE_INTR(interrupts); in MU_EnableInterrupts()
674 if (0U != tmp) in MU_EnableInterrupts()
676 base->CIER0 |= tmp; in MU_EnableInterrupts()
705 uint32_t tmp; in MU_DisableInterrupts() local
708 tmp = MU_GET_TX_INTR(interrupts); in MU_DisableInterrupts()
709 if (0U != tmp) in MU_DisableInterrupts()
711 base->TCR &= ~tmp; in MU_DisableInterrupts()
715 tmp = MU_GET_RX_INTR(interrupts); in MU_DisableInterrupts()
716 if (0U != tmp) in MU_DisableInterrupts()
718 base->RCR &= ~tmp; in MU_DisableInterrupts()
722 tmp = MU_GET_GI_INTR(interrupts); in MU_DisableInterrupts()
723 if (0U != tmp) in MU_DisableInterrupts()
725 base->GIER &= ~tmp; in MU_DisableInterrupts()
729 tmp = MU_GET_CORE_INTR(interrupts); in MU_DisableInterrupts()
730 if (0U != tmp) in MU_DisableInterrupts()
732 base->CIER0 &= ~tmp; in MU_DisableInterrupts()