| /external/lib/libm/include/ |
| A D | math.h | 108 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument 109 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument 110 #define isless(x, y) __builtin_isless((x), (y)) argument 111 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument 112 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument 113 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument 115 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument 117 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument 118 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument 119 #define islessgreater(x, y) (!isunordered((x), (y)) && \ argument [all …]
|
| /external/lib/lwip/include/lwip/ |
| A D | stats.h | 155 #define STATS_INC_USED(x, y) do { lwip_stats.x.used += y; \ argument 232 #define MEM_STATS_AVAIL(x, y) lwip_stats.mem.x = y argument 234 #define MEM_STATS_INC_USED(x, y) STATS_INC_USED(mem, y) argument 235 #define MEM_STATS_DEC_USED(x, y) lwip_stats.mem.x -= y argument 238 #define MEM_STATS_AVAIL(x, y) argument 240 #define MEM_STATS_INC_USED(x, y) argument 241 #define MEM_STATS_DEC_USED(x, y) argument 246 #define MEMP_STATS_AVAIL(x, i, y) lwip_stats.memp[i].x = y argument 252 #define MEMP_STATS_AVAIL(x, i, y) argument
|
| A D | def.h | 43 #define LWIP_MAX(x , y) (((x) > (y)) ? (x) : (y)) argument 44 #define LWIP_MIN(x , y) (((x) < (y)) ? (x) : (y)) argument
|
| A D | sockets.h | 244 #define _IO(x,y) (IOC_VOID|((x)<<8)|(y)) argument 246 #define _IOR(x,y,t) (IOC_OUT|(((long)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y)) argument 248 #define _IOW(x,y,t) (IOC_IN|(((long)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y)) argument
|
| /external/platform/pico/rp2_common/pico_float/ |
| A D | float_math.c | 64 #define check_nan_f2(x,y) if (fisnan((x))) return (x); else if (fisnan((y))) return (y); argument 67 #define check_nan_f2(x,y) ((void)0) argument 97 static inline float fcopysign(float x,float y) { in fcopysign() 341 static inline float fpow_1(float x,float y) { in fpow_1() 345 static float fpow_int2(float x,int y) { in fpow_int2() 355 static inline float fpowint_1(float x,int y) { in fpowint_1() 361 static float fpowint_0(float x,int y) { in fpowint_0() 409 static float fpow_0(float x,float y) { in fpow_0()
|
| /external/lib/lwip/netif/ppp/ |
| A D | md5.c | 73 #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) argument 74 #define G(x, y, z) (((x) & (z)) | ((y) & (~z))) argument 75 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument 76 #define I(x, y, z) ((y) ^ ((x) | (~z))) argument
|
| /external/lib/libm/ |
| A D | math_private.h | 452 cpackf(float x, float y) in cpackf() 462 cpack(double x, double y) in cpack() 472 cpackl(long double x, long double y) in cpackl() 630 #define RETURN2P(x, y) do { \ argument 634 #define RETURN2PI(x, y) do { \ argument 650 #define SUM2P(x, y) ({ \ argument
|
| A D | s_copysign.c | 26 copysign(double x, double y) in copysign()
|
| A D | s_copysignf.c | 28 copysignf(float x, float y) in copysignf()
|
| A D | s_cos.c | 57 double y[2],z=0.0; in cos() local
|
| A D | s_tan.c | 56 double y[2],z=0.0; in tan() local
|
| A D | s_sin.c | 57 double y[2],z=0.0; in sin() local
|
| A D | s_tanf.c | 39 double y; in tanf() local
|
| A D | s_sinf.c | 41 double y; in sinf() local
|
| A D | s_cosf.c | 41 double y; in cosf() local
|
| A D | k_cos.c | 69 __kernel_cos(double x, double y) in __kernel_cos()
|
| A D | k_sin.c | 60 __kernel_sin(double x, double y, int iy) in __kernel_sin()
|
| A D | e_fmod.c | 29 __ieee754_fmod(double x, double y) in __ieee754_fmod()
|
| A D | e_rem_pio2f.c | 47 __ieee754_rem_pio2f(float x, double *y) in __ieee754_rem_pio2f()
|
| A D | e_atan2.c | 61 __ieee754_atan2(double y, double x) in __ieee754_atan2()
|
| A D | k_tan.c | 79 __kernel_tan(double x, double y, int iy) in __kernel_tan()
|
| A D | e_exp.c | 107 double y,hi=0.0,lo=0.0,c,t,twopk; in __ieee754_exp() local
|
| A D | e_rem_pio2.c | 55 __ieee754_rem_pio2(double x, double *y) in __ieee754_rem_pio2()
|
| /external/platform/pico/rp2_common/pico_double/ |
| A D | double_math.c | 67 #define check_nan_d2(x,y) if (disnan((x))) return (x); else if (disnan((y))) return (y); argument 70 #define check_nan_d2(x,y) ((void)0) argument 101 static inline double dcopysign(double x,double y) { in dcopysign()
|
| /external/platform/pico/common/pico_base/include/ |
| A D | pico.h | 22 #define __PICO_CONCAT1(x, y) x ## y argument
|