Searched refs:cur_x (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/solutions/eduk1_demo/k1_apps/aircraftBattle/ |
A D | aircraftBattle.md | 106 int cur_x; 144 int left = dfo->cur_x + cur_map->offset_x; 174 int cur_x; // 运动 214 my_craft->cur_x -= my_craft->speed; 218 my_craft->cur_x += my_craft->speed; 282 int cur_x; 360 craft->cur_x = craft->pos_x; 409 int cur_x; // 飞行物的当前位置 451 bullet->cur_x = -100; 497 bullet->cur_x = -100; [all …]
|
A D | aircraftBattle.c | 302 bullet->cur_x = -100; in create_bullet() 389 craft->cur_x = craft->start_x; in reload_dfo() 421 int left = my_craft->cur_x + cur_map->offset_x; in move_MyCraft() 435 my_craft->cur_x -= my_craft->speed; in move_MyCraft() 439 my_craft->cur_x += my_craft->speed; in move_MyCraft() 455 bullet->cur_x = -100; in move_bullet() 491 int left = dfo->cur_x + cur_map->offset_x; in draw_dfo() 560 if (craft->cur_y <= 0 || craft->cur_x <= 0) in hit_check() 584 int bit_cur_x = bullet->cur_x + cur_map->offset_x + in hit_check() 611 craft->cur_x + cur_craft_map->offset_x + in hit_check() [all …]
|
A D | aircraftBattle.h | 62 int cur_x; // 运动 member
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | upsampling_neon.c | 135 #define CONVERT8(FMT, XSTEP, N, src_y, src_uv, out, cur_x) do { \ argument 138 const int off = ((cur_x) + i) * XSTEP; \ 139 const uint8x8_t y = vld1_u8((src_y) + (cur_x) + i); \ 165 #define CONVERT1(FUNC, XSTEP, N, src_y, src_uv, rgb, cur_x) { \ argument 168 const int off = ((cur_x) + i) * XSTEP; \ 169 const int y = src_y[(cur_x) + i]; \ 177 top_dst, bottom_dst, cur_x, len) { \ argument 178 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x); \ 180 CONVERT8(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \ 185 top_dst, bottom_dst, cur_x, len) { \ argument [all …]
|
A D | upsampling_sse41.c | 110 top_dst, bottom_dst, cur_x) do { \ argument 111 FUNC##32_SSE41((top_y) + (cur_x), r_u, r_v, (top_dst) + (cur_x) * (XSTEP)); \ 113 FUNC##32_SSE41((bottom_y) + (cur_x), r_u + 64, r_v + 64, \ 114 (bottom_dst) + (cur_x) * (XSTEP)); \
|
A D | upsampling_sse2.c | 108 top_dst, bottom_dst, cur_x) do { \ argument 109 FUNC##32_SSE2((top_y) + (cur_x), r_u, r_v, (top_dst) + (cur_x) * (XSTEP)); \ 111 FUNC##32_SSE2((bottom_y) + (cur_x), r_u + 64, r_v + 64, \ 112 (bottom_dst) + (cur_x) * (XSTEP)); \
|
/AliOS-Things-master/components/freetype/src/pshinter/ |
A D | pshalgo.h | 176 FT_Pos cur_x; member
|
A D | pshalgo.c | 1241 point->cur_x = point->cur_u; in psh_glyph_save_points()
|
Completed in 15 milliseconds