Beispiel #1
0
uint_32 _psp_ticks_to_picoseconds_truncate
   (
      /* [IN] Ticks to be converted */
      PSP_TICK_STRUCT_PTR tick_ptr,

      /* [OUT] pointer to where the overflow boolean is to be written */
      boolean _PTR_       overflow_ptr
   )
{ /* Body */
    return __psp_ticks_to_picoseconds(tick_ptr, overflow_ptr, FALSE);
}
Beispiel #2
0
/*!
 * \brief This function converts ticks into picoseconds, with rounding
 * 
 * \param[in] tick_ptr Ticks to be converted
 * \param[out] overflow_ptr pointer to where the overflow bool is to be written
 *
 * \return uint32_t - number of picoseconds
 */
uint32_t _psp_ticks_to_picoseconds
   (
      /* [IN] Ticks to be converted */
      PSP_TICK_STRUCT_PTR tick_ptr,

      /* [OUT] pointer to where the overflow bool is to be written */
      bool        *overflow_ptr
   )
{ /* Body */
    return __psp_ticks_to_picoseconds(tick_ptr, overflow_ptr, TRUE);
}