Home
last modified time | relevance | path

Searched defs:y (Results 1 – 25 of 31) sorted by relevance

12

/external/lib/libm/include/
A Dmath.h108 #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 Dstats.h155 #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 Ddef.h43 #define LWIP_MAX(x , y) (((x) > (y)) ? (x) : (y)) argument
44 #define LWIP_MIN(x , y) (((x) < (y)) ? (x) : (y)) argument
A Dsockets.h244 #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 Dfloat_math.c64 #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 Dmd5.c73 #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 Dmath_private.h452 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 Ds_copysign.c26 copysign(double x, double y) in copysign()
A Ds_copysignf.c28 copysignf(float x, float y) in copysignf()
A Ds_cos.c57 double y[2],z=0.0; in cos() local
A Ds_tan.c56 double y[2],z=0.0; in tan() local
A Ds_sin.c57 double y[2],z=0.0; in sin() local
A Ds_tanf.c39 double y; in tanf() local
A Ds_sinf.c41 double y; in sinf() local
A Ds_cosf.c41 double y; in cosf() local
A Dk_cos.c69 __kernel_cos(double x, double y) in __kernel_cos()
A Dk_sin.c60 __kernel_sin(double x, double y, int iy) in __kernel_sin()
A De_fmod.c29 __ieee754_fmod(double x, double y) in __ieee754_fmod()
A De_rem_pio2f.c47 __ieee754_rem_pio2f(float x, double *y) in __ieee754_rem_pio2f()
A De_atan2.c61 __ieee754_atan2(double y, double x) in __ieee754_atan2()
A Dk_tan.c79 __kernel_tan(double x, double y, int iy) in __kernel_tan()
A De_exp.c107 double y,hi=0.0,lo=0.0,c,t,twopk; in __ieee754_exp() local
A De_rem_pio2.c55 __ieee754_rem_pio2(double x, double *y) in __ieee754_rem_pio2()
/external/platform/pico/rp2_common/pico_double/
A Ddouble_math.c67 #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 Dpico.h22 #define __PICO_CONCAT1(x, y) x ## y argument

Completed in 48 milliseconds

12