Lines Matching refs:x
45 double x,w; in bs_random_Gaus() local
52 x = 2*((double)random() / RAND_MAX)-1; in bs_random_Gaus()
55 w = x * x + y * y; in bs_random_Gaus()
59 toreturn = x * w; in bs_random_Gaus()
75 double x, y, w; in bs_random_Gaus_c() local
79 x = 2*((double)random() / RAND_MAX)-1; in bs_random_Gaus_c()
82 w = x * x + y * y; in bs_random_Gaus_c()
86 toreturn = x * w + ( y * w )*I; in bs_random_Gaus_c()
96 double x, y, w; in bs_random_Gaus_c_buffer() local
106 x = 2*((double)random() / RAND_MAX)-1; in bs_random_Gaus_c_buffer()
109 w = x * x + y * y; in bs_random_Gaus_c_buffer()
113 buffer[i] = x * w + ( y * w )*I; in bs_random_Gaus_c_buffer()