/bionic/libm/upstream-freebsd/lib/msun/src/ |
catrig.c | 504 * sum_squares(x,y) = x*x + y*y (or just x*x if y*y would underflow). 511 sum_squares(double x, double y) function 624 rx = log1p(4 * ax / sum_squares(ax - 1, ay)) / 4;
|
catrigf.c | 306 sum_squares(float x, float y) function 377 rx = log1pf(4 * ax / sum_squares(ax - 1, ay)) / 4;
|
catrigl.c | 326 sum_squares(long double x, long double y) function 398 rx = log1pl(4 * ax / sum_squares(ax - 1, ay)) / 4;
|
/external/ImageMagick/MagickCore/ |
feature.c | 654 sum_squares, 836 (void) memset(&sum_squares,0,sizeof(sum_squares)); 651 sum_squares, local [all...] |
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
nonlinear_beamformer.cc | 139 float sum_squares = 0.f; local 144 sum_squares += abs_value * abs_value; 147 return sum_squares;
|
/external/python/cpython2/Modules/ |
audioop.c | 447 double sum_squares = 0.0; local 457 sum_squares += (double)val*(double)val; 462 res = (unsigned int)sqrt(sum_squares / (double)(len/size)); [all...] |
/external/python/cpython3/Modules/ |
audioop.c | 537 double sum_squares = 0.0; local 543 sum_squares += val*val; 548 res = (unsigned int)sqrt(sum_squares / (double)(fragment->len/width)); [all...] |