Searched refs:out_value (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/libvideoeditor/osal/src/
H A DM4OSA_Random.c62 * @fn M4OSA_ERR M4OSA_rand(M4OSA_Int32* out_value, M4OSA_UInt32 max_value)
65 * returns this number in out_value. For instance, a max_value
68 * @param out_value (OUT): on return, points to random result
74 M4OSA_ERR M4OSA_rand(M4OSA_Int32* out_value, M4OSA_UInt32 max_value) argument
76 if( (out_value == M4OSA_NULL) || (max_value < 1) )
81 (*out_value) = rand();
85 (*out_value) = (((*out_value) * max_value) / ((M4OSA_UInt32)RAND_MAX + 1)) + 1;
/frameworks/av/libvideoeditor/osal/inc/
H A DM4OSA_Memory.h48 M4OSAL_MEMORY_EXPORT_TYPE extern M4OSA_ERR M4OSA_rand(M4OSA_Int32* out_value,

Completed in 135 milliseconds