| /utopia/UTPA2-700.0.x/modules/mfe/drv/mfe_ex/cModel/ |
| H A D | mfe_type.h | 192 …#define MAKELONG(a, b) ((unsigned int)(((unsigned short)(a)) | ((unsigned int)((unsigned short)… argument 199 #define MFE_MAX(a,b) (((a) > (b)) ? (a) : (b)) argument 202 #define MFE_MIN(a,b) (((a) < (b)) ? (a) : (b)) argument 206 #define MFE_MUX(a, b, c) ((a) ? (b) : (c)) argument
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/machine/ |
| H A D | spr_defs.h | 676 #define __l_mul__(lo, a,b) \ argument 678 #define __l_muli__(lo, a,b) \ argument 680 #define __l_mulu__(lo, a,b) \ argument 684 #define L_MULL(a,b) \ argument 689 #define L_MULL_LO(a,b) \ argument 692 #define L_MULLI(a,b) \ argument 697 #define L_MULLI_LO(a,b) \ argument 700 #define L_MULLU(a,b) \ argument 705 #define L_MULLU_LO(a,b) \ argument 709 #define __l_amull__(lo, a,b) \ argument [all …]
|
| /utopia/UTPA2-700.0.x/modules/mfe/drv/mfe/ |
| H A D | pthread_map.h | 85 #define pthread_cond_init(a, b) pthread_cond_init(a, NULL) argument 95 #define pthread_mutex_init(a, b) cyg_mutex_init(a) argument 101 #define pthread_cond_wait(a, b) cyg_cond_wait(a) argument 103 #define sem_init(a, b, c) cyg_semaphore_init(a, c) argument
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/include/ |
| H A D | drvTimer.h | 114 #define ms_time_after(a,b) ( ((int)(b) - (int)(a)) < 0 ) argument 115 #define ms_time_before(a,b) ms_time_after(b,a) argument 117 #define ms_time_after_eq(a,b) ( ((int)(a) - (int)(b)) >= 0 ) argument 118 #define ms_time_before_eq(a,b) ms_time_after_eq(b,a) argument
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/include/ |
| H A D | drvTimer.h | 167 #define time_after(a,b) ( ((int)(b) - (int)(a)) < 0 ) argument 168 #define time_before(a,b) time_after(b,a) argument 170 #define time_after_eq(a,b) ( ((int)(a) - (int)(b)) >= 0 ) argument 171 #define time_before_eq(a,b) time_after_eq(b,a) argument
|
| /utopia/UTPA2-700.0.x/modules/xc/utopia_adaption/xc/ |
| H A D | XC_ModeParse_adp.c | 122 #define CPY_FROM_USER(a,b,c) if(copy_from_user(a,b,c) != 0) { br… argument 123 #define CPY_to_USER(a,b,c) if(copy_to_user(a,b,c) != 0) { brea… argument 134 #define CMP_CPY_FROM_USER(a,b,c) if(copy_from_user(a, compat_ptr((un… argument 135 #define CMP_CPY_TO_USER(a,b,c) if(copy_to_user(compat_ptr((unsigne… argument
|
| H A D | XC_HDMI_if_adp.c | 140 #define CPY_FROM_USER(a,b,c) if(copy_from_user(a,b,c) != 0) { break; } argument 141 #define CPY_TO_USER(a,b,c) if(copy_to_user(a,b,c) != 0) { break; } argument 151 #define CMP_CPY_FROM_USER(a,b,c) if(copy_from_user(a, compat_ptr((unsigned long)b), … argument 152 #define CMP_CPY_TO_USER(a,b,c) if(copy_to_user(compat_ptr((unsigned long)a), b, c)… argument
|
| /utopia/UTPA2-700.0.x/modules/mfe/api/mfe_ex/ |
| H A D | madp_mfe.h | 132 #define open_dev(a, b) 1UL argument 138 #define open_dev(a, b) 1UL argument 140 #define open_dev(a, b) 1UL argument 163 #define MUX(a, b, c) ((a) ? (b) : (c)) argument
|
| /utopia/UTPA2-700.0.x/modules/mfe/drv/mfe/cModel/ |
| H A D | mfe_type.h | 176 …#define MAKELONG(a, b) ((unsigned int)(((unsigned short)(a)) | ((unsigned int)((unsigned short)… argument 181 #define MFE_MAX(a,b) (((a) > (b)) ? (a) : (b)) argument 184 #define MFE_MIN(a,b) (((a) < (b)) ? (a) : (b)) argument 188 #define MFE_MUX(a, b, c) ((a) ? (b) : (c)) argument
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usbhost/include/ |
| H A D | datatype.h | 402 #define ReadU16BE(b) (((U16)((b)[0])<<8)|((b)[1])) argument 403 #define ReadU24BE(b) (((U32)((b)[0])<<16)|((U32)((b)[1])<<8)|((b)[2]))) argument 404 #define ReadU32BE(b) (((U32)((b)[0])<<24)|((U32)((b)[1])<<16)|((U32)((b)[2])<<8)|((b)[3])) argument 405 #define ReadU16LE(b) (((b)[0])|((U16)((b)[1])<<8)) argument 406 #define ReadU24LE(b) (((b)[0])|((U32)((b)[1])<<8)|((U32)((b)[2])<<16)) argument 407 #define ReadU32LE(b) (((b)[0])|((U32)((b)[1])<<8)|((U32)((b)[2])<<16)|((U32)((b)[3])<<24)) argument 556 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument 557 #define MIN(a ,b) (((a) < (b)) ? (a) : (b)) argument 560 #define _MAX( a, b ) (((a) >= (b)) * (a) + ((b) > (a)) * (b)) argument 561 #define _MIN( a, b ) (((a) <= (b)) * (a) + ((b) < (a)) * (b)) argument [all …]
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/sys/ |
| H A D | time.h | 48 #define timercmp(a, b, CMP) \ argument 52 #define timeradd(a, b, result) \ argument 62 #define timersub(a, b, result) \ argument
|
| H A D | param.h | 22 #define MAX(a,b) ((a) > (b) ? (a) : (b)) argument 23 #define MIN(a,b) ((a) < (b) ? (a) : (b)) argument
|
| /utopia/UTPA2-700.0.x/modules/hwi2c/utopia_adaption/hwi2c/ |
| H A D | HWI2C_adp.c | 59 #define CPY_FROM_USER(a,b,c) if(copy_from_user(a,b,c) != 0) { br… argument 60 #define CPY_to_USER(a,b,c) if(copy_to_user(a,b,c) != 0) { brea… argument 71 #define CMP_CPY_FROM_USER(a,b,c) if(copy_from_user(a, compat_ptr((un… argument 72 #define CMP_CPY_TO_USER(a,b,c) if(copy_to_user(compat_ptr((unsigne… argument
|
| /utopia/UTPA2-700.0.x/modules/dlc/utopia_adaption/dlc/ |
| H A D | DLC_adp.c | 19 …#define CPY_FROM_USER(a,b,c) if(copy_from_user(a,b,c) != 0) { b… argument 20 …#define CPY_to_USER(a,b,c) if(copy_to_user(a,b,c) != 0) { bre… argument 29 …#define CMP_CPY_FROM_USER(a,b,c) if(copy_from_user(a, compat_ptr((u… argument 30 …#define CMP_CPY_TO_USER(a,b,c) if(copy_to_user(compat_ptr((unsign… argument
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/sys/ |
| H A D | time.h | 166 # define timercmp(a, b, CMP) \ argument 170 # define timeradd(a, b, result) \ argument 180 # define timersub(a, b, result) \ argument
|
| /utopia/UTPA2-700.0.x/modules/ipauth/drv/ipauth/ |
| H A D | drvIPAUTH.c | 182 #define PP(a, b, c, d, x, s, ac) { \ argument 186 #define QQ(a, b, c, d, x, s, ac) { \ argument 190 #define RR(a, b, c, d, x, s, ac) { \ argument 194 #define SS(a, b, c, d, x, s, ac) { \ argument 327 MS_U32 a = state[0], b = state[1], c = state[2], d = state[3], x[16]; in MDrv_AUTH_MD5Transform() local 983 #define MS_AUTH_MUL(a,b) ( !( a && b ) ? 0 : pow[(log[a] + log[b]) % 255]) argument 1061 #define GET_UINT32(n,b,i) \ argument 1069 #define PUT_UINT32(n,b,i) \ argument
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/ |
| H A D | drvUSBHwCtl.h | 100 #define usb_writeb(b,addr) ((*(volatile unsigned char *) (addr)) = (b)) argument 101 #define usb_writew(b,addr) ((*(volatile unsigned short *) (addr)) = (b)) argument 102 #define usb_writel(b,addr) ((*(volatile unsigned int *) (addr)) = (b)) argument
|
| /utopia/UTPA2-700.0.x/modules/dmx/utopia_adaption/dmx/ |
| H A D | DMX_adp.c | 135 #define CPY_FROM_USER(a,b,c) if(copy_from_user(a,b,c) != 0) { re… argument 136 #define CPY_to_USER(a,b,c) if(copy_to_user(a,b,c) != 0) { retu… argument 145 #define CMP_CPY_FROM_USER(a,b,c) if(copy_from_user(a, compat_ptr((un… argument 146 #define CMP_CPY_TO_USER(a,b,c) if(copy_to_user(compat_ptr((unsigne… argument
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/ |
| H A D | drvUSBHwCtl.h | 99 #define usb_writeb(b,addr) ((*(volatile unsigned char *) (addr)) = (b)) argument 100 #define usb_writew(b,addr) ((*(volatile unsigned short *) (addr)) = (b)) argument 101 #define usb_writel(b,addr) ((*(volatile unsigned int *) (addr)) = (b)) argument
|
| /utopia/UTPA2-700.0.x/modules/ojpd_vdec_v2/api/jpeg_ex/cmodel/inc/ |
| H A D | jpegmain.h | 122 #define max(a,b) (((a)>(b)) ? (a) : (b)) argument 126 #define min(a,b) (((a)<(b)) ? (a) : (b)) argument
|
| /utopia/UTPA2-700.0.x/modules/ojpd_vdec_v1/api/jpeg/cmodel/inc/ |
| H A D | jpegmain.h | 122 #define max(a,b) (((a)>(b)) ? (a) : (b)) argument 126 #define min(a,b) (((a)<(b)) ? (a) : (b)) argument
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/ |
| H A D | unifdef.c | 750 static Linetype op_lt(int *p, Linetype at, int a, Linetype bt, int b) { in op_lt() 753 static Linetype op_gt(int *p, Linetype at, int a, Linetype bt, int b) { in op_gt() 756 static Linetype op_le(int *p, Linetype at, int a, Linetype bt, int b) { in op_le() 759 static Linetype op_ge(int *p, Linetype at, int a, Linetype bt, int b) { in op_ge() 762 static Linetype op_eq(int *p, Linetype at, int a, Linetype bt, int b) { in op_eq() 765 static Linetype op_ne(int *p, Linetype at, int a, Linetype bt, int b) { in op_ne() 768 static Linetype op_or(int *p, Linetype at, int a, Linetype bt, int b) { in op_or() 773 static Linetype op_and(int *p, Linetype at, int a, Linetype bt, int b) { in op_and()
|
| /utopia/UTPA2-700.0.x/modules/mfe/api/mfe/ |
| H A D | madp_mfe.h | 161 #define open_dev(a, b) 1 argument 166 #define open_dev(a, b) 1 argument 194 #define MUX(a, b, c) ((a) ? (b) : (c)) argument
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/mod/ |
| H A D | sumversion.c | 67 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument 68 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (uint32_t)0x5A827999,s)) argument 69 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (uint32_t)0x6ED9EBA1,s)) argument 90 uint32_t a, b, c, d; in md4_transform() local
|
| /utopia/UTPA2-700.0.x/modules/pq/utopia_adaption/pq/ |
| H A D | PQ_adp.c | 16 #define CMP_CPY_FROM_USER(a,b,c) if(copy_from_user(a, compat_ptr((un… argument 17 #define CMP_CPY_TO_USER(a,b,c) if(copy_to_user(compat_ptr((unsigne… argument
|