Home
last modified time | relevance | path

Searched refs:previous_val (Results 1 - 3 of 3) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Daacenc_utils.h258 * @param previous_val pointer to the current state of the generator
262 static av_always_inline int lcg_random(unsigned previous_val) in lcg_random() argument
264 union { unsigned u; int s; } v = { previous_val * 1664525u + 1013904223 }; in lcg_random()
H A Daacdec_template.c1181 * @param previous_val pointer to the current state of the generator
1185 static av_always_inline int lcg_random(unsigned previous_val) in lcg_random() argument
1187 union { unsigned u; int s; } v = { previous_val * 1664525u + 1013904223 }; in lcg_random()
/third_party/ffmpeg/libavcodec/mips/
H A Daacdec_mips.c109 static av_always_inline int lcg_random(unsigned previous_val) in lcg_random() argument
111 union { unsigned u; int s; } v = { previous_val * 1664525u + 1013904223 }; in lcg_random()

Completed in 7 milliseconds