None
frac32.bipolar random
frac32.u.map width
frac32.s.map.lfopitch smooth
int32_t rnd1;
int32_t rnd2;
uint32_t smooth;
rnd1 = rnd1 + ___SMMUL(((int32_t)(GenerateRandomNumber())), param_width);
rnd2 = rnd1 > 0 ? rnd1 : -rnd1;
int32_t f;
MTOF(param_smooth, f);
smooth = ___SMMLA((rnd2 - smooth) << 1, f, smooth);
outlet_random = smooth >> 4;