/third_party/uboot/u-boot-2020.01/drivers/pinctrl/mtmips/ |
D | pinctrl-mt7628.c | 92 FUNC("digital", 0xf), 93 FUNC("analog", 0), 97 FUNC("disable", 1), 98 FUNC("enable", 0), 102 FUNC("enable", 1), 103 FUNC("disable", 0), 107 FUNC("gpio", 1), 108 FUNC("utif", 0), 112 FUNC("enable", 1), 113 FUNC("disable", 0), [all …]
|
/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 | 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 | 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 | 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_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_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_av1_syntax_template.c | 19 static int FUNC(obu_header)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 43 static int FUNC(trailing_bits)(CodedBitstreamContext *ctx, RWContext *rw, int nb_bits) in FUNC() function 60 static int FUNC(byte_alignment)(CodedBitstreamContext *ctx, RWContext *rw) in FUNC() function 70 static int FUNC(color_config)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 151 static int FUNC(timing_info)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 166 static int FUNC(decoder_model_info)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 179 static int FUNC(sequence_header_obu)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 207 CHECK(FUNC(timing_info)(ctx, rw, ¤t->timing_info)); in FUNC() 211 CHECK(FUNC(decoder_model_info) in FUNC() 322 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 | hpel_template.c | 29 static inline void FUNC(OPNAME ## _pixels8_l2)(uint8_t *dst, \ 50 static inline void FUNC(OPNAME ## _pixels4_l2)(uint8_t *dst, \ 67 static inline void FUNC(OPNAME ## _pixels2_l2)(uint8_t *dst, \ 84 static inline void FUNC(OPNAME ## _pixels16_l2)(uint8_t *dst, \ 92 FUNC(OPNAME ## _pixels8_l2)(dst, src1, src2, dst_stride, \ 94 FUNC(OPNAME ## _pixels8_l2)(dst + 8 * sizeof(pixel), \
|
D | flacdsp_template.c | 24 #undef FUNC 49 #define FUNC(n) AV_JOIN(n ## _, FSUF) macro 51 static void FUNC(flac_decorrelate_indep_c)(uint8_t **out, int32_t **in, in FUNC() function 62 static void FUNC(flac_decorrelate_ls_c)(uint8_t **out, int32_t **in, in FUNC() function 76 static void FUNC(flac_decorrelate_rs_c)(uint8_t **out, int32_t **in, in FUNC() function 90 static void FUNC(flac_decorrelate_ms_c)(uint8_t **out, int32_t **in, in FUNC() function
|
/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/XKeyboardConfig/geometry/ |
D | macintosh | 195 shape "FUNC" { { [ 18, 21] }, { [2, 1], [ 16, 16] } }; 224 key.shape = "FUNC"; 338 shape "FUNC" { { [ 18,9] }, cornerRadius=1, { [2,1], [ 16,8] } }; 363 key.shape= "FUNC"; 457 shape "FUNC" { { [ 18,9] }, cornerRadius=1, { [2,1], [ 16,8] } }; 484 key.shape= "FUNC"; 583 shape "FUNC" { 671 { <ESC>, "FUNC", 0 }, { <FK01>, "FUNC", 3.6 }, 672 { <FK02>, "FUNC", 3.5 }, { <FK03>, "FUNC", 3.6 }, 673 { <FK04>, "FUNC", 3.5 }, { <FK05>, "FUNC", 3.6 }, [all …]
|
/third_party/XKeyboardConfig/build/usr/local/share/X11/xkb/geometry/ |
D | macintosh | 195 shape "FUNC" { { [ 18, 21] }, { [2, 1], [ 16, 16] } }; 224 key.shape = "FUNC"; 338 shape "FUNC" { { [ 18,9] }, cornerRadius=1, { [2,1], [ 16,8] } }; 363 key.shape= "FUNC"; 457 shape "FUNC" { { [ 18,9] }, cornerRadius=1, { [2,1], [ 16,8] } }; 484 key.shape= "FUNC"; 583 shape "FUNC" { 671 { <ESC>, "FUNC", 0 }, { <FK01>, "FUNC", 3.6 }, 672 { <FK02>, "FUNC", 3.5 }, { <FK03>, "FUNC", 3.6 }, 673 { <FK04>, "FUNC", 3.5 }, { <FK05>, "FUNC", 3.6 }, [all …]
|
/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; \
|