Lines Matching refs:workRate
1688 uint64_t workRate; in CLOCK_GetSystemPLLOutFromSetup() local
1724 workRate = (uint64_t)inPllRate * (uint64_t)mMult; in CLOCK_GetSystemPLLOutFromSetup()
1726 workRate = workRate / ((uint64_t)postdiv); in CLOCK_GetSystemPLLOutFromSetup()
1727 workRate = workRate * 2U; /* SYS PLL hardware cco is divided by 2 before the M-DIVIDER*/ in CLOCK_GetSystemPLLOutFromSetup()
1732 workRate = (uint64_t)inPllRate; in CLOCK_GetSystemPLLOutFromSetup()
1735 return (uint32_t)workRate; in CLOCK_GetSystemPLLOutFromSetup()
1746 uint64_t workRate; in CLOCK_GetUsbPLLOutFromSetup() local
1755 workRate = (uint64_t)(inPllRate) * (msel + 1ULL) / (nsel + 1ULL); in CLOCK_GetUsbPLLOutFromSetup()
1760 … workRate = ((uint64_t)inPllRate / (nsel + 1ULL)) * (msel + 1ULL) / (2U * (1UL << (psel & 3U))); in CLOCK_GetUsbPLLOutFromSetup()
1763 return (uint32_t)workRate; in CLOCK_GetUsbPLLOutFromSetup()
1774 uint64_t workRate; in CLOCK_GetAudioPLLOutFromSetup() local
1809 workRate = (uint64_t)inPllRate * (uint64_t)mMult; in CLOCK_GetAudioPLLOutFromSetup()
1811 workRate = workRate / ((uint64_t)postdiv); in CLOCK_GetAudioPLLOutFromSetup()
1812 workRate = workRate * 2U; /* SYS PLL hardware cco is divided by 2 before the M-DIVIDER*/ in CLOCK_GetAudioPLLOutFromSetup()
1817 workRate = (uint64_t)inPllRate; in CLOCK_GetAudioPLLOutFromSetup()
1820 return (uint32_t)workRate; in CLOCK_GetAudioPLLOutFromSetup()
1831 double workRate, mMultFactional; in CLOCK_GetAudioPLLOutFromFractSetup() local
1866 workRate = (double)inPllRate * (double)mMultFactional; in CLOCK_GetAudioPLLOutFromFractSetup()
1868 workRate = workRate / ((double)postdiv); in CLOCK_GetAudioPLLOutFromFractSetup()
1869 workRate = workRate * 2.0; /* SYS PLL hardware cco is divided by 2 before the M-DIVIDER*/ in CLOCK_GetAudioPLLOutFromFractSetup()
1874 workRate = (double)inPllRate; in CLOCK_GetAudioPLLOutFromFractSetup()
1877 return (uint32_t)workRate; in CLOCK_GetAudioPLLOutFromFractSetup()