Lines Matching refs:workRate
1699 uint64_t workRate; in CLOCK_GetSystemPLLOutFromSetup() local
1735 workRate = (uint64_t)inPllRate * (uint64_t)mMult; in CLOCK_GetSystemPLLOutFromSetup()
1737 workRate = workRate / ((uint64_t)postdiv); in CLOCK_GetSystemPLLOutFromSetup()
1738 workRate = workRate * 2U; /* SYS PLL hardware cco is divide by 2 before to M-DIVIDER*/ in CLOCK_GetSystemPLLOutFromSetup()
1743 workRate = (uint64_t)inPllRate; in CLOCK_GetSystemPLLOutFromSetup()
1746 return (uint32_t)workRate; in CLOCK_GetSystemPLLOutFromSetup()
1757 uint64_t workRate; in CLOCK_GetUsbPLLOutFromSetup() local
1766 workRate = ((uint64_t)inPllRate) * ((uint64_t)msel + 1U) / ((uint64_t)nsel + 1U); in CLOCK_GetUsbPLLOutFromSetup()
1771 …workRate = ((uint64_t)inPllRate / ((uint64_t)nsel + 1U)) * (msel + 1U) / (2U * SWITCH_USB_PSEL(pse… in CLOCK_GetUsbPLLOutFromSetup()
1774 return (uint32_t)workRate; in CLOCK_GetUsbPLLOutFromSetup()
1785 uint64_t workRate; in CLOCK_GetAudioPLLOutFromSetup() local
1820 workRate = (uint64_t)inPllRate * (uint64_t)mMult; in CLOCK_GetAudioPLLOutFromSetup()
1822 workRate = workRate / ((uint64_t)postdiv); in CLOCK_GetAudioPLLOutFromSetup()
1823 workRate = workRate * 2U; /* SYS PLL hardware cco is divide by 2 before to M-DIVIDER*/ in CLOCK_GetAudioPLLOutFromSetup()
1828 workRate = (uint64_t)inPllRate; in CLOCK_GetAudioPLLOutFromSetup()
1831 return (uint32_t)workRate; in CLOCK_GetAudioPLLOutFromSetup()
1842 double workRate, mMultFactional; in CLOCK_GetAudioPLLOutFromFractSetup() local
1877 workRate = (double)inPllRate * (double)mMultFactional; in CLOCK_GetAudioPLLOutFromFractSetup()
1879 workRate = workRate / ((double)postdiv); in CLOCK_GetAudioPLLOutFromFractSetup()
1880 workRate = workRate * 2.0; /* SYS PLL hardware cco is divide by 2 before to M-DIVIDER*/ in CLOCK_GetAudioPLLOutFromFractSetup()
1885 workRate = (double)(uint64_t)inPllRate; in CLOCK_GetAudioPLLOutFromFractSetup()
1888 return (uint32_t)workRate; in CLOCK_GetAudioPLLOutFromFractSetup()