Home
last modified time | relevance | path

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

12

/components/net/lwip/lwip-2.1.2/src/netif/ppp/polarssl/
A Dmd5.c118 #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 Dsha1.c127 #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 Dmd4.c114 #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 Darc4.c78 int i, x, y, a, b; in arc4_crypt() local
/components/net/lwip/lwip-2.0.3/src/netif/ppp/polarssl/
A Dmd5.c118 #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 Dsha1.c127 #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 Dmd4.c114 #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 Darc4.c78 int i, x, y, a, b; in arc4_crypt() local
/components/drivers/sdio/sdhci/include/
A Dsdhci_misc.h30 #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 Dvirtio_gpu.c278 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 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
/components/drivers/include/drivers/
A Dmisc.h74 #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 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
/components/net/lwip/lwip-2.0.3/src/include/lwip/
A Ddef.h54 #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 Ddef.h65 #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 Darc4.h48 int y; /*!< permutation index */ member
/components/net/lwip/lwip-2.0.3/src/include/netif/ppp/polarssl/
A Darc4.h48 int y; /*!< permutation index */ member
/components/utilities/rt-link/src/
A Drtlink_utils.c77 rt_uint32_t x, y; in rt_link_sf_crc32() local
/components/drivers/usb/cherryusb/demo/
A Dhid_mouse_template.c285 int8_t y; member
364 static int8_t x = 0, y = 0; in draw_circle() local
A Dhid_remote_wakeup_template.c285 int8_t y; member
364 static int8_t x = 0, y = 0; in draw_circle() local
/components/drivers/include/drivers/classes/
A Dgraphic.h60 #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 Dlwip_check.h13 #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 Dlwip_check.h13 #define EXPECT_RETX(x, y) do { fail_unless(x); if(!(x)) { return y; }} while(0) argument
/components/libc/compilers/common/include/sys/
A Dselect.h41 #define howmany(x,y) (((x)+((y)-1))/(y)) argument

Completed in 21 milliseconds

12