Lines Matching defs:noise
3750 int noise;
3753 noise = rand() ^ (rand() << 16);
3754 buf[0] = 'a' + noise % 26;
3755 noise >>= 5;
3756 buf[1] = 'a' + noise % 26;
3757 noise >>= 5;
3758 buf[2] = 'a' + noise % 26;
3759 noise >>= 5;
3762 ctl_putuint(buf, noise);
3786 u_int32 noise;
3793 noise = (u_int32)(rand() ^ (rand() << 16));
3795 which = (noise & 7) % COUNTOF(sent);
3796 noise >>= 3;
4245 u_int32 noise;
4252 noise = 0;
4256 noise = rand() ^ (rand() << 16);
4259 which = (noise & 0xf) % COUNTOF(sent);
4260 noise >>= 4;
4416 u_int32 noise;
4429 noise = 0;
4433 noise = rand() ^ (rand() << 16);
4436 which = (noise & 0x3) % COUNTOF(sent);
4437 noise >>= 2;