| /components/net/lwip/lwip-2.1.2/src/netif/ppp/polarssl/ |
| A D | md5.c | 118 #define F(x,y,z) (z ^ (x & (y ^ z))) in md5_process() argument 139 #define F(x,y,z) (y ^ (z & (x ^ y))) in md5_process() argument 160 #define F(x,y,z) (x ^ y ^ z) in md5_process() argument 181 #define F(x,y,z) (y ^ (x | ~z)) in md5_process() argument
|
| A D | sha1.c | 127 #define F(x,y,z) (z ^ (x & (y ^ z))) in sha1_process() argument 154 #define F(x,y,z) (x ^ y ^ z) in sha1_process() argument 181 #define F(x,y,z) ((x & y) | (z & (x | y))) in sha1_process() argument 208 #define F(x,y,z) (x ^ y ^ z) in sha1_process() argument
|
| A D | md4.c | 114 #define F(x, y, z) ((x & y) | ((~x) & z)) in md4_process() argument 137 #define F(x,y,z) ((x & y) | (x & z) | (y & z)) in md4_process() argument 160 #define F(x,y,z) (x ^ y ^ z) in md4_process() argument
|
| A D | arc4.c | 78 int i, x, y, a, b; in arc4_crypt() local
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/polarssl/ |
| A D | md5.c | 118 #define F(x,y,z) (z ^ (x & (y ^ z))) in md5_process() argument 139 #define F(x,y,z) (y ^ (z & (x ^ y))) in md5_process() argument 160 #define F(x,y,z) (x ^ y ^ z) in md5_process() argument 181 #define F(x,y,z) (y ^ (x | ~z)) in md5_process() argument
|
| A D | sha1.c | 127 #define F(x,y,z) (z ^ (x & (y ^ z))) in sha1_process() argument 154 #define F(x,y,z) (x ^ y ^ z) in sha1_process() argument 181 #define F(x,y,z) ((x & y) | (z & (x | y))) in sha1_process() argument 208 #define F(x,y,z) (x ^ y ^ z) in sha1_process() argument
|
| A D | md4.c | 114 #define F(x, y, z) ((x & y) | ((~x) & z)) in md4_process() argument 137 #define F(x,y,z) ((x & y) | (x & z) | (y & z)) in md4_process() argument 160 #define F(x,y,z) (x ^ y ^ z) in md4_process() argument
|
| A D | arc4.c | 78 int i, x, y, a, b; in arc4_crypt() local
|
| /components/drivers/sdio/sdhci/include/ |
| A D | sdhci_misc.h | 30 #define min_t(type, x, y) (((type)x < (type)y) ? x : y) argument 31 #define max_t(type, x, y) (((type)x > (type)y) ? x : y) argument 32 #define min(x, y) ((x) < (y) ? (x) : (y)) argument
|
| /components/drivers/virtio/ |
| A D | virtio_gpu.c | 278 rt_uint32_t x, rt_uint32_t y, rt_uint32_t width, rt_uint32_t height) in virtio_gpu_flush_resource() 303 rt_uint32_t x, rt_uint32_t y, rt_uint32_t width, rt_uint32_t height, rt_uint32_t offset) in virtio_gpu_transfer_to_host_2d() 329 rt_uint32_t x, rt_uint32_t y, rt_uint32_t width, rt_uint32_t height) in virtio_gpu_gfx_flush_2d() 360 rt_uint32_t resource_id, rt_uint32_t x, rt_uint32_t y) in virtio_gpu_cursor_move() 682 static void virtio_gpu_set_pixel(const char *pixel, int x, int y) in virtio_gpu_set_pixel() 697 static void virtio_gpu_get_pixel(char *pixel, int x, int y) in virtio_gpu_get_pixel() 711 static void virtio_gpu_draw_hline(const char *pixel, int x1, int x2, int y) in virtio_gpu_draw_hline() 776 static void virtio_gpu_blit_line(const char *pixel, int x, int y, rt_size_t size) in virtio_gpu_blit_line()
|
| /components/net/lwip/lwip-1.4.1/src/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
|
| /components/drivers/include/drivers/ |
| A D | misc.h | 74 #define rt_min(x, y) \ argument 82 #define rt_max(x, y) \ argument 90 #define rt_min_t(type, x, y) \ argument 97 #define rt_max_t(type, x, y) \ argument
|
| /components/net/lwip/lwip-1.4.1/src/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
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/ |
| A D | def.h | 54 #define LWIP_MAX(x , y) (((x) > (y)) ? (x) : (y)) argument 55 #define LWIP_MIN(x , y) (((x) < (y)) ? (x) : (y)) argument
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/ |
| A D | def.h | 65 #define LWIP_MAX(x , y) (((x) > (y)) ? (x) : (y)) argument 66 #define LWIP_MIN(x , y) (((x) < (y)) ? (x) : (y)) argument
|
| /components/net/lwip/lwip-2.1.2/src/include/netif/ppp/polarssl/ |
| A D | arc4.h | 48 int y; /*!< permutation index */ member
|
| /components/net/lwip/lwip-2.0.3/src/include/netif/ppp/polarssl/ |
| A D | arc4.h | 48 int y; /*!< permutation index */ member
|
| /components/utilities/rt-link/src/ |
| A D | rtlink_utils.c | 77 rt_uint32_t x, y; in rt_link_sf_crc32() local
|
| /components/drivers/usb/cherryusb/demo/ |
| A D | hid_mouse_template.c | 285 int8_t y; member 364 static int8_t x = 0, y = 0; in draw_circle() local
|
| A D | hid_remote_wakeup_template.c | 285 int8_t y; member 364 static int8_t x = 0, y = 0; in draw_circle() local
|
| /components/drivers/include/drivers/classes/ |
| A D | graphic.h | 60 #define RTGRAPHIC_PIXEL_POSITION(x, y) ((x << 16) | y) argument 84 rt_uint16_t y; /**< y coordinate */ member
|
| /components/net/lwip/lwip-1.4.1/test/unit/ |
| A D | lwip_check.h | 13 #define EXPECT_RETX(x, y) do { fail_unless(x); if(!(x)) { return y; }} while(0) argument
|
| /components/net/lwip/lwip-2.0.3/test/unit/ |
| A D | lwip_check.h | 13 #define EXPECT_RETX(x, y) do { fail_unless(x); if(!(x)) { return y; }} while(0) argument
|
| /components/libc/compilers/common/include/sys/ |
| A D | select.h | 41 #define howmany(x,y) (((x)+((y)-1))/(y)) argument
|