/AliOS-Things-master/components/SDL2/src/gfx/Test/ |
A D | TestImageFilter.c | 163 FUNC(BitAnd), in main() 164 FUNC(BitOr), in main() 165 FUNC(Add), in main() 166 FUNC(AbsDiff), in main() 167 FUNC(Mean), in main() 168 FUNC(Sub), in main() 169 FUNC(Mult), in main() 173 FUNC(Div), in main() 238 #undef FUNC in main() 292 #undef FUNC in main() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | upsampling.c | 37 #define UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument 49 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \ 53 FUNC(bottom_y[0], uv0 & 0xff, (uv0 >> 16), bottom_dst); \ 65 FUNC(top_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \ 67 FUNC(top_y[2 * x - 0], uv1 & 0xff, (uv1 >> 16), \ 73 FUNC(bottom_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \ 75 FUNC(bottom_y[2 * x + 0], uv1 & 0xff, (uv1 >> 16), \ 84 FUNC(top_y[len - 1], uv0 & 0xff, (uv0 >> 16), \ 89 FUNC(bottom_y[len - 1], uv0 & 0xff, (uv0 >> 16), \ 138 #define DUAL_SAMPLE_FUNC(FUNC_NAME, FUNC) \ argument [all …]
|
A D | upsampling_mips_dsp_r2.c | 145 #define UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument 157 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \ 161 FUNC(bottom_y[0], uv0 & 0xff, (uv0 >> 16), bottom_dst); \ 173 FUNC(top_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \ 175 FUNC(top_y[2 * x - 0], uv1 & 0xff, (uv1 >> 16), \ 181 FUNC(bottom_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \ 183 FUNC(bottom_y[2 * x + 0], uv1 & 0xff, (uv1 >> 16), \ 192 FUNC(top_y[len - 1], uv0 & 0xff, (uv0 >> 16), \ 197 FUNC(bottom_y[len - 1], uv0 & 0xff, (uv0 >> 16), \ 243 #define YUV444_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument [all …]
|
A D | upsampling_sse41.c | 109 #define CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, \ 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, \ 118 #define SSE4_UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument 135 FUNC(top_y[0], u0_t, v0_t, top_dst); \ 139 FUNC(bottom_y[0], u0_b, v0_b, bottom_dst); \ 146 CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, pos); \ 159 CONVERT2RGB_32(FUNC, XSTEP, tmp_top, tmp_bottom, tmp_top_dst, \
|
A D | upsampling_sse2.c | 107 #define CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, \ 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, \ 116 #define SSE2_UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument 133 FUNC(top_y[0], u0_t, v0_t, top_dst); \ 137 FUNC(bottom_y[0], u0_b, v0_b, bottom_dst); \ 144 CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, pos); \ 157 CONVERT2RGB_32(FUNC, XSTEP, tmp_top, tmp_bottom, tmp_top_dst, \
|
A D | upsampling_neon.c | 165 #define CONVERT1(FUNC, XSTEP, N, src_y, src_uv, rgb, cur_x) { \ argument 172 FUNC(y, u, v, rgb + off); \ 184 #define CONVERT2RGB_1(FUNC, XSTEP, top_y, bottom_y, uv, \ argument 186 CONVERT1(FUNC, XSTEP, len, top_y, uv, top_dst, cur_x); \ 188 CONVERT1(FUNC, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \
|
A D | yuv.c | 22 #define ROW_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument 28 FUNC(y[0], u[0], v[0], dst); \ 29 FUNC(y[1], u[0], v[0], dst + (XSTEP)); \ 36 FUNC(y[0], u[0], v[0], dst); \
|
A D | upsampling_msa.c | 566 #define UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument 583 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \ 586 FUNC(bot_y[0], uv1 & 0xff, (uv1 >> 16), bot_dst); \ 598 FUNC##Line(ptop_y, &temp_u[ 0], &temp_v[0], ptop_dst, 32); \ 600 FUNC##Line(pbot_y, &temp_u[32], &temp_v[32], pbot_dst, 32); \ 626 FUNC##Line(ptop_y, &temp_u[ 0], &temp_v[0], ptop_dst, size * 2); \ 628 FUNC##Line(pbot_y, &temp_u[32], &temp_v[32], pbot_dst, size * 2); \ 639 FUNC(top_y[len - 1], tmp0 & 0xff, (tmp0 >> 16), \ 643 FUNC(bot_y[len - 1], tmp1 & 0xff, (tmp1 >> 16), \
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | IMG_tif.c | 43 #define FUNCTION_LOADER(FUNC, SIG) \ argument 44 lib.FUNC = (SIG) SDL_LoadFunction(lib.handle, #FUNC); \ 45 if (lib.FUNC == NULL) { SDL_UnloadObject(lib.handle); return -1; } 47 #define FUNCTION_LOADER(FUNC, SIG) \ argument 48 lib.FUNC = FUNC;
|
A D | IMG_webp.c | 59 #define FUNCTION_LOADER(FUNC, SIG) \ argument 60 lib.FUNC = (SIG) SDL_LoadFunction(lib.handle, #FUNC); \ 61 if (lib.FUNC == NULL) { SDL_UnloadObject(lib.handle); return -1; } 63 #define FUNCTION_LOADER(FUNC, SIG) \ argument 64 lib.FUNC = FUNC;
|
A D | IMG_jpg.c | 71 #define FUNCTION_LOADER(FUNC, SIG) \ argument 72 lib.FUNC = (SIG) SDL_LoadFunction(lib.handle, #FUNC); \ 73 if (lib.FUNC == NULL) { SDL_UnloadObject(lib.handle); return -1; } 75 #define FUNCTION_LOADER(FUNC, SIG) \ argument 76 lib.FUNC = FUNC;
|
A D | IMG_png.c | 147 #define FUNCTION_LOADER(FUNC, SIG) \ argument 148 lib.FUNC = (SIG) SDL_LoadFunction(lib.handle, #FUNC); \ 149 if (lib.FUNC == NULL) { SDL_UnloadObject(lib.handle); return -1; } 151 #define FUNCTION_LOADER(FUNC, SIG) \ argument 152 lib.FUNC = FUNC;
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/mbed/targets/hal/rtl8721d/ |
A D | PinNames.h | 11 #define PIN_DATA(PUPD, FUNC) (((PUPD) << 6) | (FUNC)) argument
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/swig/ |
A D | libwebp.swig | 298 #define LOSSY_WRAPPER(FUNC) \ 299 static uint8_t* wrap_##FUNC( \ 303 FUNC, output_size, unused2); \ 313 #define LOSSLESS_WRAPPER(FUNC) \ 314 static uint8_t* wrap_##FUNC( \ 318 FUNC, output_size, unused2); \
|
A D | libwebp_java_wrap.c | 966 #define LOSSY_WRAPPER(FUNC) \ argument 967 static uint8_t* wrap_##FUNC( \ 971 FUNC, output_size, unused2); \ 981 #define LOSSLESS_WRAPPER(FUNC) \ in LOSSY_WRAPPER() argument 982 static uint8_t* wrap_##FUNC( \ in LOSSY_WRAPPER() 986 FUNC, output_size, unused2); \ in LOSSY_WRAPPER()
|
A D | libwebp_python_wrap.c | 3287 #define LOSSY_WRAPPER(FUNC) \ argument 3288 static uint8_t* wrap_##FUNC( \ 3292 FUNC, output_size, unused2); \ 3302 #define LOSSLESS_WRAPPER(FUNC) \ in LOSSY_WRAPPER() argument 3303 static uint8_t* wrap_##FUNC( \ in LOSSY_WRAPPER() 3307 FUNC, output_size, unused2); \ in LOSSY_WRAPPER()
|
/AliOS-Things-master/components/SDL2/src/image/autom4te.cache/ |
A D | output.0 | 1935 @%:@ ac_fn_c_check_func LINENO FUNC VAR 1937 @%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly
|
A D | output.1 | 1935 @%:@ ac_fn_c_check_func LINENO FUNC VAR 1937 @%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly
|
A D | output.2 | 1803 @%:@ ac_fn_c_check_func LINENO FUNC VAR 1805 @%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly
|