| /components/net/lwip/lwip-2.1.2/src/netif/ppp/polarssl/ |
| A D | arc4.c | 54 ctx->y = 0; in arc4_setup() 78 int i, x, y, a, b; in arc4_crypt() local 82 y = ctx->y; in arc4_crypt() 88 y = ( y + a ) & 0xFF; b = m[y]; in arc4_crypt() 91 m[y] = (unsigned char) a; in arc4_crypt() 98 ctx->y = y; in arc4_crypt()
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/polarssl/ |
| A D | arc4.c | 54 ctx->y = 0; in arc4_setup() 78 int i, x, y, a, b; in arc4_crypt() local 82 y = ctx->y; in arc4_crypt() 88 y = ( y + a ) & 0xFF; b = m[y]; in arc4_crypt() 91 m[y] = (unsigned char) a; in arc4_crypt() 98 ctx->y = y; in arc4_crypt()
|
| /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/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 94 void (*set_pixel) (const char *pixel, int x, int y); 95 void (*get_pixel) (char *pixel, int x, int y); 97 void (*draw_hline)(const char *pixel, int x1, int x2, int y); 100 void (*blit_line) (const char *pixel, int x, int y, rt_size_t size);
|
| /components/drivers/usb/cherryusb/platform/lvgl/ |
| A D | usbh_hid_lvgl.c | 82 int16_t y; /* Mouse Y coordinate */ member 119 if (ctx->mouse.y < 0) { in usbh_hid_lvgl_read_mouse() 120 ctx->mouse.y = 0; in usbh_hid_lvgl_read_mouse() 122 ctx->mouse.y = (height * ctx->mouse.sensitivity) - 1; in usbh_hid_lvgl_read_mouse() 129 data->point.y = ctx->mouse.y / ctx->mouse.sensitivity; in usbh_hid_lvgl_read_mouse() 137 data->point.y = height - ctx->mouse.y / ctx->mouse.sensitivity; in usbh_hid_lvgl_read_mouse() 191 if (ctx->mouse.y < 0) { in hpm_lvgl_indev_read_cb() 192 ctx->mouse.y = 0; in hpm_lvgl_indev_read_cb() 201 data->point.y = ctx->mouse.y / ctx->mouse.sensitivity; in hpm_lvgl_indev_read_cb() 209 data->point.y = height - ctx->mouse.y / ctx->mouse.sensitivity; in hpm_lvgl_indev_read_cb() [all …]
|
| /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/virtio/ |
| A D | Kconfig | 16 default y 20 default y 24 default y 28 default y 38 default y 42 default y
|
| A D | virtio_gpu.c | 261 req.r.y = 0; in virtio_gpu_set_scanout() 278 rt_uint32_t x, rt_uint32_t y, rt_uint32_t width, rt_uint32_t height) in virtio_gpu_flush_resource() argument 287 req.r.y = y; in virtio_gpu_flush_resource() 312 req.r.y = y; 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() argument 360 rt_uint32_t resource_id, rt_uint32_t x, rt_uint32_t y) in virtio_gpu_cursor_move() argument 369 req.pos.y = y; in virtio_gpu_cursor_move() 520 info->x, info->y, info->width, info->height); in virtio_gpu_control() 682 static void virtio_gpu_set_pixel(const char *pixel, int x, int y) in virtio_gpu_set_pixel() argument 697 static void virtio_gpu_get_pixel(char *pixel, int x, int y) in virtio_gpu_get_pixel() argument [all …]
|
| /components/utilities/libadt/ |
| A D | Kconfig | 3 default y if ARCH_MM_MMU 9 default y 14 default y 19 default y 24 default y
|
| /components/libc/cplusplus/cpp11/gcc/ |
| A D | thread | 148 inline void swap(thread& x, thread& y) noexcept 150 x.swap(y); 154 inline bool operator==(thread::id x, thread::id y) noexcept 158 return x.__cpp_thread_t == y.__cpp_thread_t; 163 return !(x == y); 166 inline bool operator<(thread::id x, thread::id y) noexcept 168 return x.__cpp_thread_t < y.__cpp_thread_t; 173 return !(y < x); 176 inline bool operator>(thread::id x, thread::id y) noexcept 178 return !(x <= y); [all …]
|
| /components/drivers/include/drivers/ |
| A D | misc.h | 74 #define rt_min(x, y) \ argument 77 typeof(y) _y = (y); \ 82 #define rt_max(x, y) \ argument 85 typeof(y) _y = (y); \ 90 #define rt_min_t(type, x, y) \ argument 93 type _y = (y); \ 97 #define rt_max_t(type, x, y) \ argument 100 type _y = (y); \
|
| /components/finsh/ |
| A D | Kconfig | 4 default y 10 default y 14 default y 30 default y 46 default y 54 default y 58 default y 88 default y
|
| /components/drivers/usb/cherryusb/demo/ |
| A D | hid_mouse_template.c | 285 int8_t y; member 354 mouse_cfg.y = 0; in hid_mouse_init() 364 static int8_t x = 0, y = 0; in draw_circle() local 374 y = 0; in draw_circle() 381 y = CURSOR_STEP; in draw_circle() 386 y = 0; in draw_circle() 393 y = (int8_t)(-CURSOR_STEP); in draw_circle() 400 buf[2] = y; in draw_circle()
|
| A D | hid_remote_wakeup_template.c | 285 int8_t y; member 354 mouse_cfg.y = 0; in hid_mouse_init() 364 static int8_t x = 0, y = 0; in draw_circle() local 374 y = 0; in draw_circle() 381 y = CURSOR_STEP; in draw_circle() 386 y = 0; in draw_circle() 393 y = (int8_t)(-CURSOR_STEP); in draw_circle() 400 buf[2] = y; in draw_circle()
|
| /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
|
| A D | stats.h | 311 #define STATS_INC_USED(x, y) do { lwip_stats.x.used += y; \ argument 389 #define MEM_STATS_AVAIL(x, y) lwip_stats.mem.x = y argument 391 #define MEM_STATS_INC_USED(x, y) SYS_ARCH_INC(lwip_stats.mem.x, y) argument 392 #define MEM_STATS_DEC_USED(x, y) SYS_ARCH_DEC(lwip_stats.mem.x, y) argument 395 #define MEM_STATS_AVAIL(x, y) argument 397 #define MEM_STATS_INC_USED(x, y) argument 398 #define MEM_STATS_DEC_USED(x, y) argument
|
| /components/legacy/usb/usbhost/class/ |
| A D | umouse.c | 87 if(emouse.y>yoffset) in rt_usbh_hid_mouse_callback() 89 emouse.y-=yoffset; in rt_usbh_hid_mouse_callback() 93 emouse.y=0; in rt_usbh_hid_mouse_callback() 99 if(emouse.y+yoffset<272) in rt_usbh_hid_mouse_callback() 101 emouse.y+=yoffset; in rt_usbh_hid_mouse_callback() 105 emouse.y=272; in rt_usbh_hid_mouse_callback() 111 cursor_set_position(emouse.x,emouse.y); in rt_usbh_hid_mouse_callback()
|
| /components/utilities/rt-link/src/ |
| A D | rtlink_utils.c | 77 rt_uint32_t x, y; in rt_link_sf_crc32() local 79 y = 0; in rt_link_sf_crc32() 84 y = (crc ^ data[i]) & 0xff; in rt_link_sf_crc32() 85 x = crc_table[y]; in rt_link_sf_crc32()
|
| /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
|
| A D | stats.h | 311 #define STATS_INC_USED(x, y, type) do { lwip_stats.x.used = (type)(lwip_stats.x.used + y); \ argument 321 #define STATS_INC_USED(x, y, type) 389 #define MEM_STATS_AVAIL(x, y) lwip_stats.mem.x = y argument 391 #define MEM_STATS_INC_USED(x, y) STATS_INC_USED(mem, y, mem_size_t) argument 392 #define MEM_STATS_DEC_USED(x, y) lwip_stats.mem.x = (mem_size_t)((lwip_stats.mem.x) - (y)) argument 395 #define MEM_STATS_AVAIL(x, y) argument 397 #define MEM_STATS_INC_USED(x, y) argument 398 #define MEM_STATS_DEC_USED(x, y) argument
|
| /components/drivers/wlan/ |
| A D | Kconfig | 28 default y 41 default y 45 default y 49 default y 55 default y 66 default y 76 default y 94 default y 109 default y
|
| /components/net/netdev/ |
| A D | Kconfig | 9 default y 13 default y 17 default y 21 default y
|
| /components/lwp/ |
| A D | Kconfig | 4 default y 18 default y 23 default y 47 default y 68 default y 75 default y
|
| /components/dfs/ |
| A D | Kconfig | 6 default y 13 default y 17 default y 75 default y 146 default y 163 default y 187 default y 190 default y 207 default y if RT_USING_SMART 213 default y if RT_USING_SMART [all …]
|