mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			381 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			381 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * wrapper exp2f(x)
 | 
						|
 */
 | 
						|
 | 
						|
#include <math.h>
 | 
						|
#include <math_private.h>
 | 
						|
 | 
						|
float
 | 
						|
__exp2f (float x)
 | 
						|
{
 | 
						|
  float z = __ieee754_exp2f (x);
 | 
						|
  if (__builtin_expect (!__finitef (z), 0)
 | 
						|
      && __finitef (x) && _LIB_VERSION != _IEEE_)
 | 
						|
    /* exp2 overflow: 144, exp2 underflow: 145 */
 | 
						|
    return __kernel_standard_f (x, x, 144 + !!__signbitf (x));
 | 
						|
 | 
						|
  return z;
 | 
						|
}
 | 
						|
weak_alias (__exp2f, exp2f)
 |