Lines Matching refs:workRate

1702     uint64_t workRate;  in CLOCK_GetSystemPLLOutFromSetup()  local
1738 workRate = (uint64_t)inPllRate * (uint64_t)mMult; in CLOCK_GetSystemPLLOutFromSetup()
1740 workRate = workRate / ((uint64_t)postdiv); in CLOCK_GetSystemPLLOutFromSetup()
1741 workRate = workRate * 2U; /* SYS PLL hardware cco is divide by 2 before to M-DIVIDER*/ in CLOCK_GetSystemPLLOutFromSetup()
1746 workRate = (uint64_t)inPllRate; in CLOCK_GetSystemPLLOutFromSetup()
1749 return (uint32_t)workRate; in CLOCK_GetSystemPLLOutFromSetup()
1760 uint64_t workRate; in CLOCK_GetUsbPLLOutFromSetup() local
1775 workRate = ((uint64_t)inPllRate) * ((uint64_t)msel + 1U) / ((uint64_t)nsel + 1U); in CLOCK_GetUsbPLLOutFromSetup()
1780workRate = ((uint64_t)inPllRate / ((uint64_t)nsel + 1U)) * (msel + 1U) / (2U * SWITCH_USB_PSEL(pse… in CLOCK_GetUsbPLLOutFromSetup()
1783 return (uint32_t)workRate; in CLOCK_GetUsbPLLOutFromSetup()
1794 uint64_t workRate; in CLOCK_GetAudioPLLOutFromSetup() local
1829 workRate = (uint64_t)inPllRate * (uint64_t)mMult; in CLOCK_GetAudioPLLOutFromSetup()
1831 workRate = workRate / ((uint64_t)postdiv); in CLOCK_GetAudioPLLOutFromSetup()
1832 workRate = workRate * 2U; /* SYS PLL hardware cco is divide by 2 before to M-DIVIDER*/ in CLOCK_GetAudioPLLOutFromSetup()
1837 workRate = (uint64_t)inPllRate; in CLOCK_GetAudioPLLOutFromSetup()
1840 return (uint32_t)workRate; in CLOCK_GetAudioPLLOutFromSetup()
1851 double workRate, mMultFactional; in CLOCK_GetAudioPLLOutFromFractSetup() local
1886 workRate = (double)inPllRate * (double)mMultFactional; in CLOCK_GetAudioPLLOutFromFractSetup()
1888 workRate = workRate / ((double)postdiv); in CLOCK_GetAudioPLLOutFromFractSetup()
1889 workRate = workRate * 2.0; /* SYS PLL hardware cco is divide by 2 before to M-DIVIDER*/ in CLOCK_GetAudioPLLOutFromFractSetup()
1894 workRate = (double)(uint64_t)inPllRate; in CLOCK_GetAudioPLLOutFromFractSetup()
1897 return (uint32_t)workRate; in CLOCK_GetAudioPLLOutFromFractSetup()