/third_party/ffmpeg/libswscale/tests/ |
D | colorspace.c | 35 #define FUNC(s, d, n) { s, d, #n, n } macro 58 FUNC(2, 2, rgb12to15), in main() 59 FUNC(2, 2, rgb15to16), in main() 60 FUNC(2, 3, rgb15to24), in main() 61 FUNC(2, 4, rgb15to32), in main() 62 FUNC(2, 3, rgb16to24), in main() 63 FUNC(2, 4, rgb16to32), in main() 64 FUNC(3, 2, rgb24to15), in main() 65 FUNC(3, 2, rgb24to16), in main() 66 FUNC(3, 4, rgb24to32), in main() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | h264dsp.c | 70 #undef FUNC in ff_h264dsp_init() 71 #define FUNC(a, depth) a ## _ ## depth ## _c in ff_h264dsp_init() macro 74 c->h264_add_pixels4_clear = FUNC(ff_h264_add_pixels4, depth);\ in ff_h264dsp_init() 75 c->h264_add_pixels8_clear = FUNC(ff_h264_add_pixels8, depth) in ff_h264dsp_init() 84 c->h264_idct_add= FUNC(ff_h264_idct_add, depth);\ in ff_h264dsp_init() 85 c->h264_idct8_add= FUNC(ff_h264_idct8_add, depth);\ in ff_h264dsp_init() 86 c->h264_idct_dc_add= FUNC(ff_h264_idct_dc_add, depth);\ in ff_h264dsp_init() 87 c->h264_idct8_dc_add= FUNC(ff_h264_idct8_dc_add, depth);\ in ff_h264dsp_init() 88 c->h264_idct_add16 = FUNC(ff_h264_idct_add16, depth);\ in ff_h264dsp_init() 89 c->h264_idct8_add4 = FUNC(ff_h264_idct8_add4, depth);\ in ff_h264dsp_init() [all …]
|
D | hevcdsp.c | 128 #undef FUNC in ff_hevc_dsp_init() 129 #define FUNC(a, depth) a ## _ ## depth in ff_hevc_dsp_init() macro 197 hevcdsp->put_pcm = FUNC(put_pcm, depth); \ in ff_hevc_dsp_init() 198 hevcdsp->add_residual[0] = FUNC(add_residual4x4, depth); \ in ff_hevc_dsp_init() 199 hevcdsp->add_residual[1] = FUNC(add_residual8x8, depth); \ in ff_hevc_dsp_init() 200 hevcdsp->add_residual[2] = FUNC(add_residual16x16, depth); \ in ff_hevc_dsp_init() 201 hevcdsp->add_residual[3] = FUNC(add_residual32x32, depth); \ in ff_hevc_dsp_init() 202 hevcdsp->dequant = FUNC(dequant, depth); \ in ff_hevc_dsp_init() 203 hevcdsp->transform_rdpcm = FUNC(transform_rdpcm, depth); \ in ff_hevc_dsp_init() 204 hevcdsp->transform_4x4_luma = FUNC(transform_4x4_luma, depth); \ in ff_hevc_dsp_init() [all …]
|
D | hevcpred.c | 45 #undef FUNC in ff_hevc_pred_init() 46 #define FUNC(a, depth) a ## _ ## depth in ff_hevc_pred_init() macro 49 hpc->intra_pred[0] = FUNC(intra_pred_2, depth); \ in ff_hevc_pred_init() 50 hpc->intra_pred[1] = FUNC(intra_pred_3, depth); \ in ff_hevc_pred_init() 51 hpc->intra_pred[2] = FUNC(intra_pred_4, depth); \ in ff_hevc_pred_init() 52 hpc->intra_pred[3] = FUNC(intra_pred_5, depth); \ in ff_hevc_pred_init() 53 hpc->pred_planar[0] = FUNC(pred_planar_0, depth); \ in ff_hevc_pred_init() 54 hpc->pred_planar[1] = FUNC(pred_planar_1, depth); \ in ff_hevc_pred_init() 55 hpc->pred_planar[2] = FUNC(pred_planar_2, depth); \ in ff_hevc_pred_init() 56 hpc->pred_planar[3] = FUNC(pred_planar_3, depth); \ in ff_hevc_pred_init() [all …]
|
D | cbs_vp9_syntax_template.c | 19 static int FUNC(frame_sync_code)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 31 static int FUNC(color_config)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 70 static int FUNC(frame_size)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 90 static int FUNC(render_size)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 105 static int FUNC(frame_size_with_refs)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 128 CHECK(FUNC(frame_size)(ctx, rw, current)); in FUNC() 135 CHECK(FUNC(render_size)(ctx, rw, current)); in FUNC() 140 static int FUNC(interpolation_filter)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 152 static int FUNC(loop_filter_params)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 180 static int FUNC(quantization_params)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function [all …]
|
D | h264qpel_template.c | 29 static inline void FUNC(copy_block2)(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride… in FUNC() function 40 static inline void FUNC(copy_block4)(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride… in FUNC() function 51 static inline void FUNC(copy_block8)(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride… in FUNC() function 63 static inline void FUNC(copy_block16)(uint8_t *dst, const uint8_t *src, int dstStride, int srcStrid… in FUNC() function 78 static av_unused void FUNC(OPNAME ## h264_qpel2_h_lowpass)(uint8_t *p_dst, const uint8_t *p_src, in… 95 static av_unused void FUNC(OPNAME ## h264_qpel2_v_lowpass)(uint8_t *_dst, const uint8_t *_src, int … 119 static av_unused void FUNC(OPNAME ## h264_qpel2_hv_lowpass)(uint8_t *_dst, pixeltmp *tmp, const uin… 153 static void FUNC(OPNAME ## h264_qpel4_h_lowpass)(uint8_t *_dst, const uint8_t *_src, int dstStride,… 172 static void FUNC(OPNAME ## h264_qpel4_v_lowpass)(uint8_t *_dst, const uint8_t *_src, int dstStride,… 200 static void FUNC(OPNAME ## h264_qpel4_hv_lowpass)(uint8_t *_dst, pixeltmp *tmp, const uint8_t *_src… [all …]
|
D | flacdsp_lpc_template.c | 23 #undef FUNC 29 #define FUNC(n) AV_JOIN(n ## _, SAMPLE_SIZE) macro 48 static av_always_inline void FUNC(lpc_encode_unrolled)(int32_t *res, in FUNC() function 108 static void FUNC(flac_lpc_encode_c)(int32_t *res, const int32_t *smp, int len, in FUNC() function 130 case 1: FUNC(lpc_encode_unrolled)(res, smp, len, 1, coefs, shift, 0); break; in FUNC() 131 case 2: FUNC(lpc_encode_unrolled)(res, smp, len, 2, coefs, shift, 0); break; in FUNC() 132 case 3: FUNC(lpc_encode_unrolled)(res, smp, len, 3, coefs, shift, 0); break; in FUNC() 133 case 4: FUNC(lpc_encode_unrolled)(res, smp, len, 4, coefs, shift, 0); break; in FUNC() 134 case 5: FUNC(lpc_encode_unrolled)(res, smp, len, 5, coefs, shift, 0); break; in FUNC() 135 case 6: FUNC(lpc_encode_unrolled)(res, smp, len, 6, coefs, shift, 0); break; in FUNC() [all …]
|
D | cbs_mpeg2_syntax_template.c | 19 static int FUNC(sequence_header)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 59 static int FUNC(user_data)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 87 static int FUNC(sequence_extension)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 117 static int FUNC(sequence_display_extension)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 160 static int FUNC(group_of_pictures_header)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 176 static int FUNC(extra_information)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 210 static int FUNC(picture_header)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 234 CHECK(FUNC(extra_information)(ctx, rw, ¤t->extra_information_picture, in FUNC() 240 static int FUNC(picture_coding_extension)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 298 static int FUNC(quant_matrix_extension)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function [all …]
|
D | cbs_h264_syntax_template.c | 19 static int FUNC(rbsp_trailing_bits)(CodedBitstreamContext *ctx, RWContext *rw) in FUNC() function 30 static int FUNC(nal_unit_header)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 71 static int FUNC(scaling_list)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 88 static int FUNC(hrd_parameters)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 111 static int FUNC(vui_parameters)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 173 CHECK(FUNC(hrd_parameters)(ctx, rw, ¤t->nal_hrd_parameters)); in FUNC() 177 CHECK(FUNC(hrd_parameters)(ctx, rw, ¤t->vcl_hrd_parameters)); in FUNC() 220 static int FUNC(vui_parameters_default)(CodedBitstreamContext *ctx, in FUNC() function 260 static int FUNC(sps)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 267 CHECK(FUNC(nal_unit_header)(ctx, rw, ¤t->nal_unit_header, in FUNC() [all …]
|
D | cbs_av1_syntax_template.c | 19 static int FUNC(obu_header)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 50 static int FUNC(trailing_bits)(CodedBitstreamContext *ctx, RWContext *rw, int nb_bits) in FUNC() function 67 static int FUNC(byte_alignment)(CodedBitstreamContext *ctx, RWContext *rw) in FUNC() function 77 static int FUNC(color_config)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 158 static int FUNC(timing_info)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 173 static int FUNC(decoder_model_info)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 186 static int FUNC(sequence_header_obu)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 214 CHECK(FUNC(timing_info)(ctx, rw, ¤t->timing_info)); in FUNC() 218 CHECK(FUNC(decoder_model_info) in FUNC() 329 CHECK(FUNC(color_config)(ctx, rw, ¤t->color_config, in FUNC() [all …]
|
D | cbs_jpeg_syntax_template.c | 19 static int FUNC(frame_header)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 43 static int FUNC(quantisation_table)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 62 static int FUNC(dqt)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 73 CHECK(FUNC(quantisation_table)(ctx, rw, ¤t->table[i])); in FUNC() 78 static int FUNC(huffman_table)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 102 static int FUNC(dht)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 116 CHECK(FUNC(huffman_table)(ctx, rw, ¤t->table[i])); in FUNC() 126 static int FUNC(scan_header)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 150 static int FUNC(application_data)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 174 static int FUNC(comment)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function
|
D | cbs_h265_syntax_template.c | 19 static int FUNC(rbsp_trailing_bits)(CodedBitstreamContext *ctx, RWContext *rw) in FUNC() function 30 static int FUNC(nal_unit_header)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 50 static int FUNC(byte_alignment)(CodedBitstreamContext *ctx, RWContext *rw) in FUNC() function 61 static int FUNC(extension_data)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 88 static int FUNC(profile_tier_level)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 229 static int FUNC(sub_layer_hrd_parameters)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 254 static int FUNC(hrd_parameters)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 311 CHECK(FUNC(sub_layer_hrd_parameters)(ctx, rw, current, 0, i)); in FUNC() 313 CHECK(FUNC(sub_layer_hrd_parameters)(ctx, rw, current, 1, i)); in FUNC() 319 static int FUNC(vui_parameters)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function [all …]
|
D | hevcdsp_template.c | 29 static void FUNC(put_pcm)(uint8_t *_dst, ptrdiff_t stride, int width, int height, in FUNC() function 44 static av_always_inline void FUNC(add_residual)(uint8_t *_dst, int16_t *res, in FUNC() function 61 static void FUNC(add_residual4x4)(uint8_t *_dst, int16_t *res, in FUNC() function 64 FUNC(add_residual)(_dst, res, stride, 4); in FUNC() 67 static void FUNC(add_residual8x8)(uint8_t *_dst, int16_t *res, in FUNC() function 70 FUNC(add_residual)(_dst, res, stride, 8); in FUNC() 73 static void FUNC(add_residual16x16)(uint8_t *_dst, int16_t *res, in FUNC() function 76 FUNC(add_residual)(_dst, res, stride, 16); in FUNC() 79 static void FUNC(add_residual32x32)(uint8_t *_dst, int16_t *res, in FUNC() function 82 FUNC(add_residual)(_dst, res, stride, 32); in FUNC() [all …]
|
/third_party/elfio/tests/elf_examples/ |
D | ls.readelf | 272 1: 0000000000000000 0 FUNC GLOBAL DEFAULT UND __ctype_toupper_loc@GLIBC_2.3 (2) 273 2: 0000000000000000 0 FUNC GLOBAL DEFAULT UND getenv@GLIBC_2.2.5 (3) 274 3: 0000000000000000 0 FUNC GLOBAL DEFAULT UND sigprocmask@GLIBC_2.2.5 (3) 275 4: 0000000000000000 0 FUNC GLOBAL DEFAULT UND raise@GLIBC_2.2.5 (3) 276 5: 0000000000000000 0 FUNC GLOBAL DEFAULT UND localtime@GLIBC_2.2.5 (3) 277 6: 0000000000000000 0 FUNC GLOBAL DEFAULT UND __mempcpy_chk@GLIBC_2.3.4 (4) 278 7: 0000000000000000 0 FUNC GLOBAL DEFAULT UND abort@GLIBC_2.2.5 (3) 279 8: 0000000000000000 0 FUNC GLOBAL DEFAULT UND __errno_location@GLIBC_2.2.5 (3) 280 9: 0000000000000000 0 FUNC GLOBAL DEFAULT UND strncpy@GLIBC_2.2.5 (3) 281 10: 0000000000000000 0 FUNC GLOBAL DEFAULT UND strncmp@GLIBC_2.2.5 (3) [all …]
|
D | test_ppc.txt | 134 1: 100008e0 144 FUNC GLOBAL DEFAULT UND __cxa_atexit@GLIBC_2.1.3 (2) 137 4: 10000900 1452 FUNC GLOBAL DEFAULT UND _ZNSt8ios_base4InitC1Ev@GLIBCXX_3.4 (3) 138 5: 10000910 232 FUNC GLOBAL DEFAULT UND __libc_start_main@GLIBC_2.0 (4) 139 6: 10000920 204 FUNC GLOBAL DEFAULT UND _ZNSt8ios_base4InitD1Ev@GLIBCXX_3.4 (3) 140 7: 10000930 164 FUNC GLOBAL DEFAULT UND _ZStlsISt11char_traitsIcE@GLIBCXX_3.4 (3) 143 10: 10000940 36 FUNC GLOBAL DEFAULT UND _ZNSolsEPFRSoS_E@GLIBCXX_3.4 (3) 144 11: 10000950 336 FUNC GLOBAL DEFAULT UND _ZSt4endlIcSt11char_trait@GLIBCXX_3.4 (3) 145 12: 10000960 1420 FUNC GLOBAL DEFAULT UND __gxx_personality_v0@CXXABI_1.3 (5) 182 33: 10000574 0 FUNC LOCAL DEFAULT 11 __do_global_dtors_aux 185 36: 1000061c 0 FUNC LOCAL DEFAULT 11 call___do_global_dtors_au [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | VertexArrayImpl.h | 19 #define ANGLE_VERTEX_INDEX_CASES(FUNC) \ argument 20 FUNC(0) \ 21 FUNC(1) \ 22 FUNC(2) \ 23 FUNC(3) \ 24 FUNC(4) \ 25 FUNC(5) FUNC(6) FUNC(7) FUNC(8) FUNC(9) FUNC(10) FUNC(11) FUNC(12) FUNC(13) FUNC(14) FUNC(15)
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | VertexArrayImpl.h | 19 #define ANGLE_VERTEX_INDEX_CASES(FUNC) \ argument 20 FUNC(0) \ 21 FUNC(1) \ 22 FUNC(2) \ 23 FUNC(3) \ 24 FUNC(4) \ 25 FUNC(5) FUNC(6) FUNC(7) FUNC(8) FUNC(9) FUNC(10) FUNC(11) FUNC(12) FUNC(13) FUNC(14) FUNC(15)
|
/third_party/boost/boost/phoenix/function/ |
D | adapt_callable.hpp | 15 #define BOOST_PHOENIX_ADAPT_CALLABLE_NULLARY(NAME, FUNC) \ argument 17 boost::phoenix::detail::expression::function_eval<FUNC>::type const \ 21 function_eval<FUNC>::make(FUNC()); \ 26 #define BOOST_PHOENIX_ADAPT_CALLABLE(NAME, FUNC, N) \ argument 31 FUNC \ 36 function_eval<FUNC, BOOST_PHOENIX_A(N)>:: \ 37 make(FUNC(), BOOST_PHOENIX_a(N)); \ 42 #define BOOST_PHOENIX_ADAPT_CALLABLE_VARARG(NAME, FUNC) \ argument 43 BOOST_PHOENIX_ADAPT_CALLABLE_NULLARY(NAME, FUNC) \ 48 , (NAME, FUNC) \
|
D | adapt_function.hpp | 16 #define BOOST_PHOENIX_ADAPT_FUNCTION_NULLARY(RESULT, NAME, FUNC) \ argument 26 return FUNC(); \ 43 #define BOOST_PHOENIX_ADAPT_FUNCTION(RESULT, NAME, FUNC, N) \ argument 59 return FUNC(BOOST_PHOENIX_a(N)); \ 83 #define BOOST_PHOENIX_ADAPT_FUNCTION_VARARG(RESULT, NAME, FUNC) \ argument 84 BOOST_PHOENIX_ADAPT_FUNCTION_NULLARY(NAME, FUNC) \ 89 , (RESULT, NAME, FUNC) \
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
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 …]
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/ |
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 …]
|
/third_party/boost/libs/wave/test/testwave/testfiles/ |
D | t_5_002.cpp | 21 #define FUNC(a, b, c) \ macro 23 FUNC(ab, cd, ef) //R abcdef 28 #undef FUNC 29 #define FUNC(a, b \ macro 33 FUNC(ab, cd, ef) //R abcdef
|
/third_party/mindspore/mindspore/lite/micro/coder/ |
D | log.h | 32 #define MS_CHECK_PTR_WITH_EXE(ptr, FUNC) \ argument 36 FUNC; \ 57 #define MS_CHECK_RET_CODE_WITH_EXE(code, msg, FUNC) \ argument 61 FUNC; \ 82 #define MS_CHECK_TRUE_WITH_EXE(code, msg, FUNC) \ argument 86 FUNC; \
|
/third_party/ltp/include/ |
D | tst_common.h | 38 #define TST_RETRY_FUNC(FUNC, ECHCK) \ argument 39 TST_RETRY_FN_EXP_BACKOFF(FUNC, ECHCK, 1) 41 #define TST_RETRY_FN_EXP_BACKOFF(FUNC, ECHCK, MAX_DELAY) \ argument 43 typeof(FUNC) tst_ret_; \ 48 tst_ret_ = FUNC; \
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/glsl_tests/ |
D | sqrt.glsl | 1 ; RUN: ./amdgcn_glslc %s | FileCheck -check-prefix=GCN -check-prefix=FUNC %s 3 ; FUNC-LABEL: {{^}}@sqrt: 17 ; FUNC-LABEL: {{^}}@inv_sqrt: 31 ; FUNC-LABEL: {{^}}@rsq: 45 ; FUNC-LABEL: {{^}}@inv_rsq:
|