Lines Matching refs:workRate

1697     uint64_t workRate;  in CLOCK_GetSystemPLLOutFromSetup()  local
1733 workRate = (uint64_t)inPllRate * (uint64_t)mMult; in CLOCK_GetSystemPLLOutFromSetup()
1735 workRate = workRate / ((uint64_t)postdiv); in CLOCK_GetSystemPLLOutFromSetup()
1736 workRate = workRate * 2U; /* SYS PLL hardware cco is divided by 2 before the M-DIVIDER*/ in CLOCK_GetSystemPLLOutFromSetup()
1741 workRate = (uint64_t)inPllRate; in CLOCK_GetSystemPLLOutFromSetup()
1744 return (uint32_t)workRate; in CLOCK_GetSystemPLLOutFromSetup()
1755 uint64_t workRate; in CLOCK_GetUsbPLLOutFromSetup() local
1764 workRate = (uint64_t)(inPllRate) * (msel + 1ULL) / (nsel + 1ULL); in CLOCK_GetUsbPLLOutFromSetup()
1769workRate = ((uint64_t)inPllRate / (nsel + 1ULL)) * (msel + 1ULL) / (2U * (1UL << (psel & 3U))); in CLOCK_GetUsbPLLOutFromSetup()
1772 return (uint32_t)workRate; in CLOCK_GetUsbPLLOutFromSetup()
1783 uint64_t workRate; in CLOCK_GetAudioPLLOutFromSetup() local
1818 workRate = (uint64_t)inPllRate * (uint64_t)mMult; in CLOCK_GetAudioPLLOutFromSetup()
1820 workRate = workRate / ((uint64_t)postdiv); in CLOCK_GetAudioPLLOutFromSetup()
1821 workRate = workRate * 2U; /* SYS PLL hardware cco is divided by 2 before the M-DIVIDER*/ in CLOCK_GetAudioPLLOutFromSetup()
1826 workRate = (uint64_t)inPllRate; in CLOCK_GetAudioPLLOutFromSetup()
1829 return (uint32_t)workRate; in CLOCK_GetAudioPLLOutFromSetup()
1840 double workRate, mMultFactional; in CLOCK_GetAudioPLLOutFromFractSetup() local
1875 workRate = (double)inPllRate * (double)mMultFactional; in CLOCK_GetAudioPLLOutFromFractSetup()
1877 workRate = workRate / ((double)postdiv); in CLOCK_GetAudioPLLOutFromFractSetup()
1878 workRate = workRate * 2.0; /* SYS PLL hardware cco is divided by 2 before the M-DIVIDER*/ in CLOCK_GetAudioPLLOutFromFractSetup()
1883 workRate = (double)inPllRate; in CLOCK_GetAudioPLLOutFromFractSetup()
1886 return (uint32_t)workRate; in CLOCK_GetAudioPLLOutFromFractSetup()