/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_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 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 …]
|
D | cbs_sei_syntax_template.c | 19 static int FUNC(filler_payload) in FUNC() function 37 static int FUNC(user_data_registered) in FUNC() function 69 static int FUNC(user_data_unregistered) in FUNC() function 97 static int FUNC(mastering_display_colour_volume) in FUNC() function 119 static int FUNC(content_light_level_info) in FUNC() function 133 static int FUNC(alternative_transfer_characteristics) in FUNC() function 147 static int FUNC(message)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 230 static int FUNC(message_list)(CodedBitstreamContext *ctx, RWContext *rw, in FUNC() function 275 CHECK(FUNC(message)(ctx, &payload_gbc, message)); in FUNC() 313 err = FUNC(message)(ctx, rw, message); in FUNC()
|
/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/elfutils/tests/ |
D | run-dwflsyms.sh | 76 35: FUNC LOCAL deregister_tm_clones (0) 0x710, rel: 0x710 (.text) 77 36: FUNC LOCAL register_tm_clones (0) 0x740, rel: 0x740 (.text) 78 37: FUNC LOCAL __do_global_dtors_aux (0) 0x780, rel: 0x780 (.text) 81 40: FUNC LOCAL frame_dummy (0) 0x7c0, rel: 0x7c0 (.text) 86 45: FUNC LOCAL foo (20) 0x814, rel: 0x814 (.text) 95 54: FUNC GLOBAL __libc_csu_fini (2) 0x8f0, rel: 0x8f0 (.text) 99 58: FUNC GLOBAL bar (44) 0x828, rel: 0x828 (.text) 100 59: FUNC GLOBAL _fini (0) 0x8f4, rel: 0x8f4 (.fini) 101 60: FUNC GLOBAL __libc_start_main@@GLIBC_2.2.5 (0) 0 107 66: FUNC GLOBAL __libc_csu_init (137) 0x860, rel: 0x860 (.text) [all …]
|
D | run-readelf-s.sh | 133 3: 0000000000000000 0 FUNC GLOBAL DEFAULT UNDEF __libc_start_main@GLIBC_2.2.5 (2) 137 7: 0000000000000000 0 FUNC WEAK DEFAULT UNDEF __cxa_finalize@GLIBC_2.2.5 (2) 140 10: 0000000000000860 137 FUNC GLOBAL DEFAULT 13 __libc_csu_init 142 12: 00000000000007f0 35 FUNC GLOBAL DEFAULT 13 main 143 13: 00000000000008f0 2 FUNC GLOBAL DEFAULT 13 __libc_csu_fini 186 35: 0000000000000710 0 FUNC LOCAL DEFAULT 13 deregister_tm_clones 187 36: 0000000000000740 0 FUNC LOCAL DEFAULT 13 register_tm_clones 188 37: 0000000000000780 0 FUNC LOCAL DEFAULT 13 __do_global_dtors_aux 191 40: 00000000000007c0 0 FUNC LOCAL DEFAULT 13 frame_dummy 196 45: 0000000000000814 20 FUNC LOCAL DEFAULT 13 foo [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/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 …]
|
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 …]
|
/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 …]
|
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 …]
|
/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; \
|