/src/ffmpeg/libavutil/bswap.h
Line | Count | Source |
1 | | /* |
2 | | * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> |
3 | | * |
4 | | * This file is part of FFmpeg. |
5 | | * |
6 | | * FFmpeg is free software; you can redistribute it and/or |
7 | | * modify it under the terms of the GNU Lesser General Public |
8 | | * License as published by the Free Software Foundation; either |
9 | | * version 2.1 of the License, or (at your option) any later version. |
10 | | * |
11 | | * FFmpeg is distributed in the hope that it will be useful, |
12 | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | | * Lesser General Public License for more details. |
15 | | * |
16 | | * You should have received a copy of the GNU Lesser General Public |
17 | | * License along with FFmpeg; if not, write to the Free Software |
18 | | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
19 | | */ |
20 | | |
21 | | /** |
22 | | * @file |
23 | | * byte swapping routines |
24 | | */ |
25 | | |
26 | | #ifndef AVUTIL_BSWAP_H |
27 | | #define AVUTIL_BSWAP_H |
28 | | |
29 | | #include <stdint.h> |
30 | | #include "libavutil/avconfig.h" |
31 | | #include "attributes.h" |
32 | | |
33 | | #ifdef HAVE_AV_CONFIG_H |
34 | | |
35 | | #include "config.h" |
36 | | |
37 | | #if ARCH_ARM |
38 | | # include "arm/bswap.h" |
39 | | #elif ARCH_RISCV |
40 | | # include "riscv/bswap.h" |
41 | | #elif ARCH_X86 |
42 | | # include "x86/bswap.h" |
43 | | #endif |
44 | | |
45 | | #endif /* HAVE_AV_CONFIG_H */ |
46 | | |
47 | 96.7G | #define AV_BSWAP16C(x) (((x) << 8 & 0xff00) | ((x) >> 8 & 0x00ff)) |
48 | 46.5G | #define AV_BSWAP32C(x) (AV_BSWAP16C(x) << 16 | AV_BSWAP16C((x) >> 16)) |
49 | | #define AV_BSWAP64C(x) (AV_BSWAP32C(x) << 32 | AV_BSWAP32C((x) >> 32)) |
50 | | |
51 | 444k | #define AV_BSWAPC(s, x) AV_BSWAP##s##C(x) |
52 | | |
53 | | #ifndef av_bswap16 |
54 | | static av_always_inline av_const uint16_t av_bswap16(uint16_t x) |
55 | 13.6G | { |
56 | 13.6G | x= (x>>8) | (x<<8); |
57 | 13.6G | return x; |
58 | 13.6G | } Unexecuted instantiation: target_enc_fuzzer.c:av_bswap16 Unexecuted instantiation: decode.c:av_bswap16 Unexecuted instantiation: exif.c:av_bswap16 Unexecuted instantiation: ituh263enc.c:av_bswap16 Unexecuted instantiation: mpegvideo_enc.c:av_bswap16 Unexecuted instantiation: mpegvideo_motion.c:av_bswap16 Unexecuted instantiation: msmpeg4enc.c:av_bswap16 Unexecuted instantiation: packet.c:av_bswap16 Unexecuted instantiation: pixblockdsp.c:av_bswap16 Unexecuted instantiation: ratecontrol.c:av_bswap16 Unexecuted instantiation: rv10enc.c:av_bswap16 Unexecuted instantiation: rv20enc.c:av_bswap16 Unexecuted instantiation: speedhqenc.c:av_bswap16 Line | Count | Source | 55 | 1.62M | { | 56 | 1.62M | x= (x>>8) | (x<<8); | 57 | 1.62M | return x; | 58 | 1.62M | } |
Unexecuted instantiation: utils.c:av_bswap16 Unexecuted instantiation: vlc.c:av_bswap16 Unexecuted instantiation: mpegvideoenc.c:av_bswap16 Line | Count | Source | 55 | 25.1M | { | 56 | 25.1M | x= (x>>8) | (x<<8); | 57 | 25.1M | return x; | 58 | 25.1M | } |
aac_adtstoasc.c:av_bswap16 Line | Count | Source | 55 | 32.3k | { | 56 | 32.3k | x= (x>>8) | (x<<8); | 57 | 32.3k | return x; | 58 | 32.3k | } |
Unexecuted instantiation: dca_core.c:av_bswap16 Unexecuted instantiation: dovi_rpu.c:av_bswap16 Unexecuted instantiation: dts2pts.c:av_bswap16 Unexecuted instantiation: dv_error_marker.c:av_bswap16 Unexecuted instantiation: eac3_core.c:av_bswap16 eia608_to_smpte436m.c:av_bswap16 Line | Count | Source | 55 | 14.5k | { | 56 | 14.5k | x= (x>>8) | (x<<8); | 57 | 14.5k | return x; | 58 | 14.5k | } |
Unexecuted instantiation: evc_frame_merge.c:av_bswap16 Unexecuted instantiation: extract_extradata.c:av_bswap16 Unexecuted instantiation: h264_metadata.c:av_bswap16 h264_mp4toannexb.c:av_bswap16 Line | Count | Source | 55 | 3.85k | { | 56 | 3.85k | x= (x>>8) | (x<<8); | 57 | 3.85k | return x; | 58 | 3.85k | } |
Unexecuted instantiation: h264_redundant_pps.c:av_bswap16 Unexecuted instantiation: h265_metadata.c:av_bswap16 Unexecuted instantiation: h266_metadata.c:av_bswap16 Unexecuted instantiation: hapqa_extract.c:av_bswap16 hevc_mp4toannexb.c:av_bswap16 Line | Count | Source | 55 | 7.87k | { | 56 | 7.87k | x= (x>>8) | (x<<8); | 57 | 7.87k | return x; | 58 | 7.87k | } |
Unexecuted instantiation: imx_dump_header.c:av_bswap16 media100_to_mjpegb.c:av_bswap16 Line | Count | Source | 55 | 1.20M | { | 56 | 1.20M | x= (x>>8) | (x<<8); | 57 | 1.20M | return x; | 58 | 1.20M | } |
Line | Count | Source | 55 | 4.19k | { | 56 | 4.19k | x= (x>>8) | (x<<8); | 57 | 4.19k | return x; | 58 | 4.19k | } |
mjpega_dump_header.c:av_bswap16 Line | Count | Source | 55 | 13.9k | { | 56 | 13.9k | x= (x>>8) | (x<<8); | 57 | 13.9k | return x; | 58 | 13.9k | } |
Line | Count | Source | 55 | 11.0k | { | 56 | 11.0k | x= (x>>8) | (x<<8); | 57 | 11.0k | return x; | 58 | 11.0k | } |
Unexecuted instantiation: opus_metadata.c:av_bswap16 pgs_frame_merge.c:av_bswap16 Line | Count | Source | 55 | 351k | { | 56 | 351k | x= (x>>8) | (x<<8); | 57 | 351k | return x; | 58 | 351k | } |
prores_metadata.c:av_bswap16 Line | Count | Source | 55 | 1.23k | { | 56 | 1.23k | x= (x>>8) | (x<<8); | 57 | 1.23k | return x; | 58 | 1.23k | } |
Unexecuted instantiation: remove_extradata.c:av_bswap16 Line | Count | Source | 55 | 14.2k | { | 56 | 14.2k | x= (x>>8) | (x<<8); | 57 | 14.2k | return x; | 58 | 14.2k | } |
Unexecuted instantiation: vp9_raw_reorder.c:av_bswap16 Unexecuted instantiation: vp9_superframe.c:av_bswap16 Unexecuted instantiation: vp9_superframe_split.c:av_bswap16 vvc_mp4toannexb.c:av_bswap16 Line | Count | Source | 55 | 896k | { | 56 | 896k | x= (x>>8) | (x<<8); | 57 | 896k | return x; | 58 | 896k | } |
Unexecuted instantiation: cbs.c:av_bswap16 Unexecuted instantiation: cbs_apv.c:av_bswap16 Unexecuted instantiation: cbs_av1.c:av_bswap16 Line | Count | Source | 55 | 90.7k | { | 56 | 90.7k | x= (x>>8) | (x<<8); | 57 | 90.7k | return x; | 58 | 90.7k | } |
Unexecuted instantiation: cbs_mpeg2.c:av_bswap16 Unexecuted instantiation: cbs_sei.c:av_bswap16 Unexecuted instantiation: cbs_vp8.c:av_bswap16 Unexecuted instantiation: cbs_vp9.c:av_bswap16 Unexecuted instantiation: dovi_rpudec.c:av_bswap16 Unexecuted instantiation: dovi_rpuenc.c:av_bswap16 Unexecuted instantiation: evc_parse.c:av_bswap16 Unexecuted instantiation: evc_ps.c:av_bswap16 Unexecuted instantiation: flvenc.c:av_bswap16 Unexecuted instantiation: h261enc.c:av_bswap16 Unexecuted instantiation: h2645_parse.c:av_bswap16 Line | Count | Source | 55 | 17.3k | { | 56 | 17.3k | x= (x>>8) | (x<<8); | 57 | 17.3k | return x; | 58 | 17.3k | } |
Unexecuted instantiation: h264_ps.c:av_bswap16 Unexecuted instantiation: h264data.c:av_bswap16 Unexecuted instantiation: h265_profile_level.c:av_bswap16 Unexecuted instantiation: hap.c:av_bswap16 Unexecuted instantiation: jfdctint.c:av_bswap16 Unexecuted instantiation: jrevdct.c:av_bswap16 Unexecuted instantiation: me_cmp.c:av_bswap16 Unexecuted instantiation: mjpegenc.c:av_bswap16 mjpegenc_common.c:av_bswap16 Line | Count | Source | 55 | 20.5k | { | 56 | 20.5k | x= (x>>8) | (x<<8); | 57 | 20.5k | return x; | 58 | 20.5k | } |
Unexecuted instantiation: mlp.c:av_bswap16 Unexecuted instantiation: mlp_parse.c:av_bswap16 Unexecuted instantiation: motion_est.c:av_bswap16 Unexecuted instantiation: mpeg12.c:av_bswap16 Unexecuted instantiation: mpeg12enc.c:av_bswap16 Unexecuted instantiation: mpeg4audio.c:av_bswap16 Unexecuted instantiation: mpeg4videodec.c:av_bswap16 Unexecuted instantiation: mpeg4videoenc.c:av_bswap16 Unexecuted instantiation: mpegvideo.c:av_bswap16 Unexecuted instantiation: mpegvideo_dec.c:av_bswap16 Unexecuted instantiation: qpeldsp.c:av_bswap16 Unexecuted instantiation: simple_idct.c:av_bswap16 Line | Count | Source | 55 | 466k | { | 56 | 466k | x= (x>>8) | (x<<8); | 57 | 466k | return x; | 58 | 466k | } |
Unexecuted instantiation: videodsp.c:av_bswap16 Unexecuted instantiation: wmv2dec.c:av_bswap16 Unexecuted instantiation: me_cmp_init.c:av_bswap16 Unexecuted instantiation: ac3_parser.c:av_bswap16 Unexecuted instantiation: adts_header.c:av_bswap16 Unexecuted instantiation: av1_parse.c:av_bswap16 Unexecuted instantiation: h263dec.c:av_bswap16 Unexecuted instantiation: h2645_vui.c:av_bswap16 Unexecuted instantiation: h264chroma.c:av_bswap16 Unexecuted instantiation: hpeldsp.c:av_bswap16 Unexecuted instantiation: intelh263dec.c:av_bswap16 Unexecuted instantiation: intrax8.c:av_bswap16 Unexecuted instantiation: intrax8dsp.c:av_bswap16 Unexecuted instantiation: ituh263dec.c:av_bswap16 Unexecuted instantiation: mpeg_er.c:av_bswap16 Unexecuted instantiation: msmpeg4dec.c:av_bswap16 prores_raw_parser.c:av_bswap16 Line | Count | Source | 55 | 55.2k | { | 56 | 55.2k | x= (x>>8) | (x<<8); | 57 | 55.2k | return x; | 58 | 55.2k | } |
Unexecuted instantiation: rv10.c:av_bswap16 Unexecuted instantiation: rv34_parser.c:av_bswap16 Unexecuted instantiation: tak_parser.c:av_bswap16 Unexecuted instantiation: vc1_parser.c:av_bswap16 Unexecuted instantiation: vc1dsp.c:av_bswap16 Unexecuted instantiation: vorbis_parser.c:av_bswap16 Unexecuted instantiation: vp8_parser.c:av_bswap16 Unexecuted instantiation: vp9_parser.c:av_bswap16 Unexecuted instantiation: vvc_parser.c:av_bswap16 Unexecuted instantiation: webp_parser.c:av_bswap16 Line | Count | Source | 55 | 104k | { | 56 | 104k | x= (x>>8) | (x<<8); | 57 | 104k | return x; | 58 | 104k | } |
Unexecuted instantiation: xwd_parser.c:av_bswap16 Unexecuted instantiation: aac_ac3_parser.c:av_bswap16 Unexecuted instantiation: aac_parser.c:av_bswap16 Unexecuted instantiation: adx_parser.c:av_bswap16 Unexecuted instantiation: amr_parser.c:av_bswap16 Unexecuted instantiation: av1_parser.c:av_bswap16 Unexecuted instantiation: avs2_parser.c:av_bswap16 Unexecuted instantiation: avs3_parser.c:av_bswap16 Unexecuted instantiation: bmp_parser.c:av_bswap16 Unexecuted instantiation: cavs_parser.c:av_bswap16 Line | Count | Source | 55 | 95 | { | 56 | 95 | x= (x>>8) | (x<<8); | 57 | 95 | return x; | 58 | 95 | } |
Unexecuted instantiation: cri_parser.c:av_bswap16 Unexecuted instantiation: dca_parser.c:av_bswap16 Unexecuted instantiation: dirac_parser.c:av_bswap16 Unexecuted instantiation: dnxhd_parser.c:av_bswap16 Unexecuted instantiation: dnxhddata.c:av_bswap16 Unexecuted instantiation: dnxuc_parser.c:av_bswap16 Unexecuted instantiation: dolby_e_parser.c:av_bswap16 Unexecuted instantiation: dpx_parser.c:av_bswap16 dvbsub_parser.c:av_bswap16 Line | Count | Source | 55 | 11.5k | { | 56 | 11.5k | x= (x>>8) | (x<<8); | 57 | 11.5k | return x; | 58 | 11.5k | } |
Unexecuted instantiation: dvd_nav_parser.c:av_bswap16 dvdsub_parser.c:av_bswap16 Line | Count | Source | 55 | 12.0k | { | 56 | 12.0k | x= (x>>8) | (x<<8); | 57 | 12.0k | return x; | 58 | 12.0k | } |
Line | Count | Source | 55 | 446 | { | 56 | 446 | x= (x>>8) | (x<<8); | 57 | 446 | return x; | 58 | 446 | } |
Unexecuted instantiation: ffv1_parser.c:av_bswap16 Line | Count | Source | 55 | 117M | { | 56 | 117M | x= (x>>8) | (x<<8); | 57 | 117M | return x; | 58 | 117M | } |
Unexecuted instantiation: flvdec.c:av_bswap16 Unexecuted instantiation: ftr_parser.c:av_bswap16 Unexecuted instantiation: h264_parser.c:av_bswap16 Line | Count | Source | 55 | 2.90k | { | 56 | 2.90k | x= (x>>8) | (x<<8); | 57 | 2.90k | return x; | 58 | 2.90k | } |
Unexecuted instantiation: h264dsp.c:av_bswap16 Unexecuted instantiation: h264idct.c:av_bswap16 Unexecuted instantiation: h264qpel.c:av_bswap16 Unexecuted instantiation: hdr_parser.c:av_bswap16 Line | Count | Source | 55 | 126k | { | 56 | 126k | x= (x>>8) | (x<<8); | 57 | 126k | return x; | 58 | 126k | } |
Unexecuted instantiation: ps.c:av_bswap16 Unexecuted instantiation: sei.c:av_bswap16 Unexecuted instantiation: jpegxl_parser.c:av_bswap16 Unexecuted instantiation: mlp_parser.c:av_bswap16 Unexecuted instantiation: mpeg4video_parser.c:av_bswap16 Line | Count | Source | 55 | 753k | { | 56 | 753k | x= (x>>8) | (x<<8); | 57 | 753k | return x; | 58 | 753k | } |
Unexecuted instantiation: startcode.c:av_bswap16 Unexecuted instantiation: tak.c:av_bswap16 Unexecuted instantiation: vc1.c:av_bswap16 Unexecuted instantiation: vc1data.c:av_bswap16 Line | Count | Source | 55 | 24.4M | { | 56 | 24.4M | x= (x>>8) | (x<<8); | 57 | 24.4M | return x; | 58 | 24.4M | } |
Unexecuted instantiation: dca_exss.c:av_bswap16 dolby_e_parse.c:av_bswap16 Line | Count | Source | 55 | 5.80M | { | 56 | 5.80M | x= (x>>8) | (x<<8); | 57 | 5.80M | return x; | 58 | 5.80M | } |
Unexecuted instantiation: ffv1.c:av_bswap16 Unexecuted instantiation: ffv1_parse.c:av_bswap16 Unexecuted instantiation: flac.c:av_bswap16 Line | Count | Source | 55 | 470k | { | 56 | 470k | x= (x>>8) | (x<<8); | 57 | 470k | return x; | 58 | 470k | } |
Line | Count | Source | 55 | 5.12k | { | 56 | 5.12k | x= (x>>8) | (x<<8); | 57 | 5.12k | return x; | 58 | 5.12k | } |
Unexecuted instantiation: jpegxl_parse.c:av_bswap16 Unexecuted instantiation: aom_film_grain.c:av_bswap16 Unexecuted instantiation: atsc_a53.c:av_bswap16 Unexecuted instantiation: dynamic_hdr_vivid.c:av_bswap16 Unexecuted instantiation: adler32.c:av_bswap16 Unexecuted instantiation: crc.c:av_bswap16 Unexecuted instantiation: hdr_dynamic_metadata.c:av_bswap16 Unexecuted instantiation: imgutils.c:av_bswap16 Unexecuted instantiation: mem.c:av_bswap16 Unexecuted instantiation: pixdesc.c:av_bswap16 Unexecuted instantiation: random_seed.c:av_bswap16 Unexecuted instantiation: sha.c:av_bswap16 Unexecuted instantiation: target_dem_fuzzer.c:av_bswap16 Unexecuted instantiation: alp.c:av_bswap16 Unexecuted instantiation: amr.c:av_bswap16 Unexecuted instantiation: anm.c:av_bswap16 Unexecuted instantiation: apac.c:av_bswap16 Unexecuted instantiation: ape.c:av_bswap16 Unexecuted instantiation: apm.c:av_bswap16 Unexecuted instantiation: apngdec.c:av_bswap16 Line | Count | Source | 55 | 584 | { | 56 | 584 | x= (x>>8) | (x<<8); | 57 | 584 | return x; | 58 | 584 | } |
Unexecuted instantiation: argo_asf.c:av_bswap16 Unexecuted instantiation: argo_brp.c:av_bswap16 Unexecuted instantiation: argo_cvg.c:av_bswap16 Unexecuted instantiation: asfdec_f.c:av_bswap16 Line | Count | Source | 55 | 2.31k | { | 56 | 2.31k | x= (x>>8) | (x<<8); | 57 | 2.31k | return x; | 58 | 2.31k | } |
Unexecuted instantiation: au.c:av_bswap16 Unexecuted instantiation: av1dec.c:av_bswap16 Unexecuted instantiation: avformat.c:av_bswap16 Unexecuted instantiation: avidec.c:av_bswap16 Unexecuted instantiation: aviobuf.c:av_bswap16 Line | Count | Source | 55 | 1.96k | { | 56 | 1.96k | x= (x>>8) | (x<<8); | 57 | 1.96k | return x; | 58 | 1.96k | } |
Unexecuted instantiation: avs2dec.c:av_bswap16 Unexecuted instantiation: bethsoftvid.c:av_bswap16 Unexecuted instantiation: bfi.c:av_bswap16 Unexecuted instantiation: bink.c:av_bswap16 Unexecuted instantiation: binka.c:av_bswap16 Unexecuted instantiation: bintext.c:av_bswap16 Unexecuted instantiation: bit.c:av_bswap16 Unexecuted instantiation: boadec.c:av_bswap16 Unexecuted instantiation: bonk.c:av_bswap16 Unexecuted instantiation: brstm.c:av_bswap16 Unexecuted instantiation: c93.c:av_bswap16 Line | Count | Source | 55 | 590 | { | 56 | 590 | x= (x>>8) | (x<<8); | 57 | 590 | return x; | 58 | 590 | } |
Line | Count | Source | 55 | 3.16M | { | 56 | 3.16M | x= (x>>8) | (x<<8); | 57 | 3.16M | return x; | 58 | 3.16M | } |
Unexecuted instantiation: cinedec.c:av_bswap16 Line | Count | Source | 55 | 532 | { | 56 | 532 | x= (x>>8) | (x<<8); | 57 | 532 | return x; | 58 | 532 | } |
Unexecuted instantiation: concatdec.c:av_bswap16 Unexecuted instantiation: demux.c:av_bswap16 Unexecuted instantiation: demux_utils.c:av_bswap16 Unexecuted instantiation: derf.c:av_bswap16 Unexecuted instantiation: dfa.c:av_bswap16 Unexecuted instantiation: dhav.c:av_bswap16 Line | Count | Source | 55 | 110k | { | 56 | 110k | x= (x>>8) | (x<<8); | 57 | 110k | return x; | 58 | 110k | } |
Unexecuted instantiation: dsfdec.c:av_bswap16 Unexecuted instantiation: dsicin.c:av_bswap16 Unexecuted instantiation: dss.c:av_bswap16 Line | Count | Source | 55 | 1.34G | { | 56 | 1.34G | x= (x>>8) | (x<<8); | 57 | 1.34G | return x; | 58 | 1.34G | } |
Unexecuted instantiation: dtshddec.c:av_bswap16 Unexecuted instantiation: dump.c:av_bswap16 Unexecuted instantiation: dv.c:av_bswap16 Line | Count | Source | 55 | 12.1M | { | 56 | 12.1M | x= (x>>8) | (x<<8); | 57 | 12.1M | return x; | 58 | 12.1M | } |
Line | Count | Source | 55 | 1.57M | { | 56 | 1.57M | x= (x>>8) | (x<<8); | 57 | 1.57M | return x; | 58 | 1.57M | } |
Unexecuted instantiation: electronicarts.c:av_bswap16 Unexecuted instantiation: epafdec.c:av_bswap16 Unexecuted instantiation: evcdec.c:av_bswap16 Unexecuted instantiation: filmstripdec.c:av_bswap16 Line | Count | Source | 55 | 2.42M | { | 56 | 2.42M | x= (x>>8) | (x<<8); | 57 | 2.42M | return x; | 58 | 2.42M | } |
Unexecuted instantiation: flic.c:av_bswap16 Unexecuted instantiation: frmdec.c:av_bswap16 Unexecuted instantiation: fsb.c:av_bswap16 Unexecuted instantiation: fwse.c:av_bswap16 Unexecuted instantiation: gdv.c:av_bswap16 Unexecuted instantiation: genh.c:av_bswap16 Unexecuted instantiation: gifdec.c:av_bswap16 Line | Count | Source | 55 | 3.47G | { | 56 | 3.47G | x= (x>>8) | (x<<8); | 57 | 3.47G | return x; | 58 | 3.47G | } |
Line | Count | Source | 55 | 2.54k | { | 56 | 2.54k | x= (x>>8) | (x<<8); | 57 | 2.54k | return x; | 58 | 2.54k | } |
Line | Count | Source | 55 | 6.69k | { | 56 | 6.69k | x= (x>>8) | (x<<8); | 57 | 6.69k | return x; | 58 | 6.69k | } |
Unexecuted instantiation: hls.c:av_bswap16 Unexecuted instantiation: hls_sample_encryption.c:av_bswap16 Unexecuted instantiation: hnm.c:av_bswap16 Unexecuted instantiation: iamfdec.c:av_bswap16 Unexecuted instantiation: icodec.c:av_bswap16 Unexecuted instantiation: id3v2.c:av_bswap16 Unexecuted instantiation: idcin.c:av_bswap16 Unexecuted instantiation: idroqdec.c:av_bswap16 Line | Count | Source | 55 | 100M | { | 56 | 100M | x= (x>>8) | (x<<8); | 57 | 100M | return x; | 58 | 100M | } |
Unexecuted instantiation: imfdec.c:av_bswap16 img2_alias_pix.c:av_bswap16 Line | Count | Source | 55 | 4.70M | { | 56 | 4.70M | x= (x>>8) | (x<<8); | 57 | 4.70M | return x; | 58 | 4.70M | } |
Unexecuted instantiation: img2_brender_pix.c:av_bswap16 Line | Count | Source | 55 | 4.73M | { | 56 | 4.73M | x= (x>>8) | (x<<8); | 57 | 4.73M | return x; | 58 | 4.73M | } |
Unexecuted instantiation: imx.c:av_bswap16 ingenientdec.c:av_bswap16 Line | Count | Source | 55 | 290 | { | 56 | 290 | x= (x>>8) | (x<<8); | 57 | 290 | return x; | 58 | 290 | } |
Unexecuted instantiation: ipmovie.c:av_bswap16 Unexecuted instantiation: ipudec.c:av_bswap16 Unexecuted instantiation: ircamdec.c:av_bswap16 Unexecuted instantiation: isom.c:av_bswap16 Unexecuted instantiation: ivfdec.c:av_bswap16 Unexecuted instantiation: jacosubdec.c:av_bswap16 Unexecuted instantiation: jpegxl_anim_dec.c:av_bswap16 Unexecuted instantiation: jvdec.c:av_bswap16 Unexecuted instantiation: kvag.c:av_bswap16 Unexecuted instantiation: lafdec.c:av_bswap16 Line | Count | Source | 55 | 806k | { | 56 | 806k | x= (x>>8) | (x<<8); | 57 | 806k | return x; | 58 | 806k | } |
Line | Count | Source | 55 | 1.84M | { | 56 | 1.84M | x= (x>>8) | (x<<8); | 57 | 1.84M | return x; | 58 | 1.84M | } |
Unexecuted instantiation: loasdec.c:av_bswap16 Unexecuted instantiation: luodatdec.c:av_bswap16 Unexecuted instantiation: lvfdec.c:av_bswap16 Unexecuted instantiation: lxfdec.c:av_bswap16 Line | Count | Source | 55 | 402k | { | 56 | 402k | x= (x>>8) | (x<<8); | 57 | 402k | return x; | 58 | 402k | } |
Unexecuted instantiation: mca.c:av_bswap16 Unexecuted instantiation: mccdec.c:av_bswap16 Unexecuted instantiation: mgsts.c:av_bswap16 Unexecuted instantiation: microdvddec.c:av_bswap16 Line | Count | Source | 55 | 99.5k | { | 56 | 99.5k | x= (x>>8) | (x<<8); | 57 | 99.5k | return x; | 58 | 99.5k | } |
Line | Count | Source | 55 | 6.33M | { | 56 | 6.33M | x= (x>>8) | (x<<8); | 57 | 6.33M | return x; | 58 | 6.33M | } |
Unexecuted instantiation: mlvdec.c:av_bswap16 Unexecuted instantiation: mm.c:av_bswap16 Unexecuted instantiation: mods.c:av_bswap16 Line | Count | Source | 55 | 918k | { | 56 | 918k | x= (x>>8) | (x<<8); | 57 | 918k | return x; | 58 | 918k | } |
Line | Count | Source | 55 | 890 | { | 56 | 890 | x= (x>>8) | (x<<8); | 57 | 890 | return x; | 58 | 890 | } |
Unexecuted instantiation: mp3dec.c:av_bswap16 Unexecuted instantiation: mpc8.c:av_bswap16 Line | Count | Source | 55 | 8.24M | { | 56 | 8.24M | x= (x>>8) | (x<<8); | 57 | 8.24M | return x; | 58 | 8.24M | } |
Line | Count | Source | 55 | 90.2M | { | 56 | 90.2M | x= (x>>8) | (x<<8); | 57 | 90.2M | return x; | 58 | 90.2M | } |
Unexecuted instantiation: mpegvideodec.c:av_bswap16 Unexecuted instantiation: mpl2dec.c:av_bswap16 Unexecuted instantiation: msf.c:av_bswap16 Unexecuted instantiation: msnwc_tcp.c:av_bswap16 Unexecuted instantiation: mspdec.c:av_bswap16 Unexecuted instantiation: mtaf.c:av_bswap16 Unexecuted instantiation: mtv.c:av_bswap16 Unexecuted instantiation: musx.c:av_bswap16 Line | Count | Source | 55 | 819 | { | 56 | 819 | x= (x>>8) | (x<<8); | 57 | 819 | return x; | 58 | 819 | } |
Line | Count | Source | 55 | 695k | { | 56 | 695k | x= (x>>8) | (x<<8); | 57 | 695k | return x; | 58 | 695k | } |
Line | Count | Source | 55 | 72.6k | { | 56 | 72.6k | x= (x>>8) | (x<<8); | 57 | 72.6k | return x; | 58 | 72.6k | } |
Unexecuted instantiation: ncdec.c:av_bswap16 Unexecuted instantiation: nistspheredec.c:av_bswap16 Unexecuted instantiation: nspdec.c:av_bswap16 Unexecuted instantiation: nsvdec.c:av_bswap16 Unexecuted instantiation: nutdec.c:av_bswap16 Unexecuted instantiation: nuv.c:av_bswap16 Unexecuted instantiation: oggdec.c:av_bswap16 Unexecuted instantiation: oggparsecelt.c:av_bswap16 Unexecuted instantiation: oggparsedirac.c:av_bswap16 Unexecuted instantiation: oggparseflac.c:av_bswap16 Unexecuted instantiation: oggparseogm.c:av_bswap16 Unexecuted instantiation: oggparseopus.c:av_bswap16 Unexecuted instantiation: oggparseskeleton.c:av_bswap16 Unexecuted instantiation: oggparsespeex.c:av_bswap16 Unexecuted instantiation: oggparsetheora.c:av_bswap16 Unexecuted instantiation: oggparsevorbis.c:av_bswap16 Line | Count | Source | 55 | 2.65k | { | 56 | 2.65k | x= (x>>8) | (x<<8); | 57 | 2.65k | return x; | 58 | 2.65k | } |
Line | Count | Source | 55 | 3.81k | { | 56 | 3.81k | x= (x>>8) | (x<<8); | 57 | 3.81k | return x; | 58 | 3.81k | } |
Unexecuted instantiation: osq.c:av_bswap16 Unexecuted instantiation: pmpdec.c:av_bswap16 Unexecuted instantiation: pp_bnk.c:av_bswap16 Unexecuted instantiation: psxstr.c:av_bswap16 Line | Count | Source | 55 | 1.85M | { | 56 | 1.85M | x= (x>>8) | (x<<8); | 57 | 1.85M | return x; | 58 | 1.85M | } |
Unexecuted instantiation: qcp.c:av_bswap16 Line | Count | Source | 55 | 1.62M | { | 56 | 1.62M | x= (x>>8) | (x<<8); | 57 | 1.62M | return x; | 58 | 1.62M | } |
Unexecuted instantiation: r3d.c:av_bswap16 Line | Count | Source | 55 | 807k | { | 56 | 807k | x= (x>>8) | (x<<8); | 57 | 807k | return x; | 58 | 807k | } |
Unexecuted instantiation: redspark.c:av_bswap16 Unexecuted instantiation: replaygain.c:av_bswap16 Unexecuted instantiation: riffdec.c:av_bswap16 Unexecuted instantiation: rka.c:av_bswap16 Unexecuted instantiation: rl2.c:av_bswap16 Unexecuted instantiation: rmdec.c:av_bswap16 Unexecuted instantiation: rsd.c:av_bswap16 Unexecuted instantiation: rsodec.c:av_bswap16 Unexecuted instantiation: s337m.c:av_bswap16 Unexecuted instantiation: sbgdec.c:av_bswap16 Unexecuted instantiation: sccdec.c:av_bswap16 Line | Count | Source | 55 | 1.75k | { | 56 | 1.75k | x= (x>>8) | (x<<8); | 57 | 1.75k | return x; | 58 | 1.75k | } |
Unexecuted instantiation: sdns.c:av_bswap16 Unexecuted instantiation: sdr2.c:av_bswap16 Unexecuted instantiation: sdsdec.c:av_bswap16 Unexecuted instantiation: sdxdec.c:av_bswap16 Line | Count | Source | 55 | 544 | { | 56 | 544 | x= (x>>8) | (x<<8); | 57 | 544 | return x; | 58 | 544 | } |
Line | Count | Source | 55 | 5.75M | { | 56 | 5.75M | x= (x>>8) | (x<<8); | 57 | 5.75M | return x; | 58 | 5.75M | } |
Unexecuted instantiation: shortendec.c:av_bswap16 Unexecuted instantiation: sierravmd.c:av_bswap16 Unexecuted instantiation: siff.c:av_bswap16 Unexecuted instantiation: smush.c:av_bswap16 Unexecuted instantiation: sol.c:av_bswap16 Unexecuted instantiation: soxdec.c:av_bswap16 Line | Count | Source | 55 | 132M | { | 56 | 132M | x= (x>>8) | (x<<8); | 57 | 132M | return x; | 58 | 132M | } |
Unexecuted instantiation: spdifdec.c:av_bswap16 Unexecuted instantiation: srtdec.c:av_bswap16 Unexecuted instantiation: stldec.c:av_bswap16 Unexecuted instantiation: subviewerdec.c:av_bswap16 Line | Count | Source | 55 | 1.13M | { | 56 | 1.13M | x= (x>>8) | (x<<8); | 57 | 1.13M | return x; | 58 | 1.13M | } |
Unexecuted instantiation: svs.c:av_bswap16 Unexecuted instantiation: swfdec.c:av_bswap16 Unexecuted instantiation: takdec.c:av_bswap16 Unexecuted instantiation: thp.c:av_bswap16 Unexecuted instantiation: tmv.c:av_bswap16 Unexecuted instantiation: tta.c:av_bswap16 Unexecuted instantiation: tty.c:av_bswap16 Unexecuted instantiation: txd.c:av_bswap16 Line | Count | Source | 55 | 2.87k | { | 56 | 2.87k | x= (x>>8) | (x<<8); | 57 | 2.87k | return x; | 58 | 2.87k | } |
Line | Count | Source | 55 | 69.2k | { | 56 | 69.2k | x= (x>>8) | (x<<8); | 57 | 69.2k | return x; | 58 | 69.2k | } |
Unexecuted instantiation: vc1dec.c:av_bswap16 Unexecuted instantiation: vc1test.c:av_bswap16 Unexecuted instantiation: vividas.c:av_bswap16 Unexecuted instantiation: voc_packet.c:av_bswap16 Unexecuted instantiation: vocdec.c:av_bswap16 Unexecuted instantiation: vpk.c:av_bswap16 Unexecuted instantiation: vqf.c:av_bswap16 Unexecuted instantiation: wady.c:av_bswap16 Unexecuted instantiation: wavdec.c:av_bswap16 Unexecuted instantiation: wc3movie.c:av_bswap16 Unexecuted instantiation: webvttdec.c:av_bswap16 Unexecuted instantiation: westwood_aud.c:av_bswap16 Unexecuted instantiation: westwood_vqa.c:av_bswap16 Unexecuted instantiation: wsddec.c:av_bswap16 Unexecuted instantiation: wtvdec.c:av_bswap16 Unexecuted instantiation: wvdec.c:av_bswap16 Unexecuted instantiation: xa.c:av_bswap16 Unexecuted instantiation: xmd.c:av_bswap16 Unexecuted instantiation: xmv.c:av_bswap16 Unexecuted instantiation: xvag.c:av_bswap16 Line | Count | Source | 55 | 1.84M | { | 56 | 1.84M | x= (x>>8) | (x<<8); | 57 | 1.84M | return x; | 58 | 1.84M | } |
Unexecuted instantiation: 3dostr.c:av_bswap16 Unexecuted instantiation: 4xm.c:av_bswap16 Line | Count | Source | 55 | 2.46G | { | 56 | 2.46G | x= (x>>8) | (x<<8); | 57 | 2.46G | return x; | 58 | 2.46G | } |
Unexecuted instantiation: aadec.c:av_bswap16 Line | Count | Source | 55 | 648 | { | 56 | 648 | x= (x>>8) | (x<<8); | 57 | 648 | return x; | 58 | 648 | } |
Unexecuted instantiation: acedec.c:av_bswap16 Unexecuted instantiation: acm.c:av_bswap16 Unexecuted instantiation: act.c:av_bswap16 Unexecuted instantiation: adp.c:av_bswap16 Line | Count | Source | 55 | 1.67M | { | 56 | 1.67M | x= (x>>8) | (x<<8); | 57 | 1.67M | return x; | 58 | 1.67M | } |
Unexecuted instantiation: aeadec.c:av_bswap16 Unexecuted instantiation: aiffdec.c:av_bswap16 Unexecuted instantiation: aixdec.c:av_bswap16 Unexecuted instantiation: asfcrypt.c:av_bswap16 Unexecuted instantiation: dash.c:av_bswap16 Unexecuted instantiation: dovi_isom.c:av_bswap16 Unexecuted instantiation: flac_picture.c:av_bswap16 Line | Count | Source | 55 | 644 | { | 56 | 644 | x= (x>>8) | (x<<8); | 57 | 644 | return x; | 58 | 644 | } |
Unexecuted instantiation: iamf_reader.c:av_bswap16 Unexecuted instantiation: wv.c:av_bswap16 Unexecuted instantiation: dirac.c:av_bswap16 Unexecuted instantiation: dv_profile.c:av_bswap16 Unexecuted instantiation: aes.c:av_bswap16 Unexecuted instantiation: aes_ctr.c:av_bswap16 Unexecuted instantiation: base64.c:av_bswap16 Unexecuted instantiation: des.c:av_bswap16 Unexecuted instantiation: encryption_info.c:av_bswap16 Unexecuted instantiation: lzo.c:av_bswap16 Unexecuted instantiation: tea.c:av_bswap16 Unexecuted instantiation: target_dec_fuzzer.c:av_bswap16 Unexecuted instantiation: atrac9dec.c:av_bswap16 Unexecuted instantiation: lfg.c:av_bswap16 Unexecuted instantiation: md5.c:av_bswap16 Line | Count | Source | 55 | 27.9M | { | 56 | 27.9M | x= (x>>8) | (x<<8); | 57 | 27.9M | return x; | 58 | 27.9M | } |
libtheoraenc.c:av_bswap16 Line | Count | Source | 55 | 10.2k | { | 56 | 10.2k | x= (x>>8) | (x<<8); | 57 | 10.2k | return x; | 58 | 10.2k | } |
Unexecuted instantiation: enc.c:av_bswap16 Unexecuted instantiation: enc_psy.c:av_bswap16 Unexecuted instantiation: pvq.c:av_bswap16 Unexecuted instantiation: rc.c:av_bswap16 Unexecuted instantiation: celt_pvq_init.c:av_bswap16 Unexecuted instantiation: celt.c:av_bswap16 Unexecuted instantiation: gsmdec.c:av_bswap16 Unexecuted instantiation: msgsmdec.c:av_bswap16 Unexecuted instantiation: sheervideo.c:av_bswap16 Unexecuted instantiation: imc.c:av_bswap16 Line | Count | Source | 55 | 5.43G | { | 56 | 5.43G | x= (x>>8) | (x<<8); | 57 | 5.43G | return x; | 58 | 5.43G | } |
Line | Count | Source | 55 | 11.5M | { | 56 | 11.5M | x= (x>>8) | (x<<8); | 57 | 11.5M | return x; | 58 | 11.5M | } |
Unexecuted instantiation: wmaenc.c:av_bswap16 Unexecuted instantiation: wma.c:av_bswap16 Unexecuted instantiation: target_bsf_fuzzer.c:av_bswap16 Line | Count | Source | 55 | 5.79M | { | 56 | 5.79M | x= (x>>8) | (x<<8); | 57 | 5.79M | return x; | 58 | 5.79M | } |
Line | Count | Source | 55 | 3.39M | { | 56 | 3.39M | x= (x>>8) | (x<<8); | 57 | 3.39M | return x; | 58 | 3.39M | } |
Unexecuted instantiation: cfhddata.c:av_bswap16 Line | Count | Source | 55 | 136k | { | 56 | 136k | x= (x>>8) | (x<<8); | 57 | 136k | return x; | 58 | 136k | } |
Unexecuted instantiation: escape130.c:av_bswap16 Line | Count | Source | 55 | 3.78M | { | 56 | 3.78M | x= (x>>8) | (x<<8); | 57 | 3.78M | return x; | 58 | 3.78M | } |
Unexecuted instantiation: alacenc.c:av_bswap16 Unexecuted instantiation: utvideodec.c:av_bswap16 Unexecuted instantiation: adpcmenc.c:av_bswap16 Unexecuted instantiation: asvdec.c:av_bswap16 Unexecuted instantiation: pnmenc.c:av_bswap16 Line | Count | Source | 55 | 272k | { | 56 | 272k | x= (x>>8) | (x<<8); | 57 | 272k | return x; | 58 | 272k | } |
Unexecuted instantiation: dirac_arith.c:av_bswap16 Unexecuted instantiation: libvpxdec.c:av_bswap16 Unexecuted instantiation: eac3enc.c:av_bswap16 Unexecuted instantiation: ac3enc.c:av_bswap16 Unexecuted instantiation: wmadec.c:av_bswap16 Unexecuted instantiation: aacenc.c:av_bswap16 Unexecuted instantiation: aaccoder.c:av_bswap16 Unexecuted instantiation: aacenc_is.c:av_bswap16 Unexecuted instantiation: aacenc_tns.c:av_bswap16 Unexecuted instantiation: bethsoftvideo.c:av_bswap16 Unexecuted instantiation: imm4.c:av_bswap16 Unexecuted instantiation: dxvenc.c:av_bswap16 Unexecuted instantiation: texturedspenc.c:av_bswap16 Unexecuted instantiation: exr.c:av_bswap16 Unexecuted instantiation: aacdec_fixed.c:av_bswap16 Unexecuted instantiation: aacdec_float.c:av_bswap16 Unexecuted instantiation: aacdec_tab.c:av_bswap16 Unexecuted instantiation: aacdec_usac.c:av_bswap16 Unexecuted instantiation: aacps_common.c:av_bswap16 Unexecuted instantiation: aacsbr.c:av_bswap16 Unexecuted instantiation: aacsbr_fixed.c:av_bswap16 Unexecuted instantiation: aacdec_ac.c:av_bswap16 Unexecuted instantiation: aacdec_lpd.c:av_bswap16 Unexecuted instantiation: aacps_fixed.c:av_bswap16 Unexecuted instantiation: aacps_float.c:av_bswap16 Unexecuted instantiation: ptx.c:av_bswap16 Unexecuted instantiation: mjpegdec.c:av_bswap16 Unexecuted instantiation: mjpegdec_common.c:av_bswap16 Unexecuted instantiation: jpeglsdec.c:av_bswap16 Unexecuted instantiation: lscrdec.c:av_bswap16 Line | Count | Source | 55 | 13.4k | { | 56 | 13.4k | x= (x>>8) | (x<<8); | 57 | 13.4k | return x; | 58 | 13.4k | } |
Unexecuted instantiation: pngdsp.c:av_bswap16 Unexecuted instantiation: msvideo1.c:av_bswap16 Line | Count | Source | 55 | 2.51k | { | 56 | 2.51k | x= (x>>8) | (x<<8); | 57 | 2.51k | return x; | 58 | 2.51k | } |
Unexecuted instantiation: rtsp.c:av_bswap16 Unexecuted instantiation: rtspdec.c:av_bswap16 Unexecuted instantiation: sapdec.c:av_bswap16 Unexecuted instantiation: udp.c:av_bswap16 Unexecuted instantiation: rdt.c:av_bswap16 Unexecuted instantiation: rtpdec.c:av_bswap16 Unexecuted instantiation: rtpdec_asf.c:av_bswap16 Unexecuted instantiation: rtpdec_h261.c:av_bswap16 Unexecuted instantiation: rtpdec_h263.c:av_bswap16 Unexecuted instantiation: rtpdec_h263_rfc2190.c:av_bswap16 Unexecuted instantiation: rtpdec_h264.c:av_bswap16 Unexecuted instantiation: rtpdec_jpeg.c:av_bswap16 Unexecuted instantiation: rtpdec_latm.c:av_bswap16 Unexecuted instantiation: rtpdec_mpa_robust.c:av_bswap16 Unexecuted instantiation: rtpdec_mpeg12.c:av_bswap16 Unexecuted instantiation: rtpdec_mpeg4.c:av_bswap16 Unexecuted instantiation: rtpdec_opus.c:av_bswap16 Unexecuted instantiation: rtpdec_qdm2.c:av_bswap16 Unexecuted instantiation: rtpdec_qt.c:av_bswap16 Unexecuted instantiation: rtpdec_svq3.c:av_bswap16 Unexecuted instantiation: rtpdec_vc2hq.c:av_bswap16 Unexecuted instantiation: rtpdec_vp8.c:av_bswap16 Unexecuted instantiation: rtpdec_vp9.c:av_bswap16 Unexecuted instantiation: rtpdec_xiph.c:av_bswap16 Unexecuted instantiation: srtp.c:av_bswap16 Unexecuted instantiation: h264_cavlc.c:av_bswap16 Unexecuted instantiation: h264_direct.c:av_bswap16 Unexecuted instantiation: h264_mb.c:av_bswap16 Unexecuted instantiation: h264_picture.c:av_bswap16 Unexecuted instantiation: h264_refs.c:av_bswap16 Unexecuted instantiation: h264_slice.c:av_bswap16 Unexecuted instantiation: h264pred.c:av_bswap16 Unexecuted instantiation: h274.c:av_bswap16 Unexecuted instantiation: h264_cabac.c:av_bswap16 Unexecuted instantiation: h264_loopfilter.c:av_bswap16 Unexecuted instantiation: sha512.c:av_bswap16 Unexecuted instantiation: bmp.c:av_bswap16 Line | Count | Source | 55 | 3.87k | { | 56 | 3.87k | x= (x>>8) | (x<<8); | 57 | 3.87k | return x; | 58 | 3.87k | } |
Unexecuted instantiation: sbcenc.c:av_bswap16 Unexecuted instantiation: sbcdsp.c:av_bswap16 Line | Count | Source | 55 | 5.83M | { | 56 | 5.83M | x= (x>>8) | (x<<8); | 57 | 5.83M | return x; | 58 | 5.83M | } |
Unexecuted instantiation: bgmc.c:av_bswap16 Unexecuted instantiation: mlz.c:av_bswap16 Line | Count | Source | 55 | 1.13M | { | 56 | 1.13M | x= (x>>8) | (x<<8); | 57 | 1.13M | return x; | 58 | 1.13M | } |
Unexecuted instantiation: vmixdec.c:av_bswap16 Unexecuted instantiation: libfdk-aacenc.c:av_bswap16 Line | Count | Source | 55 | 718k | { | 56 | 718k | x= (x>>8) | (x<<8); | 57 | 718k | return x; | 58 | 718k | } |
Line | Count | Source | 55 | 22.8k | { | 56 | 22.8k | x= (x>>8) | (x<<8); | 57 | 22.8k | return x; | 58 | 22.8k | } |
Line | Count | Source | 55 | 13.2k | { | 56 | 13.2k | x= (x>>8) | (x<<8); | 57 | 13.2k | return x; | 58 | 13.2k | } |
Unexecuted instantiation: rv30.c:av_bswap16 Unexecuted instantiation: rv34.c:av_bswap16 Line | Count | Source | 55 | 1.16M | { | 56 | 1.16M | x= (x>>8) | (x<<8); | 57 | 1.16M | return x; | 58 | 1.16M | } |
Unexecuted instantiation: aptx.c:av_bswap16 Unexecuted instantiation: indeo3.c:av_bswap16 Unexecuted instantiation: eamad.c:av_bswap16 proresenc_anatoliy.c:av_bswap16 Line | Count | Source | 55 | 1.12M | { | 56 | 1.12M | x= (x>>8) | (x<<8); | 57 | 1.12M | return x; | 58 | 1.12M | } |
Unexecuted instantiation: misc4.c:av_bswap16 Unexecuted instantiation: g726.c:av_bswap16 Unexecuted instantiation: vc1_block.c:av_bswap16 Unexecuted instantiation: vc1_loopfilter.c:av_bswap16 Unexecuted instantiation: vc1_mc.c:av_bswap16 Unexecuted instantiation: vc1_pred.c:av_bswap16 Line | Count | Source | 55 | 23.2k | { | 56 | 23.2k | x= (x>>8) | (x<<8); | 57 | 23.2k | return x; | 58 | 23.2k | } |
Unexecuted instantiation: rtv1.c:av_bswap16 Unexecuted instantiation: texturedsp.c:av_bswap16 mpegaudiodec_float.c:av_bswap16 Line | Count | Source | 55 | 291k | { | 56 | 291k | x= (x>>8) | (x<<8); | 57 | 291k | return x; | 58 | 291k | } |
Unexecuted instantiation: avuienc.c:av_bswap16 Unexecuted instantiation: wmv2enc.c:av_bswap16 Unexecuted instantiation: huffyuvdec.c:av_bswap16 Line | Count | Source | 55 | 770k | { | 56 | 770k | x= (x>>8) | (x<<8); | 57 | 770k | return x; | 58 | 770k | } |
Unexecuted instantiation: speexdec.c:av_bswap16 Line | Count | Source | 55 | 2.03M | { | 56 | 2.03M | x= (x>>8) | (x<<8); | 57 | 2.03M | return x; | 58 | 2.03M | } |
Unexecuted instantiation: dxv.c:av_bswap16 Unexecuted instantiation: lzf.c:av_bswap16 Unexecuted instantiation: mmvideo.c:av_bswap16 Line | Count | Source | 55 | 869k | { | 56 | 869k | x= (x>>8) | (x<<8); | 57 | 869k | return x; | 58 | 869k | } |
Unexecuted instantiation: vmdvideo.c:av_bswap16 Line | Count | Source | 55 | 271k | { | 56 | 271k | x= (x>>8) | (x<<8); | 57 | 271k | return x; | 58 | 271k | } |
Unexecuted instantiation: atrac3plusdec.c:av_bswap16 Unexecuted instantiation: atrac3plusdsp.c:av_bswap16 Unexecuted instantiation: atrac3plus.c:av_bswap16 Line | Count | Source | 55 | 61.5k | { | 56 | 61.5k | x= (x>>8) | (x<<8); | 57 | 61.5k | return x; | 58 | 61.5k | } |
Line | Count | Source | 55 | 1.32k | { | 56 | 1.32k | x= (x>>8) | (x<<8); | 57 | 1.32k | return x; | 58 | 1.32k | } |
Unexecuted instantiation: faxcompr.c:av_bswap16 Unexecuted instantiation: lzw.c:av_bswap16 Unexecuted instantiation: dvbsubenc.c:av_bswap16 ac3dec_float.c:av_bswap16 Line | Count | Source | 55 | 1.70M | { | 56 | 1.70M | x= (x>>8) | (x<<8); | 57 | 1.70M | return x; | 58 | 1.70M | } |
Line | Count | Source | 55 | 3.53M | { | 56 | 3.53M | x= (x>>8) | (x<<8); | 57 | 3.53M | return x; | 58 | 3.53M | } |
Unexecuted instantiation: vp8dsp.c:av_bswap16 Unexecuted instantiation: vpx_rac.c:av_bswap16 Unexecuted instantiation: on2avc.c:av_bswap16 Line | Count | Source | 55 | 112k | { | 56 | 112k | x= (x>>8) | (x<<8); | 57 | 112k | return x; | 58 | 112k | } |
Unexecuted instantiation: vb.c:av_bswap16 Line | Count | Source | 55 | 751k | { | 56 | 751k | x= (x>>8) | (x<<8); | 57 | 751k | return x; | 58 | 751k | } |
Unexecuted instantiation: mss1.c:av_bswap16 Unexecuted instantiation: mss12.c:av_bswap16 Unexecuted instantiation: dpcm.c:av_bswap16 Unexecuted instantiation: roqaudioenc.c:av_bswap16 Line | Count | Source | 55 | 18.3k | { | 56 | 18.3k | x= (x>>8) | (x<<8); | 57 | 18.3k | return x; | 58 | 18.3k | } |
Line | Count | Source | 55 | 42.2k | { | 56 | 42.2k | x= (x>>8) | (x<<8); | 57 | 42.2k | return x; | 58 | 42.2k | } |
Unexecuted instantiation: mdec.c:av_bswap16 Unexecuted instantiation: roqvideodec.c:av_bswap16 Unexecuted instantiation: r210enc.c:av_bswap16 Line | Count | Source | 55 | 13.8M | { | 56 | 13.8M | x= (x>>8) | (x<<8); | 57 | 13.8M | return x; | 58 | 13.8M | } |
Unexecuted instantiation: rpzaenc.c:av_bswap16 Line | Count | Source | 55 | 1.41M | { | 56 | 1.41M | x= (x>>8) | (x<<8); | 57 | 1.41M | return x; | 58 | 1.41M | } |
Line | Count | Source | 55 | 183k | { | 56 | 183k | x= (x>>8) | (x<<8); | 57 | 183k | return x; | 58 | 183k | } |
Unexecuted instantiation: vp56data.c:av_bswap16 Unexecuted instantiation: vp3dsp.c:av_bswap16 Unexecuted instantiation: loco.c:av_bswap16 Unexecuted instantiation: magicyuv.c:av_bswap16 Line | Count | Source | 55 | 313k | { | 56 | 313k | x= (x>>8) | (x<<8); | 57 | 313k | return x; | 58 | 313k | } |
Unexecuted instantiation: ra144dec.c:av_bswap16 Unexecuted instantiation: lcldec.c:av_bswap16 Unexecuted instantiation: indeo5.c:av_bswap16 Unexecuted instantiation: ivi.c:av_bswap16 Unexecuted instantiation: ivi_dsp.c:av_bswap16 Unexecuted instantiation: prosumer.c:av_bswap16 Unexecuted instantiation: clearvideo.c:av_bswap16 Unexecuted instantiation: dxtory.c:av_bswap16 Line | Count | Source | 55 | 178k | { | 56 | 178k | x= (x>>8) | (x<<8); | 57 | 178k | return x; | 58 | 178k | } |
Unexecuted instantiation: proresdsp.c:av_bswap16 Unexecuted instantiation: sunrast.c:av_bswap16 mpegaudiodec_fixed.c:av_bswap16 Line | Count | Source | 55 | 213k | { | 56 | 213k | x= (x>>8) | (x<<8); | 57 | 213k | return x; | 58 | 213k | } |
Line | Count | Source | 55 | 155k | { | 56 | 155k | x= (x>>8) | (x<<8); | 57 | 155k | return x; | 58 | 155k | } |
Line | Count | Source | 55 | 11.9k | { | 56 | 11.9k | x= (x>>8) | (x<<8); | 57 | 11.9k | return x; | 58 | 11.9k | } |
Unexecuted instantiation: dsicinvideo.c:av_bswap16 Unexecuted instantiation: flashsv2enc.c:av_bswap16 Unexecuted instantiation: mpegaudioenc.c:av_bswap16 Unexecuted instantiation: wnv1.c:av_bswap16 Unexecuted instantiation: libvpxenc.c:av_bswap16 Unexecuted instantiation: xl.c:av_bswap16 Unexecuted instantiation: cljrenc.c:av_bswap16 Unexecuted instantiation: vima.c:av_bswap16 Unexecuted instantiation: leaddec.c:av_bswap16 Unexecuted instantiation: tscc.c:av_bswap16 Unexecuted instantiation: ljpegenc.c:av_bswap16 Unexecuted instantiation: movtextenc.c:av_bswap16 Unexecuted instantiation: g723_1enc.c:av_bswap16 Unexecuted instantiation: eatqi.c:av_bswap16 Line | Count | Source | 55 | 12.1M | { | 56 | 12.1M | x= (x>>8) | (x<<8); | 57 | 12.1M | return x; | 58 | 12.1M | } |
Unexecuted instantiation: lagarithrac.c:av_bswap16 Unexecuted instantiation: dss_sp.c:av_bswap16 Line | Count | Source | 55 | 2.10M | { | 56 | 2.10M | x= (x>>8) | (x<<8); | 57 | 2.10M | return x; | 58 | 2.10M | } |
Unexecuted instantiation: cavsdec.c:av_bswap16 Unexecuted instantiation: cavs.c:av_bswap16 Unexecuted instantiation: cavsdata.c:av_bswap16 Unexecuted instantiation: dvenc.c:av_bswap16 Unexecuted instantiation: target_swr_fuzzer.c:av_bswap16 Unexecuted instantiation: vp3.c:av_bswap16 Unexecuted instantiation: webp.c:av_bswap16 Line | Count | Source | 55 | 197k | { | 56 | 197k | x= (x>>8) | (x<<8); | 57 | 197k | return x; | 58 | 197k | } |
Line | Count | Source | 55 | 240k | { | 56 | 240k | x= (x>>8) | (x<<8); | 57 | 240k | return x; | 58 | 240k | } |
Unexecuted instantiation: binkaudio.c:av_bswap16 Unexecuted instantiation: mpeg12dec.c:av_bswap16 Unexecuted instantiation: indeo2.c:av_bswap16 Unexecuted instantiation: wmalosslessdec.c:av_bswap16 Line | Count | Source | 55 | 445k | { | 56 | 445k | x= (x>>8) | (x<<8); | 57 | 445k | return x; | 58 | 445k | } |
Unexecuted instantiation: ilbcdec.c:av_bswap16 Unexecuted instantiation: hevcdec.c:av_bswap16 Unexecuted instantiation: mvs.c:av_bswap16 Unexecuted instantiation: pred.c:av_bswap16 Unexecuted instantiation: refs.c:av_bswap16 Unexecuted instantiation: cabac.c:av_bswap16 Unexecuted instantiation: dsp.c:av_bswap16 Unexecuted instantiation: filter.c:av_bswap16 Unexecuted instantiation: dsp_init.c:av_bswap16 Unexecuted instantiation: roqvideoenc.c:av_bswap16 Unexecuted instantiation: tscc2.c:av_bswap16 Line | Count | Source | 55 | 125k | { | 56 | 125k | x= (x>>8) | (x<<8); | 57 | 125k | return x; | 58 | 125k | } |
Unexecuted instantiation: canopus.c:av_bswap16 Unexecuted instantiation: mobiclip.c:av_bswap16 Unexecuted instantiation: wmaprodec.c:av_bswap16 Unexecuted instantiation: pcm-blurayenc.c:av_bswap16 Unexecuted instantiation: fastaudio.c:av_bswap16 Unexecuted instantiation: sonic.c:av_bswap16 Unexecuted instantiation: g729dec.c:av_bswap16 Unexecuted instantiation: mscc.c:av_bswap16 Unexecuted instantiation: huffyuvenc.c:av_bswap16 Unexecuted instantiation: huffyuvencdsp.c:av_bswap16 Unexecuted instantiation: lossless_videoencdsp.c:av_bswap16 Unexecuted instantiation: utvideoenc.c:av_bswap16 Unexecuted instantiation: sipr.c:av_bswap16 Unexecuted instantiation: target_sws_fuzzer.c:av_bswap16 Line | Count | Source | 55 | 8.58M | { | 56 | 8.58M | x= (x>>8) | (x<<8); | 57 | 8.58M | return x; | 58 | 8.58M | } |
Unexecuted instantiation: vscale.c:av_bswap16 Unexecuted instantiation: hscale_fast_bilinear_simd.c:av_bswap16 Line | Count | Source | 55 | 1.90M | { | 56 | 1.90M | x= (x>>8) | (x<<8); | 57 | 1.90M | return x; | 58 | 1.90M | } |
Unexecuted instantiation: alphablend.c:av_bswap16 Unexecuted instantiation: graph.c:av_bswap16 Unexecuted instantiation: hscale_fast_bilinear.c:av_bswap16 Line | Count | Source | 55 | 45.2M | { | 56 | 45.2M | x= (x>>8) | (x<<8); | 57 | 45.2M | return x; | 58 | 45.2M | } |
Unexecuted instantiation: options.c:av_bswap16 Line | Count | Source | 55 | 44.4M | { | 56 | 44.4M | x= (x>>8) | (x<<8); | 57 | 44.4M | return x; | 58 | 44.4M | } |
Line | Count | Source | 55 | 611k | { | 56 | 611k | x= (x>>8) | (x<<8); | 57 | 611k | return x; | 58 | 611k | } |
Unexecuted instantiation: slice.c:av_bswap16 swscale_unscaled.c:av_bswap16 Line | Count | Source | 55 | 8.86M | { | 56 | 8.86M | x= (x>>8) | (x<<8); | 57 | 8.86M | return x; | 58 | 8.86M | } |
Unexecuted instantiation: gamma.c:av_bswap16 Unexecuted instantiation: hscale.c:av_bswap16 Unexecuted instantiation: g722dec.c:av_bswap16 Unexecuted instantiation: nellymoserdec.c:av_bswap16 Unexecuted instantiation: avuidec.c:av_bswap16 Unexecuted instantiation: dcaenc.c:av_bswap16 Unexecuted instantiation: dcaadpcm.c:av_bswap16 Unexecuted instantiation: dcadata.c:av_bswap16 Unexecuted instantiation: interplayvideo.c:av_bswap16 Unexecuted instantiation: dec.c:av_bswap16 Unexecuted instantiation: dec_celt.c:av_bswap16 Unexecuted instantiation: silk.c:av_bswap16 Unexecuted instantiation: libopusdec.c:av_bswap16 Unexecuted instantiation: bmpenc.c:av_bswap16 Unexecuted instantiation: mjpegbdec.c:av_bswap16 Line | Count | Source | 55 | 18.2k | { | 56 | 18.2k | x= (x>>8) | (x<<8); | 57 | 18.2k | return x; | 58 | 18.2k | } |
Unexecuted instantiation: r210dec.c:av_bswap16 Unexecuted instantiation: exrenc.c:av_bswap16 Line | Count | Source | 55 | 7.92M | { | 56 | 7.92M | x= (x>>8) | (x<<8); | 57 | 7.92M | return x; | 58 | 7.92M | } |
Line | Count | Source | 55 | 123k | { | 56 | 123k | x= (x>>8) | (x<<8); | 57 | 123k | return x; | 58 | 123k | } |
Unexecuted instantiation: v210dec.c:av_bswap16 Unexecuted instantiation: hdrdec.c:av_bswap16 Line | Count | Source | 55 | 103k | { | 56 | 103k | x= (x>>8) | (x<<8); | 57 | 103k | return x; | 58 | 103k | } |
Unexecuted instantiation: rtjpeg.c:av_bswap16 Unexecuted instantiation: hnm4video.c:av_bswap16 Unexecuted instantiation: truespeech.c:av_bswap16 Unexecuted instantiation: metasound.c:av_bswap16 Line | Count | Source | 55 | 727k | { | 56 | 727k | x= (x>>8) | (x<<8); | 57 | 727k | return x; | 58 | 727k | } |
Unexecuted instantiation: svq1enc.c:av_bswap16 Unexecuted instantiation: escape124.c:av_bswap16 Unexecuted instantiation: hdrenc.c:av_bswap16 Unexecuted instantiation: cllc.c:av_bswap16 Unexecuted instantiation: dvdec.c:av_bswap16 Unexecuted instantiation: rawenc.c:av_bswap16 Unexecuted instantiation: qoidec.c:av_bswap16 Unexecuted instantiation: wavpackenc.c:av_bswap16 Line | Count | Source | 55 | 13.9k | { | 56 | 13.9k | x= (x>>8) | (x<<8); | 57 | 13.9k | return x; | 58 | 13.9k | } |
Unexecuted instantiation: pictordec.c:av_bswap16 Unexecuted instantiation: fraps.c:av_bswap16 Unexecuted instantiation: motionpixels.c:av_bswap16 Unexecuted instantiation: msp2dec.c:av_bswap16 Line | Count | Source | 55 | 1.98M | { | 56 | 1.98M | x= (x>>8) | (x<<8); | 57 | 1.98M | return x; | 58 | 1.98M | } |
Line | Count | Source | 55 | 33.2M | { | 56 | 33.2M | x= (x>>8) | (x<<8); | 57 | 33.2M | return x; | 58 | 33.2M | } |
Unexecuted instantiation: vp9data.c:av_bswap16 Unexecuted instantiation: vp9dsp_10bpp.c:av_bswap16 Unexecuted instantiation: vp9dsp_12bpp.c:av_bswap16 Unexecuted instantiation: vp9dsp_8bpp.c:av_bswap16 Unexecuted instantiation: vp9lpf.c:av_bswap16 Line | Count | Source | 55 | 3.10M | { | 56 | 3.10M | x= (x>>8) | (x<<8); | 57 | 3.10M | return x; | 58 | 3.10M | } |
Unexecuted instantiation: vp9prob.c:av_bswap16 Unexecuted instantiation: vp9recon.c:av_bswap16 Unexecuted instantiation: vbnenc.c:av_bswap16 Unexecuted instantiation: ffv1dec.c:av_bswap16 Unexecuted instantiation: frwu.c:av_bswap16 Unexecuted instantiation: aptxenc.c:av_bswap16 Unexecuted instantiation: intra_utils.c:av_bswap16 Unexecuted instantiation: thread.c:av_bswap16 Unexecuted instantiation: ctu.c:av_bswap16 Unexecuted instantiation: inter.c:av_bswap16 Unexecuted instantiation: intra.c:av_bswap16 Unexecuted instantiation: kmvc.c:av_bswap16 Line | Count | Source | 55 | 3.39M | { | 56 | 3.39M | x= (x>>8) | (x<<8); | 57 | 3.39M | return x; | 58 | 3.39M | } |
Unexecuted instantiation: pcxenc.c:av_bswap16 Unexecuted instantiation: wmavoice.c:av_bswap16 Unexecuted instantiation: kgv1dec.c:av_bswap16 Line | Count | Source | 55 | 65.8k | { | 56 | 65.8k | x= (x>>8) | (x<<8); | 57 | 65.8k | return x; | 58 | 65.8k | } |
Unexecuted instantiation: svq1dec.c:av_bswap16 Line | Count | Source | 55 | 14.1k | { | 56 | 14.1k | x= (x>>8) | (x<<8); | 57 | 14.1k | return x; | 58 | 14.1k | } |
Unexecuted instantiation: pafaudio.c:av_bswap16 Unexecuted instantiation: mpc7.c:av_bswap16 Unexecuted instantiation: dds.c:av_bswap16 Unexecuted instantiation: truemotion2rt.c:av_bswap16 Unexecuted instantiation: a64multienc.c:av_bswap16 Unexecuted instantiation: wcmv.c:av_bswap16 Unexecuted instantiation: v410dec.c:av_bswap16 Unexecuted instantiation: rv40.c:av_bswap16 Unexecuted instantiation: rv40dsp.c:av_bswap16 Unexecuted instantiation: gif.c:av_bswap16 Unexecuted instantiation: lzwenc.c:av_bswap16 Unexecuted instantiation: xsubdec.c:av_bswap16 Line | Count | Source | 55 | 15.2M | { | 56 | 15.2M | x= (x>>8) | (x<<8); | 57 | 15.2M | return x; | 58 | 15.2M | } |
Unexecuted instantiation: rasc.c:av_bswap16 Unexecuted instantiation: notchlc.c:av_bswap16 Line | Count | Source | 55 | 15.9M | { | 56 | 15.9M | x= (x>>8) | (x<<8); | 57 | 15.9M | return x; | 58 | 15.9M | } |
Line | Count | Source | 55 | 250k | { | 56 | 250k | x= (x>>8) | (x<<8); | 57 | 250k | return x; | 58 | 250k | } |
Unexecuted instantiation: msvideo1enc.c:av_bswap16 Unexecuted instantiation: vqcdec.c:av_bswap16 Unexecuted instantiation: dolby_e.c:av_bswap16 Line | Count | Source | 55 | 422k | { | 56 | 422k | x= (x>>8) | (x<<8); | 57 | 422k | return x; | 58 | 422k | } |
Unexecuted instantiation: evrcdec.c:av_bswap16 Unexecuted instantiation: targaenc.c:av_bswap16 Unexecuted instantiation: v308enc.c:av_bswap16 Unexecuted instantiation: zmbv.c:av_bswap16 Unexecuted instantiation: tdsc.c:av_bswap16 Unexecuted instantiation: xwddec.c:av_bswap16 Unexecuted instantiation: dcadec.c:av_bswap16 Line | Count | Source | 55 | 14.4k | { | 56 | 14.4k | x= (x>>8) | (x<<8); | 57 | 14.4k | return x; | 58 | 14.4k | } |
Unexecuted instantiation: dca_xll.c:av_bswap16 Unexecuted instantiation: asvenc.c:av_bswap16 Unexecuted instantiation: mlpenc.c:av_bswap16 Unexecuted instantiation: hapdec.c:av_bswap16 Unexecuted instantiation: snappy.c:av_bswap16 Line | Count | Source | 55 | 2.12k | { | 56 | 2.12k | x= (x>>8) | (x<<8); | 57 | 2.12k | return x; | 58 | 2.12k | } |
Unexecuted instantiation: vmdaudio.c:av_bswap16 Unexecuted instantiation: vorbisdec.c:av_bswap16 Line | Count | Source | 55 | 745k | { | 56 | 745k | x= (x>>8) | (x<<8); | 57 | 745k | return x; | 58 | 745k | } |
Line | Count | Source | 55 | 726k | { | 56 | 726k | x= (x>>8) | (x<<8); | 57 | 726k | return x; | 58 | 726k | } |
Line | Count | Source | 55 | 219k | { | 56 | 219k | x= (x>>8) | (x<<8); | 57 | 219k | return x; | 58 | 219k | } |
Unexecuted instantiation: arbc.c:av_bswap16 Line | Count | Source | 55 | 1.16M | { | 56 | 1.16M | x= (x>>8) | (x<<8); | 57 | 1.16M | return x; | 58 | 1.16M | } |
Unexecuted instantiation: rscc.c:av_bswap16 Unexecuted instantiation: s302menc.c:av_bswap16 Unexecuted instantiation: v210x.c:av_bswap16 Unexecuted instantiation: wavpack.c:av_bswap16 Unexecuted instantiation: dsicinaudio.c:av_bswap16 Unexecuted instantiation: speedhqdec.c:av_bswap16 Unexecuted instantiation: g723_1dec.c:av_bswap16 Unexecuted instantiation: scpr.c:av_bswap16 Line | Count | Source | 55 | 1.86M | { | 56 | 1.86M | x= (x>>8) | (x<<8); | 57 | 1.86M | return x; | 58 | 1.86M | } |
Unexecuted instantiation: 012v.c:av_bswap16 Line | Count | Source | 55 | 830 | { | 56 | 830 | x= (x>>8) | (x<<8); | 57 | 830 | return x; | 58 | 830 | } |
Line | Count | Source | 55 | 285 | { | 56 | 285 | x= (x>>8) | (x<<8); | 57 | 285 | return x; | 58 | 285 | } |
Unexecuted instantiation: vorbisenc.c:av_bswap16 Line | Count | Source | 55 | 5.50k | { | 56 | 5.50k | x= (x>>8) | (x<<8); | 57 | 5.50k | return x; | 58 | 5.50k | } |
Unexecuted instantiation: indeo4.c:av_bswap16 Line | Count | Source | 55 | 637k | { | 56 | 637k | x= (x>>8) | (x<<8); | 57 | 637k | return x; | 58 | 637k | } |
Unexecuted instantiation: fmvc.c:av_bswap16 Unexecuted instantiation: mvha.c:av_bswap16 Unexecuted instantiation: qpeg.c:av_bswap16 Line | Count | Source | 55 | 151k | { | 56 | 151k | x= (x>>8) | (x<<8); | 57 | 151k | return x; | 58 | 151k | } |
Unexecuted instantiation: v210enc.c:av_bswap16 Unexecuted instantiation: atrac1.c:av_bswap16 Line | Count | Source | 55 | 152k | { | 56 | 152k | x= (x>>8) | (x<<8); | 57 | 152k | return x; | 58 | 152k | } |
Unexecuted instantiation: tiffenc.c:av_bswap16 Unexecuted instantiation: apv_decode.c:av_bswap16 Unexecuted instantiation: apv_entropy.c:av_bswap16 Unexecuted instantiation: xsubenc.c:av_bswap16 Unexecuted instantiation: libopusenc.c:av_bswap16 Unexecuted instantiation: avs.c:av_bswap16 Line | Count | Source | 55 | 389k | { | 56 | 389k | x= (x>>8) | (x<<8); | 57 | 389k | return x; | 58 | 389k | } |
Unexecuted instantiation: imm5.c:av_bswap16 Line | Count | Source | 55 | 6.24M | { | 56 | 6.24M | x= (x>>8) | (x<<8); | 57 | 6.24M | return x; | 58 | 6.24M | } |
Unexecuted instantiation: m101.c:av_bswap16 Unexecuted instantiation: adxenc.c:av_bswap16 Line | Count | Source | 55 | 4.88M | { | 56 | 4.88M | x= (x>>8) | (x<<8); | 57 | 4.88M | return x; | 58 | 4.88M | } |
Unexecuted instantiation: dvdsubenc.c:av_bswap16 Unexecuted instantiation: vbndec.c:av_bswap16 Unexecuted instantiation: rv60dec.c:av_bswap16 Line | Count | Source | 55 | 1.52k | { | 56 | 1.52k | x= (x>>8) | (x<<8); | 57 | 1.52k | return x; | 58 | 1.52k | } |
Unexecuted instantiation: targa.c:av_bswap16 Unexecuted instantiation: nellymoserenc.c:av_bswap16 Unexecuted instantiation: tiertexseqv.c:av_bswap16 Unexecuted instantiation: bmvvideo.c:av_bswap16 Unexecuted instantiation: ra144enc.c:av_bswap16 Line | Count | Source | 55 | 17.8k | { | 56 | 17.8k | x= (x>>8) | (x<<8); | 57 | 17.8k | return x; | 58 | 17.8k | } |
Unexecuted instantiation: wbmpenc.c:av_bswap16 Unexecuted instantiation: ffwavesynth.c:av_bswap16 Line | Count | Source | 55 | 1.40M | { | 56 | 1.40M | x= (x>>8) | (x<<8); | 57 | 1.40M | return x; | 58 | 1.40M | } |
Unexecuted instantiation: ffv1enc.c:av_bswap16 Line | Count | Source | 55 | 366k | { | 56 | 366k | x= (x>>8) | (x<<8); | 57 | 366k | return x; | 58 | 366k | } |
Unexecuted instantiation: dnxhdenc.c:av_bswap16 Unexecuted instantiation: dnxhdenc_init.c:av_bswap16 Line | Count | Source | 55 | 36.0k | { | 56 | 36.0k | x= (x>>8) | (x<<8); | 57 | 36.0k | return x; | 58 | 36.0k | } |
libvorbisdec.c:av_bswap16 Line | Count | Source | 55 | 24 | { | 56 | 24 | x= (x>>8) | (x<<8); | 57 | 24 | return x; | 58 | 24 | } |
Line | Count | Source | 55 | 185k | { | 56 | 185k | x= (x>>8) | (x<<8); | 57 | 185k | return x; | 58 | 185k | } |
Line | Count | Source | 55 | 103k | { | 56 | 103k | x= (x>>8) | (x<<8); | 57 | 103k | return x; | 58 | 103k | } |
Unexecuted instantiation: pcx.c:av_bswap16 Line | Count | Source | 55 | 5.05k | { | 56 | 5.05k | x= (x>>8) | (x<<8); | 57 | 5.05k | return x; | 58 | 5.05k | } |
Unexecuted instantiation: s302m.c:av_bswap16 Unexecuted instantiation: aasc.c:av_bswap16 Unexecuted instantiation: vc2enc.c:av_bswap16 ac3dec_fixed.c:av_bswap16 Line | Count | Source | 55 | 624k | { | 56 | 624k | x= (x>>8) | (x<<8); | 57 | 624k | return x; | 58 | 624k | } |
Line | Count | Source | 55 | 8.06k | { | 56 | 8.06k | x= (x>>8) | (x<<8); | 57 | 8.06k | return x; | 58 | 8.06k | } |
Unexecuted instantiation: midivid.c:av_bswap16 Unexecuted instantiation: snowenc.c:av_bswap16 Unexecuted instantiation: mimic.c:av_bswap16 Unexecuted instantiation: eacmv.c:av_bswap16 Line | Count | Source | 55 | 23.8M | { | 56 | 23.8M | x= (x>>8) | (x<<8); | 57 | 23.8M | return x; | 58 | 23.8M | } |
Unexecuted instantiation: fic.c:av_bswap16 Unexecuted instantiation: bitpacked_enc.c:av_bswap16 Line | Count | Source | 55 | 142k | { | 56 | 142k | x= (x>>8) | (x<<8); | 57 | 142k | return x; | 58 | 142k | } |
Unexecuted instantiation: qdmc.c:av_bswap16 Unexecuted instantiation: ra288.c:av_bswap16 Unexecuted instantiation: pcm-dvdenc.c:av_bswap16 Unexecuted instantiation: fitsdec.c:av_bswap16 Unexecuted instantiation: interplayacm.c:av_bswap16 Unexecuted instantiation: mwsc.c:av_bswap16 Unexecuted instantiation: ylc.c:av_bswap16 Unexecuted instantiation: ftr.c:av_bswap16 Unexecuted instantiation: cdgraphics.c:av_bswap16 Line | Count | Source | 55 | 516k | { | 56 | 516k | x= (x>>8) | (x<<8); | 57 | 516k | return x; | 58 | 516k | } |
Unexecuted instantiation: truemotion1.c:av_bswap16 Unexecuted instantiation: magicyuvenc.c:av_bswap16 Unexecuted instantiation: agm.c:av_bswap16 Unexecuted instantiation: flacenc.c:av_bswap16 proresenc_kostya.c:av_bswap16 Line | Count | Source | 55 | 720k | { | 56 | 720k | x= (x>>8) | (x<<8); | 57 | 720k | return x; | 58 | 720k | } |
Line | Count | Source | 55 | 80.1k | { | 56 | 80.1k | x= (x>>8) | (x<<8); | 57 | 80.1k | return x; | 58 | 80.1k | } |
Line | Count | Source | 55 | 29 | { | 56 | 29 | x= (x>>8) | (x<<8); | 57 | 29 | return x; | 58 | 29 | } |
Unexecuted instantiation: tpeldsp.c:av_bswap16 Unexecuted instantiation: ws-snd1.c:av_bswap16 Unexecuted instantiation: flicvideo.c:av_bswap16 Unexecuted instantiation: sbcdec.c:av_bswap16 Unexecuted instantiation: msrle.c:av_bswap16 Line | Count | Source | 55 | 120k | { | 56 | 120k | x= (x>>8) | (x<<8); | 57 | 120k | return x; | 58 | 120k | } |
Unexecuted instantiation: cri.c:av_bswap16 Unexecuted instantiation: qoienc.c:av_bswap16 Unexecuted instantiation: qdm2.c:av_bswap16 Unexecuted instantiation: ttaenc.c:av_bswap16 Unexecuted instantiation: cljrdec.c:av_bswap16 Unexecuted instantiation: g728dec.c:av_bswap16 Line | Count | Source | 55 | 3.69k | { | 56 | 3.69k | x= (x>>8) | (x<<8); | 57 | 3.69k | return x; | 58 | 3.69k | } |
Unexecuted instantiation: wbmpdec.c:av_bswap16 Unexecuted instantiation: vqavideo.c:av_bswap16 Unexecuted instantiation: twinvqdec.c:av_bswap16 Line | Count | Source | 55 | 8.49k | { | 56 | 8.49k | x= (x>>8) | (x<<8); | 57 | 8.49k | return x; | 58 | 8.49k | } |
Unexecuted instantiation: vble.c:av_bswap16 Unexecuted instantiation: mv30.c:av_bswap16 Unexecuted instantiation: apedec.c:av_bswap16 Unexecuted instantiation: v410enc.c:av_bswap16 Unexecuted instantiation: cpia.c:av_bswap16 Line | Count | Source | 55 | 826k | { | 56 | 826k | x= (x>>8) | (x<<8); | 57 | 826k | return x; | 58 | 826k | } |
Line | Count | Source | 55 | 26.6M | { | 56 | 26.6M | x= (x>>8) | (x<<8); | 57 | 26.6M | return x; | 58 | 26.6M | } |
Unexecuted instantiation: jpeg2000htdec.c:av_bswap16 Unexecuted instantiation: dstdec.c:av_bswap16 Line | Count | Source | 55 | 31.5k | { | 56 | 31.5k | x= (x>>8) | (x<<8); | 57 | 31.5k | return x; | 58 | 31.5k | } |
Unexecuted instantiation: zmbvenc.c:av_bswap16 Line | Count | Source | 55 | 160k | { | 56 | 160k | x= (x>>8) | (x<<8); | 57 | 160k | return x; | 58 | 160k | } |
Unexecuted instantiation: truemotion2.c:av_bswap16 |
59 | | #endif |
60 | | |
61 | | #ifndef av_bswap32 |
62 | | static av_always_inline av_const uint32_t av_bswap32(uint32_t x) |
63 | 46.5G | { |
64 | 46.5G | return AV_BSWAP32C(x); |
65 | 46.5G | } Unexecuted instantiation: target_enc_fuzzer.c:av_bswap32 Unexecuted instantiation: decode.c:av_bswap32 Line | Count | Source | 63 | 26.3k | { | 64 | 26.3k | return AV_BSWAP32C(x); | 65 | 26.3k | } |
Line | Count | Source | 63 | 6.20M | { | 64 | 6.20M | return AV_BSWAP32C(x); | 65 | 6.20M | } |
Unexecuted instantiation: mpegvideo_enc.c:av_bswap32 Unexecuted instantiation: mpegvideo_motion.c:av_bswap32 Line | Count | Source | 63 | 5.05M | { | 64 | 5.05M | return AV_BSWAP32C(x); | 65 | 5.05M | } |
Unexecuted instantiation: packet.c:av_bswap32 Unexecuted instantiation: pixblockdsp.c:av_bswap32 Unexecuted instantiation: ratecontrol.c:av_bswap32 Unexecuted instantiation: rv10enc.c:av_bswap32 Unexecuted instantiation: rv20enc.c:av_bswap32 Unexecuted instantiation: speedhqenc.c:av_bswap32 Line | Count | Source | 63 | 741k | { | 64 | 741k | return AV_BSWAP32C(x); | 65 | 741k | } |
Line | Count | Source | 63 | 70.4M | { | 64 | 70.4M | return AV_BSWAP32C(x); | 65 | 70.4M | } |
Unexecuted instantiation: vlc.c:av_bswap32 Unexecuted instantiation: mpegvideoenc.c:av_bswap32 Line | Count | Source | 63 | 10.4M | { | 64 | 10.4M | return AV_BSWAP32C(x); | 65 | 10.4M | } |
aac_adtstoasc.c:av_bswap32 Line | Count | Source | 63 | 81.0k | { | 64 | 81.0k | return AV_BSWAP32C(x); | 65 | 81.0k | } |
Line | Count | Source | 63 | 12.1M | { | 64 | 12.1M | return AV_BSWAP32C(x); | 65 | 12.1M | } |
Unexecuted instantiation: dovi_rpu.c:av_bswap32 Unexecuted instantiation: dts2pts.c:av_bswap32 dv_error_marker.c:av_bswap32 Line | Count | Source | 63 | 6.06k | { | 64 | 6.06k | return AV_BSWAP32C(x); | 65 | 6.06k | } |
Unexecuted instantiation: eac3_core.c:av_bswap32 Unexecuted instantiation: eia608_to_smpte436m.c:av_bswap32 evc_frame_merge.c:av_bswap32 Line | Count | Source | 63 | 301k | { | 64 | 301k | return AV_BSWAP32C(x); | 65 | 301k | } |
extract_extradata.c:av_bswap32 Line | Count | Source | 63 | 3.38k | { | 64 | 3.38k | return AV_BSWAP32C(x); | 65 | 3.38k | } |
Unexecuted instantiation: h264_metadata.c:av_bswap32 h264_mp4toannexb.c:av_bswap32 Line | Count | Source | 63 | 478k | { | 64 | 478k | return AV_BSWAP32C(x); | 65 | 478k | } |
Unexecuted instantiation: h264_redundant_pps.c:av_bswap32 Unexecuted instantiation: h265_metadata.c:av_bswap32 Unexecuted instantiation: h266_metadata.c:av_bswap32 Unexecuted instantiation: hapqa_extract.c:av_bswap32 hevc_mp4toannexb.c:av_bswap32 Line | Count | Source | 63 | 1.21M | { | 64 | 1.21M | return AV_BSWAP32C(x); | 65 | 1.21M | } |
Unexecuted instantiation: imx_dump_header.c:av_bswap32 media100_to_mjpegb.c:av_bswap32 Line | Count | Source | 63 | 88.5M | { | 64 | 88.5M | return AV_BSWAP32C(x); | 65 | 88.5M | } |
Unexecuted instantiation: mjpeg2jpeg.c:av_bswap32 mjpega_dump_header.c:av_bswap32 Line | Count | Source | 63 | 56.7k | { | 64 | 56.7k | return AV_BSWAP32C(x); | 65 | 56.7k | } |
Unexecuted instantiation: movsub.c:av_bswap32 Unexecuted instantiation: opus_metadata.c:av_bswap32 Unexecuted instantiation: pgs_frame_merge.c:av_bswap32 Unexecuted instantiation: prores_metadata.c:av_bswap32 Unexecuted instantiation: remove_extradata.c:av_bswap32 Line | Count | Source | 63 | 21.5k | { | 64 | 21.5k | return AV_BSWAP32C(x); | 65 | 21.5k | } |
vp9_raw_reorder.c:av_bswap32 Line | Count | Source | 63 | 502k | { | 64 | 502k | return AV_BSWAP32C(x); | 65 | 502k | } |
vp9_superframe.c:av_bswap32 Line | Count | Source | 63 | 9.59k | { | 64 | 9.59k | return AV_BSWAP32C(x); | 65 | 9.59k | } |
vp9_superframe_split.c:av_bswap32 Line | Count | Source | 63 | 7.24k | { | 64 | 7.24k | return AV_BSWAP32C(x); | 65 | 7.24k | } |
vvc_mp4toannexb.c:av_bswap32 Line | Count | Source | 63 | 713k | { | 64 | 713k | return AV_BSWAP32C(x); | 65 | 713k | } |
Line | Count | Source | 63 | 3.19G | { | 64 | 3.19G | return AV_BSWAP32C(x); | 65 | 3.19G | } |
Line | Count | Source | 63 | 1.16M | { | 64 | 1.16M | return AV_BSWAP32C(x); | 65 | 1.16M | } |
Line | Count | Source | 63 | 71.3M | { | 64 | 71.3M | return AV_BSWAP32C(x); | 65 | 71.3M | } |
Line | Count | Source | 63 | 602M | { | 64 | 602M | return AV_BSWAP32C(x); | 65 | 602M | } |
Line | Count | Source | 63 | 7.48M | { | 64 | 7.48M | return AV_BSWAP32C(x); | 65 | 7.48M | } |
Unexecuted instantiation: cbs_sei.c:av_bswap32 Line | Count | Source | 63 | 17.3M | { | 64 | 17.3M | return AV_BSWAP32C(x); | 65 | 17.3M | } |
Line | Count | Source | 63 | 1.85M | { | 64 | 1.85M | return AV_BSWAP32C(x); | 65 | 1.85M | } |
Line | Count | Source | 63 | 341k | { | 64 | 341k | return AV_BSWAP32C(x); | 65 | 341k | } |
Unexecuted instantiation: dovi_rpuenc.c:av_bswap32 Line | Count | Source | 63 | 1.97M | { | 64 | 1.97M | return AV_BSWAP32C(x); | 65 | 1.97M | } |
Line | Count | Source | 63 | 16.6M | { | 64 | 16.6M | return AV_BSWAP32C(x); | 65 | 16.6M | } |
Line | Count | Source | 63 | 656 | { | 64 | 656 | return AV_BSWAP32C(x); | 65 | 656 | } |
Line | Count | Source | 63 | 1.30M | { | 64 | 1.30M | return AV_BSWAP32C(x); | 65 | 1.30M | } |
Line | Count | Source | 63 | 184M | { | 64 | 184M | return AV_BSWAP32C(x); | 65 | 184M | } |
Line | Count | Source | 63 | 10.2M | { | 64 | 10.2M | return AV_BSWAP32C(x); | 65 | 10.2M | } |
Line | Count | Source | 63 | 63.8M | { | 64 | 63.8M | return AV_BSWAP32C(x); | 65 | 63.8M | } |
Unexecuted instantiation: h264data.c:av_bswap32 Unexecuted instantiation: h265_profile_level.c:av_bswap32 Unexecuted instantiation: hap.c:av_bswap32 Unexecuted instantiation: jfdctint.c:av_bswap32 Unexecuted instantiation: jrevdct.c:av_bswap32 Unexecuted instantiation: me_cmp.c:av_bswap32 Line | Count | Source | 63 | 4.83M | { | 64 | 4.83M | return AV_BSWAP32C(x); | 65 | 4.83M | } |
mjpegenc_common.c:av_bswap32 Line | Count | Source | 63 | 9.48M | { | 64 | 9.48M | return AV_BSWAP32C(x); | 65 | 9.48M | } |
Unexecuted instantiation: mlp.c:av_bswap32 Line | Count | Source | 63 | 2.55M | { | 64 | 2.55M | return AV_BSWAP32C(x); | 65 | 2.55M | } |
Unexecuted instantiation: motion_est.c:av_bswap32 Line | Count | Source | 63 | 8.95M | { | 64 | 8.95M | return AV_BSWAP32C(x); | 65 | 8.95M | } |
Line | Count | Source | 63 | 2.44M | { | 64 | 2.44M | return AV_BSWAP32C(x); | 65 | 2.44M | } |
Line | Count | Source | 63 | 135M | { | 64 | 135M | return AV_BSWAP32C(x); | 65 | 135M | } |
mpeg4videodec.c:av_bswap32 Line | Count | Source | 63 | 138M | { | 64 | 138M | return AV_BSWAP32C(x); | 65 | 138M | } |
mpeg4videoenc.c:av_bswap32 Line | Count | Source | 63 | 1.55M | { | 64 | 1.55M | return AV_BSWAP32C(x); | 65 | 1.55M | } |
Unexecuted instantiation: mpegvideo.c:av_bswap32 Unexecuted instantiation: mpegvideo_dec.c:av_bswap32 Unexecuted instantiation: qpeldsp.c:av_bswap32 Unexecuted instantiation: simple_idct.c:av_bswap32 Line | Count | Source | 63 | 32.8k | { | 64 | 32.8k | return AV_BSWAP32C(x); | 65 | 32.8k | } |
Unexecuted instantiation: videodsp.c:av_bswap32 Line | Count | Source | 63 | 8.07M | { | 64 | 8.07M | return AV_BSWAP32C(x); | 65 | 8.07M | } |
Unexecuted instantiation: me_cmp_init.c:av_bswap32 Line | Count | Source | 63 | 1.96G | { | 64 | 1.96G | return AV_BSWAP32C(x); | 65 | 1.96G | } |
Line | Count | Source | 63 | 243M | { | 64 | 243M | return AV_BSWAP32C(x); | 65 | 243M | } |
Line | Count | Source | 63 | 1.97M | { | 64 | 1.97M | return AV_BSWAP32C(x); | 65 | 1.97M | } |
Line | Count | Source | 63 | 58.2k | { | 64 | 58.2k | return AV_BSWAP32C(x); | 65 | 58.2k | } |
Line | Count | Source | 63 | 1.65M | { | 64 | 1.65M | return AV_BSWAP32C(x); | 65 | 1.65M | } |
Unexecuted instantiation: h264chroma.c:av_bswap32 Unexecuted instantiation: hpeldsp.c:av_bswap32 intelh263dec.c:av_bswap32 Line | Count | Source | 63 | 288k | { | 64 | 288k | return AV_BSWAP32C(x); | 65 | 288k | } |
Line | Count | Source | 63 | 33.7M | { | 64 | 33.7M | return AV_BSWAP32C(x); | 65 | 33.7M | } |
Unexecuted instantiation: intrax8dsp.c:av_bswap32 Line | Count | Source | 63 | 162M | { | 64 | 162M | return AV_BSWAP32C(x); | 65 | 162M | } |
Unexecuted instantiation: mpeg_er.c:av_bswap32 Line | Count | Source | 63 | 207M | { | 64 | 207M | return AV_BSWAP32C(x); | 65 | 207M | } |
prores_raw_parser.c:av_bswap32 Line | Count | Source | 63 | 83.1k | { | 64 | 83.1k | return AV_BSWAP32C(x); | 65 | 83.1k | } |
Line | Count | Source | 63 | 3.71M | { | 64 | 3.71M | return AV_BSWAP32C(x); | 65 | 3.71M | } |
Line | Count | Source | 63 | 53.1k | { | 64 | 53.1k | return AV_BSWAP32C(x); | 65 | 53.1k | } |
Unexecuted instantiation: tak_parser.c:av_bswap32 Unexecuted instantiation: vc1_parser.c:av_bswap32 Unexecuted instantiation: vc1dsp.c:av_bswap32 vorbis_parser.c:av_bswap32 Line | Count | Source | 63 | 137k | { | 64 | 137k | return AV_BSWAP32C(x); | 65 | 137k | } |
Unexecuted instantiation: vp8_parser.c:av_bswap32 Line | Count | Source | 63 | 371k | { | 64 | 371k | return AV_BSWAP32C(x); | 65 | 371k | } |
Unexecuted instantiation: vvc_parser.c:av_bswap32 Line | Count | Source | 63 | 108k | { | 64 | 108k | return AV_BSWAP32C(x); | 65 | 108k | } |
Unexecuted instantiation: xiph.c:av_bswap32 Line | Count | Source | 63 | 17.4M | { | 64 | 17.4M | return AV_BSWAP32C(x); | 65 | 17.4M | } |
Unexecuted instantiation: aac_ac3_parser.c:av_bswap32 Line | Count | Source | 63 | 432M | { | 64 | 432M | return AV_BSWAP32C(x); | 65 | 432M | } |
Unexecuted instantiation: adx_parser.c:av_bswap32 Unexecuted instantiation: amr_parser.c:av_bswap32 Unexecuted instantiation: av1_parser.c:av_bswap32 Line | Count | Source | 63 | 11.1k | { | 64 | 11.1k | return AV_BSWAP32C(x); | 65 | 11.1k | } |
Line | Count | Source | 63 | 3 | { | 64 | 3 | return AV_BSWAP32C(x); | 65 | 3 | } |
Line | Count | Source | 63 | 1.51M | { | 64 | 1.51M | return AV_BSWAP32C(x); | 65 | 1.51M | } |
Unexecuted instantiation: cavs_parser.c:av_bswap32 Unexecuted instantiation: cook_parser.c:av_bswap32 Line | Count | Source | 63 | 49.4k | { | 64 | 49.4k | return AV_BSWAP32C(x); | 65 | 49.4k | } |
Line | Count | Source | 63 | 2.16M | { | 64 | 2.16M | return AV_BSWAP32C(x); | 65 | 2.16M | } |
dirac_parser.c:av_bswap32 Line | Count | Source | 63 | 5.15M | { | 64 | 5.15M | return AV_BSWAP32C(x); | 65 | 5.15M | } |
Unexecuted instantiation: dnxhd_parser.c:av_bswap32 Unexecuted instantiation: dnxhddata.c:av_bswap32 dnxuc_parser.c:av_bswap32 Line | Count | Source | 63 | 2 | { | 64 | 2 | return AV_BSWAP32C(x); | 65 | 2 | } |
Unexecuted instantiation: dolby_e_parser.c:av_bswap32 Line | Count | Source | 63 | 7.26k | { | 64 | 7.26k | return AV_BSWAP32C(x); | 65 | 7.26k | } |
Unexecuted instantiation: dvbsub_parser.c:av_bswap32 dvd_nav_parser.c:av_bswap32 Line | Count | Source | 63 | 238 | { | 64 | 238 | return AV_BSWAP32C(x); | 65 | 238 | } |
dvdsub_parser.c:av_bswap32 Line | Count | Source | 63 | 1.89k | { | 64 | 1.89k | return AV_BSWAP32C(x); | 65 | 1.89k | } |
Line | Count | Source | 63 | 1.20M | { | 64 | 1.20M | return AV_BSWAP32C(x); | 65 | 1.20M | } |
Unexecuted instantiation: ffv1_parser.c:av_bswap32 Line | Count | Source | 63 | 6.35M | { | 64 | 6.35M | return AV_BSWAP32C(x); | 65 | 6.35M | } |
Line | Count | Source | 63 | 291M | { | 64 | 291M | return AV_BSWAP32C(x); | 65 | 291M | } |
Line | Count | Source | 63 | 1.19M | { | 64 | 1.19M | return AV_BSWAP32C(x); | 65 | 1.19M | } |
Line | Count | Source | 63 | 56.3M | { | 64 | 56.3M | return AV_BSWAP32C(x); | 65 | 56.3M | } |
Line | Count | Source | 63 | 1.94M | { | 64 | 1.94M | return AV_BSWAP32C(x); | 65 | 1.94M | } |
Unexecuted instantiation: h264dsp.c:av_bswap32 Unexecuted instantiation: h264idct.c:av_bswap32 Unexecuted instantiation: h264qpel.c:av_bswap32 Line | Count | Source | 63 | 96.2M | { | 64 | 96.2M | return AV_BSWAP32C(x); | 65 | 96.2M | } |
Line | Count | Source | 63 | 857k | { | 64 | 857k | return AV_BSWAP32C(x); | 65 | 857k | } |
Line | Count | Source | 63 | 100M | { | 64 | 100M | return AV_BSWAP32C(x); | 65 | 100M | } |
Line | Count | Source | 63 | 1.49M | { | 64 | 1.49M | return AV_BSWAP32C(x); | 65 | 1.49M | } |
jpegxl_parser.c:av_bswap32 Line | Count | Source | 63 | 70 | { | 64 | 70 | return AV_BSWAP32C(x); | 65 | 70 | } |
Line | Count | Source | 63 | 2.65M | { | 64 | 2.65M | return AV_BSWAP32C(x); | 65 | 2.65M | } |
Unexecuted instantiation: mpeg4video_parser.c:av_bswap32 Unexecuted instantiation: rangecoder.c:av_bswap32 Unexecuted instantiation: startcode.c:av_bswap32 Unexecuted instantiation: tak.c:av_bswap32 Line | Count | Source | 63 | 82.6M | { | 64 | 82.6M | return AV_BSWAP32C(x); | 65 | 82.6M | } |
Unexecuted instantiation: vc1data.c:av_bswap32 Line | Count | Source | 63 | 17.6M | { | 64 | 17.6M | return AV_BSWAP32C(x); | 65 | 17.6M | } |
Line | Count | Source | 63 | 49.9M | { | 64 | 49.9M | return AV_BSWAP32C(x); | 65 | 49.9M | } |
dolby_e_parse.c:av_bswap32 Line | Count | Source | 63 | 3.19M | { | 64 | 3.19M | return AV_BSWAP32C(x); | 65 | 3.19M | } |
Unexecuted instantiation: ffv1.c:av_bswap32 Unexecuted instantiation: ffv1_parse.c:av_bswap32 Line | Count | Source | 63 | 76.4M | { | 64 | 76.4M | return AV_BSWAP32C(x); | 65 | 76.4M | } |
Line | Count | Source | 63 | 28.6M | { | 64 | 28.6M | return AV_BSWAP32C(x); | 65 | 28.6M | } |
Unexecuted instantiation: parse.c:av_bswap32 jpegxl_parse.c:av_bswap32 Line | Count | Source | 63 | 23.4k | { | 64 | 23.4k | return AV_BSWAP32C(x); | 65 | 23.4k | } |
Unexecuted instantiation: aom_film_grain.c:av_bswap32 Line | Count | Source | 63 | 255k | { | 64 | 255k | return AV_BSWAP32C(x); | 65 | 255k | } |
dynamic_hdr_vivid.c:av_bswap32 Line | Count | Source | 63 | 153k | { | 64 | 153k | return AV_BSWAP32C(x); | 65 | 153k | } |
Unexecuted instantiation: adler32.c:av_bswap32 Line | Count | Source | 63 | 30.2k | { | 64 | 30.2k | return AV_BSWAP32C(x); | 65 | 30.2k | } |
hdr_dynamic_metadata.c:av_bswap32 Line | Count | Source | 63 | 1.59M | { | 64 | 1.59M | return AV_BSWAP32C(x); | 65 | 1.59M | } |
Unexecuted instantiation: imgutils.c:av_bswap32 Unexecuted instantiation: mem.c:av_bswap32 Unexecuted instantiation: pixdesc.c:av_bswap32 Unexecuted instantiation: random_seed.c:av_bswap32 Unexecuted instantiation: sha.c:av_bswap32 Unexecuted instantiation: target_dem_fuzzer.c:av_bswap32 Unexecuted instantiation: alp.c:av_bswap32 Unexecuted instantiation: amr.c:av_bswap32 Unexecuted instantiation: anm.c:av_bswap32 Line | Count | Source | 63 | 12.9M | { | 64 | 12.9M | return AV_BSWAP32C(x); | 65 | 12.9M | } |
Unexecuted instantiation: ape.c:av_bswap32 Unexecuted instantiation: apm.c:av_bswap32 Line | Count | Source | 63 | 1.70M | { | 64 | 1.70M | return AV_BSWAP32C(x); | 65 | 1.70M | } |
Line | Count | Source | 63 | 1.48M | { | 64 | 1.48M | return AV_BSWAP32C(x); | 65 | 1.48M | } |
Unexecuted instantiation: argo_asf.c:av_bswap32 Unexecuted instantiation: argo_brp.c:av_bswap32 Unexecuted instantiation: argo_cvg.c:av_bswap32 Unexecuted instantiation: asfdec_f.c:av_bswap32 Line | Count | Source | 63 | 717 | { | 64 | 717 | return AV_BSWAP32C(x); | 65 | 717 | } |
Unexecuted instantiation: au.c:av_bswap32 Line | Count | Source | 63 | 4.19M | { | 64 | 4.19M | return AV_BSWAP32C(x); | 65 | 4.19M | } |
Unexecuted instantiation: avformat.c:av_bswap32 Unexecuted instantiation: avidec.c:av_bswap32 Unexecuted instantiation: aviobuf.c:av_bswap32 Unexecuted instantiation: avr.c:av_bswap32 Line | Count | Source | 63 | 924k | { | 64 | 924k | return AV_BSWAP32C(x); | 65 | 924k | } |
Unexecuted instantiation: bethsoftvid.c:av_bswap32 Unexecuted instantiation: bfi.c:av_bswap32 Unexecuted instantiation: bink.c:av_bswap32 Line | Count | Source | 63 | 924k | { | 64 | 924k | return AV_BSWAP32C(x); | 65 | 924k | } |
Unexecuted instantiation: bintext.c:av_bswap32 Line | Count | Source | 63 | 560 | { | 64 | 560 | return AV_BSWAP32C(x); | 65 | 560 | } |
Unexecuted instantiation: boadec.c:av_bswap32 Unexecuted instantiation: bonk.c:av_bswap32 Line | Count | Source | 63 | 4.29k | { | 64 | 4.29k | return AV_BSWAP32C(x); | 65 | 4.29k | } |
Unexecuted instantiation: c93.c:av_bswap32 Line | Count | Source | 63 | 962k | { | 64 | 962k | return AV_BSWAP32C(x); | 65 | 962k | } |
Line | Count | Source | 63 | 536k | { | 64 | 536k | return AV_BSWAP32C(x); | 65 | 536k | } |
Unexecuted instantiation: cinedec.c:av_bswap32 Unexecuted instantiation: codec2.c:av_bswap32 Unexecuted instantiation: concatdec.c:av_bswap32 Unexecuted instantiation: demux.c:av_bswap32 Unexecuted instantiation: demux_utils.c:av_bswap32 Unexecuted instantiation: derf.c:av_bswap32 Unexecuted instantiation: dfa.c:av_bswap32 Unexecuted instantiation: dhav.c:av_bswap32 Line | Count | Source | 63 | 14.8M | { | 64 | 14.8M | return AV_BSWAP32C(x); | 65 | 14.8M | } |
Line | Count | Source | 63 | 4.47M | { | 64 | 4.47M | return AV_BSWAP32C(x); | 65 | 4.47M | } |
Unexecuted instantiation: dsfdec.c:av_bswap32 Unexecuted instantiation: dsicin.c:av_bswap32 Unexecuted instantiation: dss.c:av_bswap32 Line | Count | Source | 63 | 2.33M | { | 64 | 2.33M | return AV_BSWAP32C(x); | 65 | 2.33M | } |
Line | Count | Source | 63 | 1.84M | { | 64 | 1.84M | return AV_BSWAP32C(x); | 65 | 1.84M | } |
Unexecuted instantiation: dump.c:av_bswap32 Line | Count | Source | 63 | 3.47G | { | 64 | 3.47G | return AV_BSWAP32C(x); | 65 | 3.47G | } |
Unexecuted instantiation: dvbsub.c:av_bswap32 Line | Count | Source | 63 | 4.02k | { | 64 | 4.02k | return AV_BSWAP32C(x); | 65 | 4.02k | } |
electronicarts.c:av_bswap32 Line | Count | Source | 63 | 14.8k | { | 64 | 14.8k | return AV_BSWAP32C(x); | 65 | 14.8k | } |
Unexecuted instantiation: epafdec.c:av_bswap32 Line | Count | Source | 63 | 986k | { | 64 | 986k | return AV_BSWAP32C(x); | 65 | 986k | } |
Unexecuted instantiation: filmstripdec.c:av_bswap32 Line | Count | Source | 63 | 1.23G | { | 64 | 1.23G | return AV_BSWAP32C(x); | 65 | 1.23G | } |
Unexecuted instantiation: flic.c:av_bswap32 Unexecuted instantiation: frmdec.c:av_bswap32 Unexecuted instantiation: fsb.c:av_bswap32 Unexecuted instantiation: fwse.c:av_bswap32 Unexecuted instantiation: gdv.c:av_bswap32 Unexecuted instantiation: genh.c:av_bswap32 Unexecuted instantiation: gifdec.c:av_bswap32 Line | Count | Source | 63 | 570M | { | 64 | 570M | return AV_BSWAP32C(x); | 65 | 570M | } |
Line | Count | Source | 63 | 6.27M | { | 64 | 6.27M | return AV_BSWAP32C(x); | 65 | 6.27M | } |
Line | Count | Source | 63 | 1.94k | { | 64 | 1.94k | return AV_BSWAP32C(x); | 65 | 1.94k | } |
Line | Count | Source | 63 | 757 | { | 64 | 757 | return AV_BSWAP32C(x); | 65 | 757 | } |
Line | Count | Source | 63 | 26.0k | { | 64 | 26.0k | return AV_BSWAP32C(x); | 65 | 26.0k | } |
Unexecuted instantiation: hls_sample_encryption.c:av_bswap32 Unexecuted instantiation: hnm.c:av_bswap32 Line | Count | Source | 63 | 49.6k | { | 64 | 49.6k | return AV_BSWAP32C(x); | 65 | 49.6k | } |
Line | Count | Source | 63 | 1.18k | { | 64 | 1.18k | return AV_BSWAP32C(x); | 65 | 1.18k | } |
Line | Count | Source | 63 | 2.51M | { | 64 | 2.51M | return AV_BSWAP32C(x); | 65 | 2.51M | } |
Unexecuted instantiation: idcin.c:av_bswap32 Unexecuted instantiation: idroqdec.c:av_bswap32 Line | Count | Source | 63 | 34.9M | { | 64 | 34.9M | return AV_BSWAP32C(x); | 65 | 34.9M | } |
Unexecuted instantiation: imfdec.c:av_bswap32 Unexecuted instantiation: img2_alias_pix.c:av_bswap32 img2_brender_pix.c:av_bswap32 Line | Count | Source | 63 | 848 | { | 64 | 848 | return AV_BSWAP32C(x); | 65 | 848 | } |
Line | Count | Source | 63 | 16.8M | { | 64 | 16.8M | return AV_BSWAP32C(x); | 65 | 16.8M | } |
Unexecuted instantiation: imx.c:av_bswap32 Unexecuted instantiation: ingenientdec.c:av_bswap32 Unexecuted instantiation: ipmovie.c:av_bswap32 Line | Count | Source | 63 | 924k | { | 64 | 924k | return AV_BSWAP32C(x); | 65 | 924k | } |
Unexecuted instantiation: ircamdec.c:av_bswap32 Unexecuted instantiation: isom.c:av_bswap32 Unexecuted instantiation: ivfdec.c:av_bswap32 Unexecuted instantiation: jacosubdec.c:av_bswap32 Unexecuted instantiation: jpegxl_anim_dec.c:av_bswap32 Unexecuted instantiation: kvag.c:av_bswap32 Unexecuted instantiation: lafdec.c:av_bswap32 Unexecuted instantiation: lc3.c:av_bswap32 Line | Count | Source | 63 | 924k | { | 64 | 924k | return AV_BSWAP32C(x); | 65 | 924k | } |
Unexecuted instantiation: loasdec.c:av_bswap32 Unexecuted instantiation: luodatdec.c:av_bswap32 Unexecuted instantiation: lvfdec.c:av_bswap32 Unexecuted instantiation: lxfdec.c:av_bswap32 Line | Count | Source | 63 | 1.53M | { | 64 | 1.53M | return AV_BSWAP32C(x); | 65 | 1.53M | } |
Unexecuted instantiation: mca.c:av_bswap32 Unexecuted instantiation: mccdec.c:av_bswap32 Line | Count | Source | 63 | 925k | { | 64 | 925k | return AV_BSWAP32C(x); | 65 | 925k | } |
Unexecuted instantiation: microdvddec.c:av_bswap32 Line | Count | Source | 63 | 3.47G | { | 64 | 3.47G | return AV_BSWAP32C(x); | 65 | 3.47G | } |
Line | Count | Source | 63 | 6.94G | { | 64 | 6.94G | return AV_BSWAP32C(x); | 65 | 6.94G | } |
Unexecuted instantiation: mlvdec.c:av_bswap32 Unexecuted instantiation: mm.c:av_bswap32 Line | Count | Source | 63 | 5.26k | { | 64 | 5.26k | return AV_BSWAP32C(x); | 65 | 5.26k | } |
Unexecuted instantiation: moflex.c:av_bswap32 Line | Count | Source | 63 | 4.09M | { | 64 | 4.09M | return AV_BSWAP32C(x); | 65 | 4.09M | } |
Line | Count | Source | 63 | 4.02G | { | 64 | 4.02G | return AV_BSWAP32C(x); | 65 | 4.02G | } |
Line | Count | Source | 63 | 90.3M | { | 64 | 90.3M | return AV_BSWAP32C(x); | 65 | 90.3M | } |
Line | Count | Source | 63 | 314 | { | 64 | 314 | return AV_BSWAP32C(x); | 65 | 314 | } |
Line | Count | Source | 63 | 1.86M | { | 64 | 1.86M | return AV_BSWAP32C(x); | 65 | 1.86M | } |
Unexecuted instantiation: mpegvideodec.c:av_bswap32 Unexecuted instantiation: mpl2dec.c:av_bswap32 Line | Count | Source | 63 | 8.11k | { | 64 | 8.11k | return AV_BSWAP32C(x); | 65 | 8.11k | } |
Unexecuted instantiation: msnwc_tcp.c:av_bswap32 Unexecuted instantiation: mspdec.c:av_bswap32 Unexecuted instantiation: mtaf.c:av_bswap32 Unexecuted instantiation: mtv.c:av_bswap32 Line | Count | Source | 63 | 924k | { | 64 | 924k | return AV_BSWAP32C(x); | 65 | 924k | } |
Line | Count | Source | 63 | 924k | { | 64 | 924k | return AV_BSWAP32C(x); | 65 | 924k | } |
Line | Count | Source | 63 | 443k | { | 64 | 443k | return AV_BSWAP32C(x); | 65 | 443k | } |
Unexecuted instantiation: mxg.c:av_bswap32 Line | Count | Source | 63 | 925k | { | 64 | 925k | return AV_BSWAP32C(x); | 65 | 925k | } |
Unexecuted instantiation: nistspheredec.c:av_bswap32 Line | Count | Source | 63 | 1.87M | { | 64 | 1.87M | return AV_BSWAP32C(x); | 65 | 1.87M | } |
Unexecuted instantiation: nsvdec.c:av_bswap32 Line | Count | Source | 63 | 3.44G | { | 64 | 3.44G | return AV_BSWAP32C(x); | 65 | 3.44G | } |
Unexecuted instantiation: nuv.c:av_bswap32 Unexecuted instantiation: oggdec.c:av_bswap32 Unexecuted instantiation: oggparsecelt.c:av_bswap32 oggparsedirac.c:av_bswap32 Line | Count | Source | 63 | 3.22k | { | 64 | 3.22k | return AV_BSWAP32C(x); | 65 | 3.22k | } |
oggparseflac.c:av_bswap32 Line | Count | Source | 63 | 1 | { | 64 | 1 | return AV_BSWAP32C(x); | 65 | 1 | } |
Unexecuted instantiation: oggparseogm.c:av_bswap32 Unexecuted instantiation: oggparseopus.c:av_bswap32 Unexecuted instantiation: oggparseskeleton.c:av_bswap32 Unexecuted instantiation: oggparsespeex.c:av_bswap32 oggparsetheora.c:av_bswap32 Line | Count | Source | 63 | 131k | { | 64 | 131k | return AV_BSWAP32C(x); | 65 | 131k | } |
Unexecuted instantiation: oggparsevorbis.c:av_bswap32 Line | Count | Source | 63 | 2.65k | { | 64 | 2.65k | return AV_BSWAP32C(x); | 65 | 2.65k | } |
Line | Count | Source | 63 | 1.49k | { | 64 | 1.49k | return AV_BSWAP32C(x); | 65 | 1.49k | } |
Unexecuted instantiation: osq.c:av_bswap32 Unexecuted instantiation: pmpdec.c:av_bswap32 Unexecuted instantiation: pp_bnk.c:av_bswap32 Unexecuted instantiation: psxstr.c:av_bswap32 Unexecuted instantiation: pva.c:av_bswap32 Unexecuted instantiation: qcp.c:av_bswap32 Line | Count | Source | 63 | 3.17M | { | 64 | 3.17M | return AV_BSWAP32C(x); | 65 | 3.17M | } |
Unexecuted instantiation: r3d.c:av_bswap32 Unexecuted instantiation: rcwtdec.c:av_bswap32 Line | Count | Source | 63 | 13.6M | { | 64 | 13.6M | return AV_BSWAP32C(x); | 65 | 13.6M | } |
Unexecuted instantiation: replaygain.c:av_bswap32 Unexecuted instantiation: riffdec.c:av_bswap32 Line | Count | Source | 63 | 945k | { | 64 | 945k | return AV_BSWAP32C(x); | 65 | 945k | } |
Unexecuted instantiation: rmdec.c:av_bswap32 Unexecuted instantiation: rsd.c:av_bswap32 Unexecuted instantiation: rsodec.c:av_bswap32 Unexecuted instantiation: s337m.c:av_bswap32 Unexecuted instantiation: sbgdec.c:av_bswap32 Unexecuted instantiation: sccdec.c:av_bswap32 Line | Count | Source | 63 | 4.12M | { | 64 | 4.12M | return AV_BSWAP32C(x); | 65 | 4.12M | } |
Line | Count | Source | 63 | 2.61k | { | 64 | 2.61k | return AV_BSWAP32C(x); | 65 | 2.61k | } |
Unexecuted instantiation: sdr2.c:av_bswap32 Line | Count | Source | 63 | 924k | { | 64 | 924k | return AV_BSWAP32C(x); | 65 | 924k | } |
Line | Count | Source | 63 | 1.84M | { | 64 | 1.84M | return AV_BSWAP32C(x); | 65 | 1.84M | } |
Line | Count | Source | 63 | 1.83M | { | 64 | 1.83M | return AV_BSWAP32C(x); | 65 | 1.83M | } |
Line | Count | Source | 63 | 31.5M | { | 64 | 31.5M | return AV_BSWAP32C(x); | 65 | 31.5M | } |
Line | Count | Source | 63 | 1.01M | { | 64 | 1.01M | return AV_BSWAP32C(x); | 65 | 1.01M | } |
Unexecuted instantiation: sierravmd.c:av_bswap32 Unexecuted instantiation: siff.c:av_bswap32 Unexecuted instantiation: smacker.c:av_bswap32 Line | Count | Source | 63 | 49.3k | { | 64 | 49.3k | return AV_BSWAP32C(x); | 65 | 49.3k | } |
Unexecuted instantiation: sol.c:av_bswap32 Line | Count | Source | 63 | 924k | { | 64 | 924k | return AV_BSWAP32C(x); | 65 | 924k | } |
Unexecuted instantiation: spdif.c:av_bswap32 Unexecuted instantiation: spdifdec.c:av_bswap32 Unexecuted instantiation: srtdec.c:av_bswap32 Unexecuted instantiation: stldec.c:av_bswap32 Unexecuted instantiation: subviewerdec.c:av_bswap32 Unexecuted instantiation: supdec.c:av_bswap32 Unexecuted instantiation: svs.c:av_bswap32 Line | Count | Source | 63 | 162k | { | 64 | 162k | return AV_BSWAP32C(x); | 65 | 162k | } |
Unexecuted instantiation: takdec.c:av_bswap32 Line | Count | Source | 63 | 5.00k | { | 64 | 5.00k | return AV_BSWAP32C(x); | 65 | 5.00k | } |
Unexecuted instantiation: tmv.c:av_bswap32 Unexecuted instantiation: tta.c:av_bswap32 Unexecuted instantiation: tty.c:av_bswap32 Line | Count | Source | 63 | 1.98M | { | 64 | 1.98M | return AV_BSWAP32C(x); | 65 | 1.98M | } |
Line | Count | Source | 63 | 2.81M | { | 64 | 2.81M | return AV_BSWAP32C(x); | 65 | 2.81M | } |
Line | Count | Source | 63 | 3.43G | { | 64 | 3.43G | return AV_BSWAP32C(x); | 65 | 3.43G | } |
Unexecuted instantiation: vc1test.c:av_bswap32 Unexecuted instantiation: vividas.c:av_bswap32 Unexecuted instantiation: voc_packet.c:av_bswap32 Unexecuted instantiation: vocdec.c:av_bswap32 Unexecuted instantiation: vpk.c:av_bswap32 Line | Count | Source | 63 | 2.51k | { | 64 | 2.51k | return AV_BSWAP32C(x); | 65 | 2.51k | } |
Unexecuted instantiation: wady.c:av_bswap32 Unexecuted instantiation: wavdec.c:av_bswap32 Unexecuted instantiation: wc3movie.c:av_bswap32 Unexecuted instantiation: webvttdec.c:av_bswap32 Unexecuted instantiation: westwood_aud.c:av_bswap32 westwood_vqa.c:av_bswap32 Line | Count | Source | 63 | 3.61M | { | 64 | 3.61M | return AV_BSWAP32C(x); | 65 | 3.61M | } |
Line | Count | Source | 63 | 3.92k | { | 64 | 3.92k | return AV_BSWAP32C(x); | 65 | 3.92k | } |
Unexecuted instantiation: wtvdec.c:av_bswap32 Unexecuted instantiation: wvdec.c:av_bswap32 Unexecuted instantiation: xa.c:av_bswap32 Unexecuted instantiation: xmd.c:av_bswap32 Line | Count | Source | 63 | 22.4M | { | 64 | 22.4M | return AV_BSWAP32C(x); | 65 | 22.4M | } |
Line | Count | Source | 63 | 6.65k | { | 64 | 6.65k | return AV_BSWAP32C(x); | 65 | 6.65k | } |
Unexecuted instantiation: yop.c:av_bswap32 Line | Count | Source | 63 | 933k | { | 64 | 933k | return AV_BSWAP32C(x); | 65 | 933k | } |
Line | Count | Source | 63 | 51.0M | { | 64 | 51.0M | return AV_BSWAP32C(x); | 65 | 51.0M | } |
Line | Count | Source | 63 | 933k | { | 64 | 933k | return AV_BSWAP32C(x); | 65 | 933k | } |
Line | Count | Source | 63 | 926k | { | 64 | 926k | return AV_BSWAP32C(x); | 65 | 926k | } |
Line | Count | Source | 63 | 925k | { | 64 | 925k | return AV_BSWAP32C(x); | 65 | 925k | } |
Line | Count | Source | 63 | 924k | { | 64 | 924k | return AV_BSWAP32C(x); | 65 | 924k | } |
Unexecuted instantiation: act.c:av_bswap32 Unexecuted instantiation: adp.c:av_bswap32 Line | Count | Source | 63 | 17.0M | { | 64 | 17.0M | return AV_BSWAP32C(x); | 65 | 17.0M | } |
Unexecuted instantiation: aeadec.c:av_bswap32 Line | Count | Source | 63 | 12.8k | { | 64 | 12.8k | return AV_BSWAP32C(x); | 65 | 12.8k | } |
Line | Count | Source | 63 | 303 | { | 64 | 303 | return AV_BSWAP32C(x); | 65 | 303 | } |
Unexecuted instantiation: asfcrypt.c:av_bswap32 Unexecuted instantiation: dash.c:av_bswap32 Unexecuted instantiation: dovi_isom.c:av_bswap32 flac_picture.c:av_bswap32 Line | Count | Source | 63 | 159k | { | 64 | 159k | return AV_BSWAP32C(x); | 65 | 159k | } |
Line | Count | Source | 63 | 7.54M | { | 64 | 7.54M | return AV_BSWAP32C(x); | 65 | 7.54M | } |
Unexecuted instantiation: iamf_reader.c:av_bswap32 Unexecuted instantiation: wv.c:av_bswap32 Line | Count | Source | 63 | 444k | { | 64 | 444k | return AV_BSWAP32C(x); | 65 | 444k | } |
Unexecuted instantiation: dv_profile.c:av_bswap32 Unexecuted instantiation: aes.c:av_bswap32 Unexecuted instantiation: aes_ctr.c:av_bswap32 Line | Count | Source | 63 | 23.1k | { | 64 | 23.1k | return AV_BSWAP32C(x); | 65 | 23.1k | } |
Line | Count | Source | 63 | 251k | { | 64 | 251k | return AV_BSWAP32C(x); | 65 | 251k | } |
encryption_info.c:av_bswap32 Line | Count | Source | 63 | 2.50k | { | 64 | 2.50k | return AV_BSWAP32C(x); | 65 | 2.50k | } |
Unexecuted instantiation: lzo.c:av_bswap32 Line | Count | Source | 63 | 9.76M | { | 64 | 9.76M | return AV_BSWAP32C(x); | 65 | 9.76M | } |
Unexecuted instantiation: target_dec_fuzzer.c:av_bswap32 Line | Count | Source | 63 | 156M | { | 64 | 156M | return AV_BSWAP32C(x); | 65 | 156M | } |
Unexecuted instantiation: lfg.c:av_bswap32 Unexecuted instantiation: md5.c:av_bswap32 Line | Count | Source | 63 | 22.8M | { | 64 | 22.8M | return AV_BSWAP32C(x); | 65 | 22.8M | } |
Unexecuted instantiation: libtheoraenc.c:av_bswap32 Unexecuted instantiation: enc.c:av_bswap32 Unexecuted instantiation: enc_psy.c:av_bswap32 Unexecuted instantiation: pvq.c:av_bswap32 Line | Count | Source | 63 | 19.7M | { | 64 | 19.7M | return AV_BSWAP32C(x); | 65 | 19.7M | } |
Unexecuted instantiation: celt_pvq_init.c:av_bswap32 Unexecuted instantiation: celt.c:av_bswap32 Line | Count | Source | 63 | 97.5M | { | 64 | 97.5M | return AV_BSWAP32C(x); | 65 | 97.5M | } |
Unexecuted instantiation: msgsmdec.c:av_bswap32 Line | Count | Source | 63 | 23.2M | { | 64 | 23.2M | return AV_BSWAP32C(x); | 65 | 23.2M | } |
Line | Count | Source | 63 | 70.2M | { | 64 | 70.2M | return AV_BSWAP32C(x); | 65 | 70.2M | } |
Line | Count | Source | 63 | 524M | { | 64 | 524M | return AV_BSWAP32C(x); | 65 | 524M | } |
Line | Count | Source | 63 | 83.7M | { | 64 | 83.7M | return AV_BSWAP32C(x); | 65 | 83.7M | } |
Unexecuted instantiation: wmaenc.c:av_bswap32 Line | Count | Source | 63 | 124M | { | 64 | 124M | return AV_BSWAP32C(x); | 65 | 124M | } |
Unexecuted instantiation: target_bsf_fuzzer.c:av_bswap32 Line | Count | Source | 63 | 3.17M | { | 64 | 3.17M | return AV_BSWAP32C(x); | 65 | 3.17M | } |
Line | Count | Source | 63 | 4.29M | { | 64 | 4.29M | return AV_BSWAP32C(x); | 65 | 4.29M | } |
Unexecuted instantiation: cfhddata.c:av_bswap32 Line | Count | Source | 63 | 27.1M | { | 64 | 27.1M | return AV_BSWAP32C(x); | 65 | 27.1M | } |
Unexecuted instantiation: escape130.c:av_bswap32 Unexecuted instantiation: mvcdec.c:av_bswap32 Unexecuted instantiation: alacenc.c:av_bswap32 Line | Count | Source | 63 | 57.7k | { | 64 | 57.7k | return AV_BSWAP32C(x); | 65 | 57.7k | } |
Unexecuted instantiation: adpcmenc.c:av_bswap32 Line | Count | Source | 63 | 9.03M | { | 64 | 9.03M | return AV_BSWAP32C(x); | 65 | 9.03M | } |
Unexecuted instantiation: pnmenc.c:av_bswap32 Unexecuted instantiation: dirac_arith.c:av_bswap32 Unexecuted instantiation: libvpxdec.c:av_bswap32 Unexecuted instantiation: eac3enc.c:av_bswap32 Unexecuted instantiation: ac3enc.c:av_bswap32 Line | Count | Source | 63 | 5.40M | { | 64 | 5.40M | return AV_BSWAP32C(x); | 65 | 5.40M | } |
Unexecuted instantiation: aacenc.c:av_bswap32 Unexecuted instantiation: aaccoder.c:av_bswap32 Unexecuted instantiation: aacenc_is.c:av_bswap32 Unexecuted instantiation: aacenc_tns.c:av_bswap32 Unexecuted instantiation: bethsoftvideo.c:av_bswap32 Line | Count | Source | 63 | 4.40M | { | 64 | 4.40M | return AV_BSWAP32C(x); | 65 | 4.40M | } |
Unexecuted instantiation: dxvenc.c:av_bswap32 Unexecuted instantiation: texturedspenc.c:av_bswap32 Line | Count | Source | 63 | 246M | { | 64 | 246M | return AV_BSWAP32C(x); | 65 | 246M | } |
aacdec_fixed.c:av_bswap32 Line | Count | Source | 63 | 8.37M | { | 64 | 8.37M | return AV_BSWAP32C(x); | 65 | 8.37M | } |
aacdec_float.c:av_bswap32 Line | Count | Source | 63 | 1.07M | { | 64 | 1.07M | return AV_BSWAP32C(x); | 65 | 1.07M | } |
Unexecuted instantiation: aacdec_tab.c:av_bswap32 Line | Count | Source | 63 | 125M | { | 64 | 125M | return AV_BSWAP32C(x); | 65 | 125M | } |
aacps_common.c:av_bswap32 Line | Count | Source | 63 | 6.01M | { | 64 | 6.01M | return AV_BSWAP32C(x); | 65 | 6.01M | } |
Line | Count | Source | 63 | 11.0M | { | 64 | 11.0M | return AV_BSWAP32C(x); | 65 | 11.0M | } |
aacsbr_fixed.c:av_bswap32 Line | Count | Source | 63 | 7.81M | { | 64 | 7.81M | return AV_BSWAP32C(x); | 65 | 7.81M | } |
Line | Count | Source | 63 | 108k | { | 64 | 108k | return AV_BSWAP32C(x); | 65 | 108k | } |
Line | Count | Source | 63 | 402k | { | 64 | 402k | return AV_BSWAP32C(x); | 65 | 402k | } |
Unexecuted instantiation: aacps_fixed.c:av_bswap32 Unexecuted instantiation: aacps_float.c:av_bswap32 Unexecuted instantiation: ptx.c:av_bswap32 Line | Count | Source | 63 | 555M | { | 64 | 555M | return AV_BSWAP32C(x); | 65 | 555M | } |
Unexecuted instantiation: mjpegdec_common.c:av_bswap32 Line | Count | Source | 63 | 27.7M | { | 64 | 27.7M | return AV_BSWAP32C(x); | 65 | 27.7M | } |
Line | Count | Source | 63 | 90.9M | { | 64 | 90.9M | return AV_BSWAP32C(x); | 65 | 90.9M | } |
Line | Count | Source | 63 | 36.0k | { | 64 | 36.0k | return AV_BSWAP32C(x); | 65 | 36.0k | } |
Line | Count | Source | 63 | 1.27M | { | 64 | 1.27M | return AV_BSWAP32C(x); | 65 | 1.27M | } |
Unexecuted instantiation: pngdsp.c:av_bswap32 Unexecuted instantiation: msvideo1.c:av_bswap32 Unexecuted instantiation: rtsp.c:av_bswap32 Unexecuted instantiation: rtspdec.c:av_bswap32 Unexecuted instantiation: sapdec.c:av_bswap32 Unexecuted instantiation: udp.c:av_bswap32 Unexecuted instantiation: rdt.c:av_bswap32 Unexecuted instantiation: rtpdec.c:av_bswap32 Unexecuted instantiation: rtpdec_asf.c:av_bswap32 Unexecuted instantiation: rtpdec_h261.c:av_bswap32 Unexecuted instantiation: rtpdec_h263.c:av_bswap32 Unexecuted instantiation: rtpdec_h263_rfc2190.c:av_bswap32 Unexecuted instantiation: rtpdec_h264.c:av_bswap32 Unexecuted instantiation: rtpdec_jpeg.c:av_bswap32 Unexecuted instantiation: rtpdec_latm.c:av_bswap32 Unexecuted instantiation: rtpdec_mpa_robust.c:av_bswap32 Unexecuted instantiation: rtpdec_mpeg12.c:av_bswap32 Unexecuted instantiation: rtpdec_mpeg4.c:av_bswap32 Unexecuted instantiation: rtpdec_opus.c:av_bswap32 Unexecuted instantiation: rtpdec_qdm2.c:av_bswap32 Unexecuted instantiation: rtpdec_qt.c:av_bswap32 Unexecuted instantiation: rtpdec_svq3.c:av_bswap32 Unexecuted instantiation: rtpdec_vc2hq.c:av_bswap32 Unexecuted instantiation: rtpdec_vp8.c:av_bswap32 Unexecuted instantiation: rtpdec_vp9.c:av_bswap32 Unexecuted instantiation: rtpdec_xiph.c:av_bswap32 Unexecuted instantiation: srtp.c:av_bswap32 Line | Count | Source | 63 | 35.4M | { | 64 | 35.4M | return AV_BSWAP32C(x); | 65 | 35.4M | } |
Unexecuted instantiation: h264_direct.c:av_bswap32 Line | Count | Source | 63 | 1.30M | { | 64 | 1.30M | return AV_BSWAP32C(x); | 65 | 1.30M | } |
Unexecuted instantiation: h264_picture.c:av_bswap32 Line | Count | Source | 63 | 6.34M | { | 64 | 6.34M | return AV_BSWAP32C(x); | 65 | 6.34M | } |
Line | Count | Source | 63 | 32.6M | { | 64 | 32.6M | return AV_BSWAP32C(x); | 65 | 32.6M | } |
Unexecuted instantiation: h264pred.c:av_bswap32 Unexecuted instantiation: h274.c:av_bswap32 Unexecuted instantiation: h264_cabac.c:av_bswap32 Unexecuted instantiation: h264_loopfilter.c:av_bswap32 Unexecuted instantiation: sha512.c:av_bswap32 Unexecuted instantiation: bmp.c:av_bswap32 Unexecuted instantiation: msrledec.c:av_bswap32 Unexecuted instantiation: sbcenc.c:av_bswap32 Unexecuted instantiation: sbcdsp.c:av_bswap32 Line | Count | Source | 63 | 349M | { | 64 | 349M | return AV_BSWAP32C(x); | 65 | 349M | } |
Line | Count | Source | 63 | 29.5k | { | 64 | 29.5k | return AV_BSWAP32C(x); | 65 | 29.5k | } |
Unexecuted instantiation: mlz.c:av_bswap32 Line | Count | Source | 63 | 59.6k | { | 64 | 59.6k | return AV_BSWAP32C(x); | 65 | 59.6k | } |
Line | Count | Source | 63 | 246k | { | 64 | 246k | return AV_BSWAP32C(x); | 65 | 246k | } |
Unexecuted instantiation: libfdk-aacenc.c:av_bswap32 Line | Count | Source | 63 | 159k | { | 64 | 159k | return AV_BSWAP32C(x); | 65 | 159k | } |
Line | Count | Source | 63 | 16.4k | { | 64 | 16.4k | return AV_BSWAP32C(x); | 65 | 16.4k | } |
Unexecuted instantiation: mxpegdec.c:av_bswap32 Line | Count | Source | 63 | 3.00M | { | 64 | 3.00M | return AV_BSWAP32C(x); | 65 | 3.00M | } |
Line | Count | Source | 63 | 57.8M | { | 64 | 57.8M | return AV_BSWAP32C(x); | 65 | 57.8M | } |
Unexecuted instantiation: aptxdec.c:av_bswap32 Unexecuted instantiation: aptx.c:av_bswap32 Line | Count | Source | 63 | 154k | { | 64 | 154k | return AV_BSWAP32C(x); | 65 | 154k | } |
Line | Count | Source | 63 | 17.3M | { | 64 | 17.3M | return AV_BSWAP32C(x); | 65 | 17.3M | } |
proresenc_anatoliy.c:av_bswap32 Line | Count | Source | 63 | 12.7M | { | 64 | 12.7M | return AV_BSWAP32C(x); | 65 | 12.7M | } |
Line | Count | Source | 63 | 54.2k | { | 64 | 54.2k | return AV_BSWAP32C(x); | 65 | 54.2k | } |
Line | Count | Source | 63 | 41.8M | { | 64 | 41.8M | return AV_BSWAP32C(x); | 65 | 41.8M | } |
Line | Count | Source | 63 | 535M | { | 64 | 535M | return AV_BSWAP32C(x); | 65 | 535M | } |
Unexecuted instantiation: vc1_loopfilter.c:av_bswap32 Unexecuted instantiation: vc1_mc.c:av_bswap32 Unexecuted instantiation: vc1_pred.c:av_bswap32 Unexecuted instantiation: flashsvenc.c:av_bswap32 Unexecuted instantiation: rtv1.c:av_bswap32 Unexecuted instantiation: texturedsp.c:av_bswap32 mpegaudiodec_float.c:av_bswap32 Line | Count | Source | 63 | 261M | { | 64 | 261M | return AV_BSWAP32C(x); | 65 | 261M | } |
Unexecuted instantiation: avuienc.c:av_bswap32 Line | Count | Source | 63 | 22.7k | { | 64 | 22.7k | return AV_BSWAP32C(x); | 65 | 22.7k | } |
Line | Count | Source | 63 | 106M | { | 64 | 106M | return AV_BSWAP32C(x); | 65 | 106M | } |
Unexecuted instantiation: 8bps.c:av_bswap32 Line | Count | Source | 63 | 6.81M | { | 64 | 6.81M | return AV_BSWAP32C(x); | 65 | 6.81M | } |
Line | Count | Source | 63 | 1.37k | { | 64 | 1.37k | return AV_BSWAP32C(x); | 65 | 1.37k | } |
Unexecuted instantiation: dxv.c:av_bswap32 Unexecuted instantiation: lzf.c:av_bswap32 Unexecuted instantiation: mmvideo.c:av_bswap32 Unexecuted instantiation: pafvideo.c:av_bswap32 Unexecuted instantiation: vmdvideo.c:av_bswap32 Line | Count | Source | 63 | 1.79M | { | 64 | 1.79M | return AV_BSWAP32C(x); | 65 | 1.79M | } |
atrac3plusdec.c:av_bswap32 Line | Count | Source | 63 | 1.11M | { | 64 | 1.11M | return AV_BSWAP32C(x); | 65 | 1.11M | } |
Unexecuted instantiation: atrac3plusdsp.c:av_bswap32 Line | Count | Source | 63 | 20.6M | { | 64 | 20.6M | return AV_BSWAP32C(x); | 65 | 20.6M | } |
Line | Count | Source | 63 | 86.5M | { | 64 | 86.5M | return AV_BSWAP32C(x); | 65 | 86.5M | } |
Line | Count | Source | 63 | 3.73k | { | 64 | 3.73k | return AV_BSWAP32C(x); | 65 | 3.73k | } |
Line | Count | Source | 63 | 70.7M | { | 64 | 70.7M | return AV_BSWAP32C(x); | 65 | 70.7M | } |
Unexecuted instantiation: lzw.c:av_bswap32 Unexecuted instantiation: dvbsubenc.c:av_bswap32 ac3dec_float.c:av_bswap32 Line | Count | Source | 63 | 133M | { | 64 | 133M | return AV_BSWAP32C(x); | 65 | 133M | } |
Unexecuted instantiation: vp8.c:av_bswap32 Unexecuted instantiation: vp8dsp.c:av_bswap32 Unexecuted instantiation: vpx_rac.c:av_bswap32 Line | Count | Source | 63 | 27.5M | { | 64 | 27.5M | return AV_BSWAP32C(x); | 65 | 27.5M | } |
Unexecuted instantiation: vb.c:av_bswap32 Line | Count | Source | 63 | 3.32M | { | 64 | 3.32M | return AV_BSWAP32C(x); | 65 | 3.32M | } |
Line | Count | Source | 63 | 313k | { | 64 | 313k | return AV_BSWAP32C(x); | 65 | 313k | } |
Line | Count | Source | 63 | 50.1k | { | 64 | 50.1k | return AV_BSWAP32C(x); | 65 | 50.1k | } |
Unexecuted instantiation: dpcm.c:av_bswap32 Unexecuted instantiation: roqaudioenc.c:av_bswap32 Line | Count | Source | 63 | 44.0M | { | 64 | 44.0M | return AV_BSWAP32C(x); | 65 | 44.0M | } |
Unexecuted instantiation: ulti.c:av_bswap32 Line | Count | Source | 63 | 23.0M | { | 64 | 23.0M | return AV_BSWAP32C(x); | 65 | 23.0M | } |
Unexecuted instantiation: roqvideodec.c:av_bswap32 Line | Count | Source | 63 | 24.0M | { | 64 | 24.0M | return AV_BSWAP32C(x); | 65 | 24.0M | } |
Unexecuted instantiation: dvaudiodec.c:av_bswap32 Line | Count | Source | 63 | 2.33M | { | 64 | 2.33M | return AV_BSWAP32C(x); | 65 | 2.33M | } |
Line | Count | Source | 63 | 72.2M | { | 64 | 72.2M | return AV_BSWAP32C(x); | 65 | 72.2M | } |
Unexecuted instantiation: vp56.c:av_bswap32 Unexecuted instantiation: vp56data.c:av_bswap32 Unexecuted instantiation: vp3dsp.c:av_bswap32 Line | Count | Source | 63 | 20.5M | { | 64 | 20.5M | return AV_BSWAP32C(x); | 65 | 20.5M | } |
Line | Count | Source | 63 | 408k | { | 64 | 408k | return AV_BSWAP32C(x); | 65 | 408k | } |
Unexecuted instantiation: vp5.c:av_bswap32 Line | Count | Source | 63 | 14.1M | { | 64 | 14.1M | return AV_BSWAP32C(x); | 65 | 14.1M | } |
Unexecuted instantiation: lcldec.c:av_bswap32 Unexecuted instantiation: indeo5.c:av_bswap32 Unexecuted instantiation: ivi.c:av_bswap32 Unexecuted instantiation: ivi_dsp.c:av_bswap32 Unexecuted instantiation: prosumer.c:av_bswap32 Line | Count | Source | 63 | 148M | { | 64 | 148M | return AV_BSWAP32C(x); | 65 | 148M | } |
Line | Count | Source | 63 | 139k | { | 64 | 139k | return AV_BSWAP32C(x); | 65 | 139k | } |
Line | Count | Source | 63 | 150k | { | 64 | 150k | return AV_BSWAP32C(x); | 65 | 150k | } |
Unexecuted instantiation: proresdsp.c:av_bswap32 Line | Count | Source | 63 | 920k | { | 64 | 920k | return AV_BSWAP32C(x); | 65 | 920k | } |
mpegaudiodec_fixed.c:av_bswap32 Line | Count | Source | 63 | 261M | { | 64 | 261M | return AV_BSWAP32C(x); | 65 | 261M | } |
Line | Count | Source | 63 | 457M | { | 64 | 457M | return AV_BSWAP32C(x); | 65 | 457M | } |
Line | Count | Source | 63 | 102M | { | 64 | 102M | return AV_BSWAP32C(x); | 65 | 102M | } |
Unexecuted instantiation: dsicinvideo.c:av_bswap32 Unexecuted instantiation: flashsv2enc.c:av_bswap32 Unexecuted instantiation: mpegaudioenc.c:av_bswap32 Unexecuted instantiation: wnv1.c:av_bswap32 Unexecuted instantiation: libvpxenc.c:av_bswap32 Unexecuted instantiation: xl.c:av_bswap32 Line | Count | Source | 63 | 2.01M | { | 64 | 2.01M | return AV_BSWAP32C(x); | 65 | 2.01M | } |
Line | Count | Source | 63 | 47.2M | { | 64 | 47.2M | return AV_BSWAP32C(x); | 65 | 47.2M | } |
Line | Count | Source | 63 | 44.6M | { | 64 | 44.6M | return AV_BSWAP32C(x); | 65 | 44.6M | } |
Unexecuted instantiation: tscc.c:av_bswap32 Unexecuted instantiation: ljpegenc.c:av_bswap32 Unexecuted instantiation: movtextenc.c:av_bswap32 Unexecuted instantiation: g723_1enc.c:av_bswap32 Unexecuted instantiation: eatqi.c:av_bswap32 Line | Count | Source | 63 | 242k | { | 64 | 242k | return AV_BSWAP32C(x); | 65 | 242k | } |
Unexecuted instantiation: lagarithrac.c:av_bswap32 Line | Count | Source | 63 | 20.4M | { | 64 | 20.4M | return AV_BSWAP32C(x); | 65 | 20.4M | } |
Line | Count | Source | 63 | 12.3M | { | 64 | 12.3M | return AV_BSWAP32C(x); | 65 | 12.3M | } |
Line | Count | Source | 63 | 88.7M | { | 64 | 88.7M | return AV_BSWAP32C(x); | 65 | 88.7M | } |
Line | Count | Source | 63 | 2.35M | { | 64 | 2.35M | return AV_BSWAP32C(x); | 65 | 2.35M | } |
Unexecuted instantiation: cavsdata.c:av_bswap32 Unexecuted instantiation: dvenc.c:av_bswap32 Unexecuted instantiation: target_swr_fuzzer.c:av_bswap32 Line | Count | Source | 63 | 590M | { | 64 | 590M | return AV_BSWAP32C(x); | 65 | 590M | } |
Line | Count | Source | 63 | 20.8M | { | 64 | 20.8M | return AV_BSWAP32C(x); | 65 | 20.8M | } |
Unexecuted instantiation: eatgv.c:av_bswap32 Unexecuted instantiation: eatgq.c:av_bswap32 Unexecuted instantiation: binkaudio.c:av_bswap32 Line | Count | Source | 63 | 43.9M | { | 64 | 43.9M | return AV_BSWAP32C(x); | 65 | 43.9M | } |
Unexecuted instantiation: indeo2.c:av_bswap32 Line | Count | Source | 63 | 984k | { | 64 | 984k | return AV_BSWAP32C(x); | 65 | 984k | } |
wmalosslessdec.c:av_bswap32 Line | Count | Source | 63 | 120M | { | 64 | 120M | return AV_BSWAP32C(x); | 65 | 120M | } |
Line | Count | Source | 63 | 913k | { | 64 | 913k | return AV_BSWAP32C(x); | 65 | 913k | } |
Line | Count | Source | 63 | 16.4M | { | 64 | 16.4M | return AV_BSWAP32C(x); | 65 | 16.4M | } |
Line | Count | Source | 63 | 5.96M | { | 64 | 5.96M | return AV_BSWAP32C(x); | 65 | 5.96M | } |
Unexecuted instantiation: mvs.c:av_bswap32 Unexecuted instantiation: pred.c:av_bswap32 Unexecuted instantiation: refs.c:av_bswap32 Unexecuted instantiation: cabac.c:av_bswap32 Line | Count | Source | 63 | 299k | { | 64 | 299k | return AV_BSWAP32C(x); | 65 | 299k | } |
Unexecuted instantiation: filter.c:av_bswap32 Unexecuted instantiation: dsp_init.c:av_bswap32 Unexecuted instantiation: roqvideoenc.c:av_bswap32 Unexecuted instantiation: tscc2.c:av_bswap32 Line | Count | Source | 63 | 354M | { | 64 | 354M | return AV_BSWAP32C(x); | 65 | 354M | } |
Unexecuted instantiation: canopus.c:av_bswap32 Line | Count | Source | 63 | 16.1M | { | 64 | 16.1M | return AV_BSWAP32C(x); | 65 | 16.1M | } |
Line | Count | Source | 63 | 39.9M | { | 64 | 39.9M | return AV_BSWAP32C(x); | 65 | 39.9M | } |
Unexecuted instantiation: pcm-blurayenc.c:av_bswap32 Unexecuted instantiation: fastaudio.c:av_bswap32 Line | Count | Source | 63 | 4.97k | { | 64 | 4.97k | return AV_BSWAP32C(x); | 65 | 4.97k | } |
Line | Count | Source | 63 | 15.6M | { | 64 | 15.6M | return AV_BSWAP32C(x); | 65 | 15.6M | } |
Line | Count | Source | 63 | 603k | { | 64 | 603k | return AV_BSWAP32C(x); | 65 | 603k | } |
Unexecuted instantiation: mscc.c:av_bswap32 Line | Count | Source | 63 | 9.88M | { | 64 | 9.88M | return AV_BSWAP32C(x); | 65 | 9.88M | } |
Unexecuted instantiation: huffyuvencdsp.c:av_bswap32 Unexecuted instantiation: lossless_videoencdsp.c:av_bswap32 Line | Count | Source | 63 | 5.52M | { | 64 | 5.52M | return AV_BSWAP32C(x); | 65 | 5.52M | } |
Unexecuted instantiation: sipr.c:av_bswap32 Unexecuted instantiation: target_sws_fuzzer.c:av_bswap32 Line | Count | Source | 63 | 10 | { | 64 | 10 | return AV_BSWAP32C(x); | 65 | 10 | } |
Unexecuted instantiation: vscale.c:av_bswap32 Unexecuted instantiation: hscale_fast_bilinear_simd.c:av_bswap32 Line | Count | Source | 63 | 6.14k | { | 64 | 6.14k | return AV_BSWAP32C(x); | 65 | 6.14k | } |
Unexecuted instantiation: alphablend.c:av_bswap32 Unexecuted instantiation: graph.c:av_bswap32 Unexecuted instantiation: hscale_fast_bilinear.c:av_bswap32 Line | Count | Source | 63 | 4.82M | { | 64 | 4.82M | return AV_BSWAP32C(x); | 65 | 4.82M | } |
Unexecuted instantiation: options.c:av_bswap32 Line | Count | Source | 63 | 753k | { | 64 | 753k | return AV_BSWAP32C(x); | 65 | 753k | } |
Unexecuted instantiation: rgb2rgb.c:av_bswap32 Unexecuted instantiation: slice.c:av_bswap32 swscale_unscaled.c:av_bswap32 Line | Count | Source | 63 | 186k | { | 64 | 186k | return AV_BSWAP32C(x); | 65 | 186k | } |
Unexecuted instantiation: gamma.c:av_bswap32 Unexecuted instantiation: hscale.c:av_bswap32 Line | Count | Source | 63 | 26.8M | { | 64 | 26.8M | return AV_BSWAP32C(x); | 65 | 26.8M | } |
Unexecuted instantiation: nellymoserdec.c:av_bswap32 Line | Count | Source | 63 | 238k | { | 64 | 238k | return AV_BSWAP32C(x); | 65 | 238k | } |
Unexecuted instantiation: dcaenc.c:av_bswap32 Unexecuted instantiation: dcaadpcm.c:av_bswap32 Unexecuted instantiation: dcadata.c:av_bswap32 Unexecuted instantiation: interplayvideo.c:av_bswap32 Unexecuted instantiation: dec.c:av_bswap32 Unexecuted instantiation: dec_celt.c:av_bswap32 Unexecuted instantiation: silk.c:av_bswap32 Unexecuted instantiation: libopusdec.c:av_bswap32 Unexecuted instantiation: bmpenc.c:av_bswap32 Line | Count | Source | 63 | 3.95M | { | 64 | 3.95M | return AV_BSWAP32C(x); | 65 | 3.95M | } |
Line | Count | Source | 63 | 199k | { | 64 | 199k | return AV_BSWAP32C(x); | 65 | 199k | } |
Line | Count | Source | 63 | 2.98M | { | 64 | 2.98M | return AV_BSWAP32C(x); | 65 | 2.98M | } |
Unexecuted instantiation: exrenc.c:av_bswap32 Unexecuted instantiation: pcm-dvd.c:av_bswap32 Line | Count | Source | 63 | 32.1k | { | 64 | 32.1k | return AV_BSWAP32C(x); | 65 | 32.1k | } |
Unexecuted instantiation: v210dec.c:av_bswap32 Unexecuted instantiation: hdrdec.c:av_bswap32 Line | Count | Source | 63 | 9.20M | { | 64 | 9.20M | return AV_BSWAP32C(x); | 65 | 9.20M | } |
Line | Count | Source | 63 | 365M | { | 64 | 365M | return AV_BSWAP32C(x); | 65 | 365M | } |
Unexecuted instantiation: hnm4video.c:av_bswap32 Line | Count | Source | 63 | 19.4M | { | 64 | 19.4M | return AV_BSWAP32C(x); | 65 | 19.4M | } |
Unexecuted instantiation: metasound.c:av_bswap32 Line | Count | Source | 63 | 690k | { | 64 | 690k | return AV_BSWAP32C(x); | 65 | 690k | } |
Line | Count | Source | 63 | 5.11M | { | 64 | 5.11M | return AV_BSWAP32C(x); | 65 | 5.11M | } |
Unexecuted instantiation: escape124.c:av_bswap32 Unexecuted instantiation: hdrenc.c:av_bswap32 Line | Count | Source | 63 | 295M | { | 64 | 295M | return AV_BSWAP32C(x); | 65 | 295M | } |
Line | Count | Source | 63 | 703M | { | 64 | 703M | return AV_BSWAP32C(x); | 65 | 703M | } |
Unexecuted instantiation: rawenc.c:av_bswap32 Line | Count | Source | 63 | 797k | { | 64 | 797k | return AV_BSWAP32C(x); | 65 | 797k | } |
Unexecuted instantiation: wavpackenc.c:av_bswap32 Line | Count | Source | 63 | 311k | { | 64 | 311k | return AV_BSWAP32C(x); | 65 | 311k | } |
Unexecuted instantiation: pictordec.c:av_bswap32 Line | Count | Source | 63 | 43.3k | { | 64 | 43.3k | return AV_BSWAP32C(x); | 65 | 43.3k | } |
motionpixels.c:av_bswap32 Line | Count | Source | 63 | 884M | { | 64 | 884M | return AV_BSWAP32C(x); | 65 | 884M | } |
Unexecuted instantiation: msp2dec.c:av_bswap32 Line | Count | Source | 63 | 3.73M | { | 64 | 3.73M | return AV_BSWAP32C(x); | 65 | 3.73M | } |
Unexecuted instantiation: vp9block.c:av_bswap32 Unexecuted instantiation: vp9data.c:av_bswap32 Unexecuted instantiation: vp9dsp_10bpp.c:av_bswap32 Unexecuted instantiation: vp9dsp_12bpp.c:av_bswap32 Unexecuted instantiation: vp9dsp_8bpp.c:av_bswap32 Unexecuted instantiation: vp9lpf.c:av_bswap32 Unexecuted instantiation: vp9mvs.c:av_bswap32 Unexecuted instantiation: vp9prob.c:av_bswap32 Unexecuted instantiation: vp9recon.c:av_bswap32 Unexecuted instantiation: vbnenc.c:av_bswap32 Line | Count | Source | 63 | 76.8M | { | 64 | 76.8M | return AV_BSWAP32C(x); | 65 | 76.8M | } |
Unexecuted instantiation: frwu.c:av_bswap32 Unexecuted instantiation: aptxenc.c:av_bswap32 Unexecuted instantiation: intra_utils.c:av_bswap32 Unexecuted instantiation: thread.c:av_bswap32 Unexecuted instantiation: ctu.c:av_bswap32 Unexecuted instantiation: inter.c:av_bswap32 Unexecuted instantiation: intra.c:av_bswap32 Unexecuted instantiation: kmvc.c:av_bswap32 Line | Count | Source | 63 | 1.40M | { | 64 | 1.40M | return AV_BSWAP32C(x); | 65 | 1.40M | } |
Unexecuted instantiation: pcxenc.c:av_bswap32 Line | Count | Source | 63 | 40.3M | { | 64 | 40.3M | return AV_BSWAP32C(x); | 65 | 40.3M | } |
Unexecuted instantiation: kgv1dec.c:av_bswap32 Line | Count | Source | 63 | 101k | { | 64 | 101k | return AV_BSWAP32C(x); | 65 | 101k | } |
Line | Count | Source | 63 | 1.55M | { | 64 | 1.55M | return AV_BSWAP32C(x); | 65 | 1.55M | } |
Line | Count | Source | 63 | 1.61M | { | 64 | 1.61M | return AV_BSWAP32C(x); | 65 | 1.61M | } |
Unexecuted instantiation: pafaudio.c:av_bswap32 Line | Count | Source | 63 | 25.6k | { | 64 | 25.6k | return AV_BSWAP32C(x); | 65 | 25.6k | } |
Line | Count | Source | 63 | 5.06M | { | 64 | 5.06M | return AV_BSWAP32C(x); | 65 | 5.06M | } |
Unexecuted instantiation: dds.c:av_bswap32 Unexecuted instantiation: truemotion2rt.c:av_bswap32 Line | Count | Source | 63 | 7.52k | { | 64 | 7.52k | return AV_BSWAP32C(x); | 65 | 7.52k | } |
Unexecuted instantiation: wcmv.c:av_bswap32 Unexecuted instantiation: v410dec.c:av_bswap32 Line | Count | Source | 63 | 19.1M | { | 64 | 19.1M | return AV_BSWAP32C(x); | 65 | 19.1M | } |
Unexecuted instantiation: rv40dsp.c:av_bswap32 Unexecuted instantiation: gif.c:av_bswap32 Unexecuted instantiation: lzwenc.c:av_bswap32 Line | Count | Source | 63 | 9.02M | { | 64 | 9.02M | return AV_BSWAP32C(x); | 65 | 9.02M | } |
Line | Count | Source | 63 | 15.7M | { | 64 | 15.7M | return AV_BSWAP32C(x); | 65 | 15.7M | } |
Unexecuted instantiation: rasc.c:av_bswap32 Unexecuted instantiation: notchlc.c:av_bswap32 Unexecuted instantiation: fitsenc.c:av_bswap32 Line | Count | Source | 63 | 4.08M | { | 64 | 4.08M | return AV_BSWAP32C(x); | 65 | 4.08M | } |
Unexecuted instantiation: msvideo1enc.c:av_bswap32 Line | Count | Source | 63 | 62.2M | { | 64 | 62.2M | return AV_BSWAP32C(x); | 65 | 62.2M | } |
Line | Count | Source | 63 | 2.85M | { | 64 | 2.85M | return AV_BSWAP32C(x); | 65 | 2.85M | } |
Line | Count | Source | 63 | 8.12M | { | 64 | 8.12M | return AV_BSWAP32C(x); | 65 | 8.12M | } |
Line | Count | Source | 63 | 170k | { | 64 | 170k | return AV_BSWAP32C(x); | 65 | 170k | } |
Unexecuted instantiation: targaenc.c:av_bswap32 Unexecuted instantiation: v308enc.c:av_bswap32 Unexecuted instantiation: zmbv.c:av_bswap32 Unexecuted instantiation: tdsc.c:av_bswap32 Line | Count | Source | 63 | 733k | { | 64 | 733k | return AV_BSWAP32C(x); | 65 | 733k | } |
Line | Count | Source | 63 | 1.27M | { | 64 | 1.27M | return AV_BSWAP32C(x); | 65 | 1.27M | } |
Line | Count | Source | 63 | 54.3k | { | 64 | 54.3k | return AV_BSWAP32C(x); | 65 | 54.3k | } |
Line | Count | Source | 63 | 10.0M | { | 64 | 10.0M | return AV_BSWAP32C(x); | 65 | 10.0M | } |
Line | Count | Source | 63 | 1.37M | { | 64 | 1.37M | return AV_BSWAP32C(x); | 65 | 1.37M | } |
Unexecuted instantiation: mlpenc.c:av_bswap32 Unexecuted instantiation: hapdec.c:av_bswap32 Unexecuted instantiation: snappy.c:av_bswap32 Line | Count | Source | 63 | 26.7M | { | 64 | 26.7M | return AV_BSWAP32C(x); | 65 | 26.7M | } |
Line | Count | Source | 63 | 1.18k | { | 64 | 1.18k | return AV_BSWAP32C(x); | 65 | 1.18k | } |
Unexecuted instantiation: vorbisdec.c:av_bswap32 Line | Count | Source | 63 | 106k | { | 64 | 106k | return AV_BSWAP32C(x); | 65 | 106k | } |
Line | Count | Source | 63 | 477k | { | 64 | 477k | return AV_BSWAP32C(x); | 65 | 477k | } |
Unexecuted instantiation: xxan.c:av_bswap32 Unexecuted instantiation: arbc.c:av_bswap32 Line | Count | Source | 63 | 2.07M | { | 64 | 2.07M | return AV_BSWAP32C(x); | 65 | 2.07M | } |
Unexecuted instantiation: rscc.c:av_bswap32 Unexecuted instantiation: s302menc.c:av_bswap32 Line | Count | Source | 63 | 2.76M | { | 64 | 2.76M | return AV_BSWAP32C(x); | 65 | 2.76M | } |
Line | Count | Source | 63 | 11.0k | { | 64 | 11.0k | return AV_BSWAP32C(x); | 65 | 11.0k | } |
Unexecuted instantiation: dsicinaudio.c:av_bswap32 Unexecuted instantiation: speedhqdec.c:av_bswap32 Unexecuted instantiation: g723_1dec.c:av_bswap32 Line | Count | Source | 63 | 235k | { | 64 | 235k | return AV_BSWAP32C(x); | 65 | 235k | } |
Unexecuted instantiation: msrleenc.c:av_bswap32 Unexecuted instantiation: 012v.c:av_bswap32 Line | Count | Source | 63 | 160M | { | 64 | 160M | return AV_BSWAP32C(x); | 65 | 160M | } |
Unexecuted instantiation: elsdec.c:av_bswap32 Unexecuted instantiation: vorbisenc.c:av_bswap32 Line | Count | Source | 63 | 15.4M | { | 64 | 15.4M | return AV_BSWAP32C(x); | 65 | 15.4M | } |
Unexecuted instantiation: indeo4.c:av_bswap32 Unexecuted instantiation: sp5xdec.c:av_bswap32 Unexecuted instantiation: fmvc.c:av_bswap32 Line | Count | Source | 63 | 404k | { | 64 | 404k | return AV_BSWAP32C(x); | 65 | 404k | } |
Unexecuted instantiation: qpeg.c:av_bswap32 Line | Count | Source | 63 | 105k | { | 64 | 105k | return AV_BSWAP32C(x); | 65 | 105k | } |
Unexecuted instantiation: v210enc.c:av_bswap32 Line | Count | Source | 63 | 31.3M | { | 64 | 31.3M | return AV_BSWAP32C(x); | 65 | 31.3M | } |
Line | Count | Source | 63 | 26.2k | { | 64 | 26.2k | return AV_BSWAP32C(x); | 65 | 26.2k | } |
Unexecuted instantiation: tiffenc.c:av_bswap32 Unexecuted instantiation: apv_decode.c:av_bswap32 Line | Count | Source | 63 | 247M | { | 64 | 247M | return AV_BSWAP32C(x); | 65 | 247M | } |
Unexecuted instantiation: xsubenc.c:av_bswap32 Unexecuted instantiation: libopusenc.c:av_bswap32 Unexecuted instantiation: avs.c:av_bswap32 Line | Count | Source | 63 | 283k | { | 64 | 283k | return AV_BSWAP32C(x); | 65 | 283k | } |
Unexecuted instantiation: imm5.c:av_bswap32 Line | Count | Source | 63 | 5.77M | { | 64 | 5.77M | return AV_BSWAP32C(x); | 65 | 5.77M | } |
Unexecuted instantiation: m101.c:av_bswap32 Unexecuted instantiation: adxenc.c:av_bswap32 Unexecuted instantiation: pcm-bluray.c:av_bswap32 Unexecuted instantiation: dvdsubenc.c:av_bswap32 Unexecuted instantiation: vbndec.c:av_bswap32 Line | Count | Source | 63 | 2 | { | 64 | 2 | return AV_BSWAP32C(x); | 65 | 2 | } |
Line | Count | Source | 63 | 16.0M | { | 64 | 16.0M | return AV_BSWAP32C(x); | 65 | 16.0M | } |
Unexecuted instantiation: targa.c:av_bswap32 Unexecuted instantiation: nellymoserenc.c:av_bswap32 Unexecuted instantiation: tiertexseqv.c:av_bswap32 Unexecuted instantiation: bmvvideo.c:av_bswap32 Unexecuted instantiation: ra144enc.c:av_bswap32 Unexecuted instantiation: aliaspixenc.c:av_bswap32 Unexecuted instantiation: wbmpenc.c:av_bswap32 Unexecuted instantiation: ffwavesynth.c:av_bswap32 Line | Count | Source | 63 | 29.6k | { | 64 | 29.6k | return AV_BSWAP32C(x); | 65 | 29.6k | } |
Line | Count | Source | 63 | 4.11M | { | 64 | 4.11M | return AV_BSWAP32C(x); | 65 | 4.11M | } |
Unexecuted instantiation: aliaspixdec.c:av_bswap32 Unexecuted instantiation: dnxhdenc.c:av_bswap32 Unexecuted instantiation: dnxhdenc_init.c:av_bswap32 Line | Count | Source | 63 | 892k | { | 64 | 892k | return AV_BSWAP32C(x); | 65 | 892k | } |
Unexecuted instantiation: libvorbisdec.c:av_bswap32 Line | Count | Source | 63 | 11.2k | { | 64 | 11.2k | return AV_BSWAP32C(x); | 65 | 11.2k | } |
Line | Count | Source | 63 | 7.01M | { | 64 | 7.01M | return AV_BSWAP32C(x); | 65 | 7.01M | } |
Line | Count | Source | 63 | 8.06M | { | 64 | 8.06M | return AV_BSWAP32C(x); | 65 | 8.06M | } |
Line | Count | Source | 63 | 258k | { | 64 | 258k | return AV_BSWAP32C(x); | 65 | 258k | } |
Line | Count | Source | 63 | 179k | { | 64 | 179k | return AV_BSWAP32C(x); | 65 | 179k | } |
Unexecuted instantiation: aasc.c:av_bswap32 Line | Count | Source | 63 | 11.5M | { | 64 | 11.5M | return AV_BSWAP32C(x); | 65 | 11.5M | } |
ac3dec_fixed.c:av_bswap32 Line | Count | Source | 63 | 23.5M | { | 64 | 23.5M | return AV_BSWAP32C(x); | 65 | 23.5M | } |
Line | Count | Source | 63 | 107k | { | 64 | 107k | return AV_BSWAP32C(x); | 65 | 107k | } |
Unexecuted instantiation: midivid.c:av_bswap32 Unexecuted instantiation: snowenc.c:av_bswap32 Line | Count | Source | 63 | 180M | { | 64 | 180M | return AV_BSWAP32C(x); | 65 | 180M | } |
Line | Count | Source | 63 | 111k | { | 64 | 111k | return AV_BSWAP32C(x); | 65 | 111k | } |
Line | Count | Source | 63 | 1.42M | { | 64 | 1.42M | return AV_BSWAP32C(x); | 65 | 1.42M | } |
Line | Count | Source | 63 | 3.23M | { | 64 | 3.23M | return AV_BSWAP32C(x); | 65 | 3.23M | } |
bitpacked_enc.c:av_bswap32 Line | Count | Source | 63 | 4.26M | { | 64 | 4.26M | return AV_BSWAP32C(x); | 65 | 4.26M | } |
Unexecuted instantiation: pgssubdec.c:av_bswap32 Line | Count | Source | 63 | 3.29M | { | 64 | 3.29M | return AV_BSWAP32C(x); | 65 | 3.29M | } |
Unexecuted instantiation: ra288.c:av_bswap32 Unexecuted instantiation: pcm-dvdenc.c:av_bswap32 Unexecuted instantiation: fitsdec.c:av_bswap32 Unexecuted instantiation: interplayacm.c:av_bswap32 Unexecuted instantiation: mwsc.c:av_bswap32 Line | Count | Source | 63 | 63.6M | { | 64 | 63.6M | return AV_BSWAP32C(x); | 65 | 63.6M | } |
Unexecuted instantiation: ftr.c:av_bswap32 Unexecuted instantiation: cdgraphics.c:av_bswap32 Line | Count | Source | 63 | 210k | { | 64 | 210k | return AV_BSWAP32C(x); | 65 | 210k | } |
Unexecuted instantiation: truemotion1.c:av_bswap32 Line | Count | Source | 63 | 3.62M | { | 64 | 3.62M | return AV_BSWAP32C(x); | 65 | 3.62M | } |
Unexecuted instantiation: agm.c:av_bswap32 Unexecuted instantiation: flacenc.c:av_bswap32 proresenc_kostya.c:av_bswap32 Line | Count | Source | 63 | 7.11M | { | 64 | 7.11M | return AV_BSWAP32C(x); | 65 | 7.11M | } |
Line | Count | Source | 63 | 122k | { | 64 | 122k | return AV_BSWAP32C(x); | 65 | 122k | } |
Line | Count | Source | 63 | 6.15M | { | 64 | 6.15M | return AV_BSWAP32C(x); | 65 | 6.15M | } |
Unexecuted instantiation: tpeldsp.c:av_bswap32 Unexecuted instantiation: ws-snd1.c:av_bswap32 Unexecuted instantiation: flicvideo.c:av_bswap32 Unexecuted instantiation: sbcdec.c:av_bswap32 Unexecuted instantiation: msrle.c:av_bswap32 Unexecuted instantiation: pgxdec.c:av_bswap32 Unexecuted instantiation: cri.c:av_bswap32 Line | Count | Source | 63 | 23.6k | { | 64 | 23.6k | return AV_BSWAP32C(x); | 65 | 23.6k | } |
Line | Count | Source | 63 | 6.28M | { | 64 | 6.28M | return AV_BSWAP32C(x); | 65 | 6.28M | } |
Unexecuted instantiation: ttaenc.c:av_bswap32 Line | Count | Source | 63 | 30.1M | { | 64 | 30.1M | return AV_BSWAP32C(x); | 65 | 30.1M | } |
Line | Count | Source | 63 | 37.8M | { | 64 | 37.8M | return AV_BSWAP32C(x); | 65 | 37.8M | } |
Line | Count | Source | 63 | 5.58M | { | 64 | 5.58M | return AV_BSWAP32C(x); | 65 | 5.58M | } |
Unexecuted instantiation: wbmpdec.c:av_bswap32 Line | Count | Source | 63 | 586k | { | 64 | 586k | return AV_BSWAP32C(x); | 65 | 586k | } |
Line | Count | Source | 63 | 18.5M | { | 64 | 18.5M | return AV_BSWAP32C(x); | 65 | 18.5M | } |
Line | Count | Source | 63 | 317M | { | 64 | 317M | return AV_BSWAP32C(x); | 65 | 317M | } |
Unexecuted instantiation: vble.c:av_bswap32 Line | Count | Source | 63 | 402M | { | 64 | 402M | return AV_BSWAP32C(x); | 65 | 402M | } |
Line | Count | Source | 63 | 1.73M | { | 64 | 1.73M | return AV_BSWAP32C(x); | 65 | 1.73M | } |
Unexecuted instantiation: v410enc.c:av_bswap32 Unexecuted instantiation: cpia.c:av_bswap32 Line | Count | Source | 63 | 309k | { | 64 | 309k | return AV_BSWAP32C(x); | 65 | 309k | } |
Line | Count | Source | 63 | 2.06M | { | 64 | 2.06M | return AV_BSWAP32C(x); | 65 | 2.06M | } |
Unexecuted instantiation: jpeg2000htdec.c:av_bswap32 Line | Count | Source | 63 | 14.5M | { | 64 | 14.5M | return AV_BSWAP32C(x); | 65 | 14.5M | } |
Line | Count | Source | 63 | 12.0M | { | 64 | 12.0M | return AV_BSWAP32C(x); | 65 | 12.0M | } |
Unexecuted instantiation: zmbvenc.c:av_bswap32 Line | Count | Source | 63 | 71.6k | { | 64 | 71.6k | return AV_BSWAP32C(x); | 65 | 71.6k | } |
Line | Count | Source | 63 | 4.27M | { | 64 | 4.27M | return AV_BSWAP32C(x); | 65 | 4.27M | } |
|
66 | | #endif |
67 | | |
68 | | #ifndef av_bswap64 |
69 | | static inline uint64_t av_const av_bswap64(uint64_t x) |
70 | 3.58G | { |
71 | 3.58G | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); |
72 | 3.58G | } Unexecuted instantiation: target_enc_fuzzer.c:av_bswap64 Unexecuted instantiation: decode.c:av_bswap64 Unexecuted instantiation: exif.c:av_bswap64 Line | Count | Source | 70 | 3.10M | { | 71 | 3.10M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 3.10M | } |
Unexecuted instantiation: mpegvideo_enc.c:av_bswap64 Unexecuted instantiation: mpegvideo_motion.c:av_bswap64 Line | Count | Source | 70 | 2.52M | { | 71 | 2.52M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.52M | } |
Unexecuted instantiation: packet.c:av_bswap64 Unexecuted instantiation: pixblockdsp.c:av_bswap64 Unexecuted instantiation: ratecontrol.c:av_bswap64 Unexecuted instantiation: rv10enc.c:av_bswap64 Unexecuted instantiation: rv20enc.c:av_bswap64 Unexecuted instantiation: speedhqenc.c:av_bswap64 Line | Count | Source | 70 | 56.0k | { | 71 | 56.0k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 56.0k | } |
Unexecuted instantiation: utils.c:av_bswap64 Unexecuted instantiation: vlc.c:av_bswap64 Unexecuted instantiation: mpegvideoenc.c:av_bswap64 Line | Count | Source | 70 | 5.22M | { | 71 | 5.22M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 5.22M | } |
aac_adtstoasc.c:av_bswap64 Line | Count | Source | 70 | 7.92k | { | 71 | 7.92k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 7.92k | } |
Unexecuted instantiation: dovi_rpu.c:av_bswap64 Unexecuted instantiation: dts2pts.c:av_bswap64 Unexecuted instantiation: dv_error_marker.c:av_bswap64 Unexecuted instantiation: eac3_core.c:av_bswap64 Unexecuted instantiation: eia608_to_smpte436m.c:av_bswap64 Unexecuted instantiation: evc_frame_merge.c:av_bswap64 Unexecuted instantiation: extract_extradata.c:av_bswap64 Unexecuted instantiation: h264_metadata.c:av_bswap64 Unexecuted instantiation: h264_mp4toannexb.c:av_bswap64 Unexecuted instantiation: h264_redundant_pps.c:av_bswap64 Unexecuted instantiation: h265_metadata.c:av_bswap64 Unexecuted instantiation: h266_metadata.c:av_bswap64 Unexecuted instantiation: hapqa_extract.c:av_bswap64 Unexecuted instantiation: hevc_mp4toannexb.c:av_bswap64 Unexecuted instantiation: imx_dump_header.c:av_bswap64 media100_to_mjpegb.c:av_bswap64 Line | Count | Source | 70 | 241k | { | 71 | 241k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 241k | } |
Unexecuted instantiation: mjpeg2jpeg.c:av_bswap64 Unexecuted instantiation: mjpega_dump_header.c:av_bswap64 Unexecuted instantiation: movsub.c:av_bswap64 Unexecuted instantiation: opus_metadata.c:av_bswap64 Unexecuted instantiation: pgs_frame_merge.c:av_bswap64 Unexecuted instantiation: prores_metadata.c:av_bswap64 Unexecuted instantiation: remove_extradata.c:av_bswap64 Line | Count | Source | 70 | 6.54k | { | 71 | 6.54k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 6.54k | } |
Unexecuted instantiation: vp9_raw_reorder.c:av_bswap64 Unexecuted instantiation: vp9_superframe.c:av_bswap64 Unexecuted instantiation: vp9_superframe_split.c:av_bswap64 Unexecuted instantiation: vvc_mp4toannexb.c:av_bswap64 Line | Count | Source | 70 | 1.59G | { | 71 | 1.59G | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.59G | } |
Unexecuted instantiation: cbs_apv.c:av_bswap64 Line | Count | Source | 70 | 1.45M | { | 71 | 1.45M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.45M | } |
Line | Count | Source | 70 | 217M | { | 71 | 217M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 217M | } |
Line | Count | Source | 70 | 403k | { | 71 | 403k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 403k | } |
Unexecuted instantiation: cbs_sei.c:av_bswap64 Unexecuted instantiation: cbs_vp8.c:av_bswap64 Line | Count | Source | 70 | 7.03k | { | 71 | 7.03k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 7.03k | } |
Line | Count | Source | 70 | 67.0k | { | 71 | 67.0k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 67.0k | } |
Unexecuted instantiation: dovi_rpuenc.c:av_bswap64 Line | Count | Source | 70 | 732k | { | 71 | 732k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 732k | } |
Line | Count | Source | 70 | 5.35M | { | 71 | 5.35M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 5.35M | } |
Line | Count | Source | 70 | 328 | { | 71 | 328 | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 328 | } |
Line | Count | Source | 70 | 653k | { | 71 | 653k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 653k | } |
Unexecuted instantiation: h2645_parse.c:av_bswap64 Unexecuted instantiation: h264_parse.c:av_bswap64 Line | Count | Source | 70 | 7.62M | { | 71 | 7.62M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 7.62M | } |
Unexecuted instantiation: h264data.c:av_bswap64 Unexecuted instantiation: h265_profile_level.c:av_bswap64 Unexecuted instantiation: hap.c:av_bswap64 Unexecuted instantiation: jfdctint.c:av_bswap64 Unexecuted instantiation: jrevdct.c:av_bswap64 Unexecuted instantiation: me_cmp.c:av_bswap64 Line | Count | Source | 70 | 2.41M | { | 71 | 2.41M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.41M | } |
mjpegenc_common.c:av_bswap64 Line | Count | Source | 70 | 4.74M | { | 71 | 4.74M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 4.74M | } |
Unexecuted instantiation: mlp.c:av_bswap64 Unexecuted instantiation: mlp_parse.c:av_bswap64 Unexecuted instantiation: motion_est.c:av_bswap64 Unexecuted instantiation: mpeg12.c:av_bswap64 Line | Count | Source | 70 | 1.22M | { | 71 | 1.22M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.22M | } |
Line | Count | Source | 70 | 8.10k | { | 71 | 8.10k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 8.10k | } |
mpeg4videodec.c:av_bswap64 Line | Count | Source | 70 | 239k | { | 71 | 239k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 239k | } |
mpeg4videoenc.c:av_bswap64 Line | Count | Source | 70 | 776k | { | 71 | 776k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 776k | } |
Unexecuted instantiation: mpegvideo.c:av_bswap64 Unexecuted instantiation: mpegvideo_dec.c:av_bswap64 Unexecuted instantiation: qpeldsp.c:av_bswap64 Unexecuted instantiation: simple_idct.c:av_bswap64 Unexecuted instantiation: smpte_436m.c:av_bswap64 Unexecuted instantiation: videodsp.c:av_bswap64 Unexecuted instantiation: wmv2dec.c:av_bswap64 Unexecuted instantiation: me_cmp_init.c:av_bswap64 Line | Count | Source | 70 | 603M | { | 71 | 603M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 603M | } |
Unexecuted instantiation: adts_header.c:av_bswap64 Unexecuted instantiation: av1_parse.c:av_bswap64 Line | Count | Source | 70 | 6.18k | { | 71 | 6.18k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 6.18k | } |
Unexecuted instantiation: h2645_vui.c:av_bswap64 Unexecuted instantiation: h264chroma.c:av_bswap64 Unexecuted instantiation: hpeldsp.c:av_bswap64 Unexecuted instantiation: intelh263dec.c:av_bswap64 Unexecuted instantiation: intrax8.c:av_bswap64 Unexecuted instantiation: intrax8dsp.c:av_bswap64 Line | Count | Source | 70 | 3.40M | { | 71 | 3.40M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 3.40M | } |
Unexecuted instantiation: mpeg_er.c:av_bswap64 Line | Count | Source | 70 | 92.6k | { | 71 | 92.6k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 92.6k | } |
Unexecuted instantiation: prores_raw_parser.c:av_bswap64 Unexecuted instantiation: rv10.c:av_bswap64 Unexecuted instantiation: rv34_parser.c:av_bswap64 Unexecuted instantiation: tak_parser.c:av_bswap64 Unexecuted instantiation: vc1_parser.c:av_bswap64 Unexecuted instantiation: vc1dsp.c:av_bswap64 Unexecuted instantiation: vorbis_parser.c:av_bswap64 Unexecuted instantiation: vp8_parser.c:av_bswap64 Unexecuted instantiation: vp9_parser.c:av_bswap64 Unexecuted instantiation: vvc_parser.c:av_bswap64 Unexecuted instantiation: webp_parser.c:av_bswap64 Unexecuted instantiation: xiph.c:av_bswap64 Unexecuted instantiation: xwd_parser.c:av_bswap64 Unexecuted instantiation: aac_ac3_parser.c:av_bswap64 Line | Count | Source | 70 | 216M | { | 71 | 216M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 216M | } |
Unexecuted instantiation: adx_parser.c:av_bswap64 Unexecuted instantiation: amr_parser.c:av_bswap64 Unexecuted instantiation: av1_parser.c:av_bswap64 Unexecuted instantiation: avs2_parser.c:av_bswap64 Unexecuted instantiation: avs3_parser.c:av_bswap64 Unexecuted instantiation: bmp_parser.c:av_bswap64 Unexecuted instantiation: cavs_parser.c:av_bswap64 Unexecuted instantiation: cook_parser.c:av_bswap64 Unexecuted instantiation: cri_parser.c:av_bswap64 Line | Count | Source | 70 | 162k | { | 71 | 162k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 162k | } |
Unexecuted instantiation: dirac_parser.c:av_bswap64 Unexecuted instantiation: dnxhd_parser.c:av_bswap64 Unexecuted instantiation: dnxhddata.c:av_bswap64 Unexecuted instantiation: dnxuc_parser.c:av_bswap64 Unexecuted instantiation: dolby_e_parser.c:av_bswap64 Unexecuted instantiation: dpx_parser.c:av_bswap64 Unexecuted instantiation: dvbsub_parser.c:av_bswap64 Unexecuted instantiation: dvd_nav_parser.c:av_bswap64 Unexecuted instantiation: dvdsub_parser.c:av_bswap64 Unexecuted instantiation: evc_parser.c:av_bswap64 Unexecuted instantiation: ffv1_parser.c:av_bswap64 Unexecuted instantiation: flac_parser.c:av_bswap64 Unexecuted instantiation: flvdec.c:av_bswap64 Line | Count | Source | 70 | 599k | { | 71 | 599k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 599k | } |
Line | Count | Source | 70 | 17.9M | { | 71 | 17.9M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 17.9M | } |
Line | Count | Source | 70 | 564k | { | 71 | 564k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 564k | } |
Unexecuted instantiation: h264dsp.c:av_bswap64 Unexecuted instantiation: h264idct.c:av_bswap64 Unexecuted instantiation: h264qpel.c:av_bswap64 Line | Count | Source | 70 | 48.1M | { | 71 | 48.1M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 48.1M | } |
Unexecuted instantiation: parser.c:av_bswap64 Line | Count | Source | 70 | 36.8M | { | 71 | 36.8M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 36.8M | } |
Line | Count | Source | 70 | 109k | { | 71 | 109k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 109k | } |
jpegxl_parser.c:av_bswap64 Line | Count | Source | 70 | 4 | { | 71 | 4 | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 4 | } |
Unexecuted instantiation: mlp_parser.c:av_bswap64 Unexecuted instantiation: mpeg4video_parser.c:av_bswap64 Unexecuted instantiation: rangecoder.c:av_bswap64 Unexecuted instantiation: startcode.c:av_bswap64 Unexecuted instantiation: tak.c:av_bswap64 Line | Count | Source | 70 | 660k | { | 71 | 660k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 660k | } |
Unexecuted instantiation: vc1data.c:av_bswap64 Line | Count | Source | 70 | 1.92M | { | 71 | 1.92M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.92M | } |
Line | Count | Source | 70 | 7.72M | { | 71 | 7.72M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 7.72M | } |
dolby_e_parse.c:av_bswap64 Line | Count | Source | 70 | 7.62k | { | 71 | 7.62k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 7.62k | } |
Unexecuted instantiation: ffv1.c:av_bswap64 Unexecuted instantiation: ffv1_parse.c:av_bswap64 Line | Count | Source | 70 | 200 | { | 71 | 200 | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 200 | } |
Line | Count | Source | 70 | 12.3M | { | 71 | 12.3M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 12.3M | } |
Unexecuted instantiation: parse.c:av_bswap64 jpegxl_parse.c:av_bswap64 Line | Count | Source | 70 | 2.90k | { | 71 | 2.90k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.90k | } |
Unexecuted instantiation: aom_film_grain.c:av_bswap64 Unexecuted instantiation: atsc_a53.c:av_bswap64 Unexecuted instantiation: dynamic_hdr_vivid.c:av_bswap64 Unexecuted instantiation: adler32.c:av_bswap64 Unexecuted instantiation: crc.c:av_bswap64 hdr_dynamic_metadata.c:av_bswap64 Line | Count | Source | 70 | 54.8k | { | 71 | 54.8k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 54.8k | } |
Unexecuted instantiation: imgutils.c:av_bswap64 Unexecuted instantiation: mem.c:av_bswap64 Unexecuted instantiation: pixdesc.c:av_bswap64 Unexecuted instantiation: random_seed.c:av_bswap64 Unexecuted instantiation: sha.c:av_bswap64 Unexecuted instantiation: target_dem_fuzzer.c:av_bswap64 Unexecuted instantiation: alp.c:av_bswap64 Unexecuted instantiation: amr.c:av_bswap64 Unexecuted instantiation: anm.c:av_bswap64 Unexecuted instantiation: ape.c:av_bswap64 Unexecuted instantiation: apm.c:av_bswap64 Line | Count | Source | 70 | 841k | { | 71 | 841k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 841k | } |
Unexecuted instantiation: apvdec.c:av_bswap64 Unexecuted instantiation: argo_asf.c:av_bswap64 Unexecuted instantiation: argo_brp.c:av_bswap64 Unexecuted instantiation: argo_cvg.c:av_bswap64 Unexecuted instantiation: asfdec_f.c:av_bswap64 Unexecuted instantiation: astdec.c:av_bswap64 Unexecuted instantiation: au.c:av_bswap64 Unexecuted instantiation: av1dec.c:av_bswap64 Unexecuted instantiation: avformat.c:av_bswap64 Unexecuted instantiation: avidec.c:av_bswap64 Unexecuted instantiation: aviobuf.c:av_bswap64 Unexecuted instantiation: avr.c:av_bswap64 Unexecuted instantiation: avs2dec.c:av_bswap64 Unexecuted instantiation: bethsoftvid.c:av_bswap64 Unexecuted instantiation: bfi.c:av_bswap64 Unexecuted instantiation: bink.c:av_bswap64 Unexecuted instantiation: binka.c:av_bswap64 Unexecuted instantiation: bintext.c:av_bswap64 Line | Count | Source | 70 | 280 | { | 71 | 280 | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 280 | } |
Unexecuted instantiation: boadec.c:av_bswap64 Unexecuted instantiation: bonk.c:av_bswap64 Unexecuted instantiation: brstm.c:av_bswap64 Unexecuted instantiation: c93.c:av_bswap64 Line | Count | Source | 70 | 231 | { | 71 | 231 | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 231 | } |
Unexecuted instantiation: cdxl.c:av_bswap64 Unexecuted instantiation: cinedec.c:av_bswap64 Unexecuted instantiation: codec2.c:av_bswap64 Unexecuted instantiation: concatdec.c:av_bswap64 Unexecuted instantiation: demux.c:av_bswap64 Unexecuted instantiation: demux_utils.c:av_bswap64 Unexecuted instantiation: derf.c:av_bswap64 Unexecuted instantiation: dfa.c:av_bswap64 Unexecuted instantiation: dhav.c:av_bswap64 Unexecuted instantiation: dnxhddec.c:av_bswap64 Unexecuted instantiation: dsfdec.c:av_bswap64 Unexecuted instantiation: dsicin.c:av_bswap64 Unexecuted instantiation: dss.c:av_bswap64 Unexecuted instantiation: dtsdec.c:av_bswap64 Line | Count | Source | 70 | 924k | { | 71 | 924k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 924k | } |
Unexecuted instantiation: dump.c:av_bswap64 Unexecuted instantiation: dv.c:av_bswap64 Unexecuted instantiation: dvbsub.c:av_bswap64 Unexecuted instantiation: dxa.c:av_bswap64 Unexecuted instantiation: electronicarts.c:av_bswap64 Unexecuted instantiation: epafdec.c:av_bswap64 Unexecuted instantiation: evcdec.c:av_bswap64 Unexecuted instantiation: filmstripdec.c:av_bswap64 Line | Count | Source | 70 | 38.5M | { | 71 | 38.5M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 38.5M | } |
Unexecuted instantiation: flic.c:av_bswap64 Unexecuted instantiation: frmdec.c:av_bswap64 Unexecuted instantiation: fsb.c:av_bswap64 Unexecuted instantiation: fwse.c:av_bswap64 Unexecuted instantiation: gdv.c:av_bswap64 Unexecuted instantiation: genh.c:av_bswap64 Unexecuted instantiation: gifdec.c:av_bswap64 Line | Count | Source | 70 | 250M | { | 71 | 250M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 250M | } |
Line | Count | Source | 70 | 3.09M | { | 71 | 3.09M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 3.09M | } |
Unexecuted instantiation: hca.c:av_bswap64 Unexecuted instantiation: hcom.c:av_bswap64 Line | Count | Source | 70 | 13.0k | { | 71 | 13.0k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 13.0k | } |
Unexecuted instantiation: hls_sample_encryption.c:av_bswap64 Unexecuted instantiation: hnm.c:av_bswap64 Unexecuted instantiation: iamfdec.c:av_bswap64 Line | Count | Source | 70 | 593 | { | 71 | 593 | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 593 | } |
Line | Count | Source | 70 | 135k | { | 71 | 135k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 135k | } |
Unexecuted instantiation: idcin.c:av_bswap64 Unexecuted instantiation: idroqdec.c:av_bswap64 Unexecuted instantiation: iff.c:av_bswap64 Unexecuted instantiation: imfdec.c:av_bswap64 Unexecuted instantiation: img2_alias_pix.c:av_bswap64 Unexecuted instantiation: img2_brender_pix.c:av_bswap64 Line | Count | Source | 70 | 5.01M | { | 71 | 5.01M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 5.01M | } |
Unexecuted instantiation: imx.c:av_bswap64 Unexecuted instantiation: ingenientdec.c:av_bswap64 Unexecuted instantiation: ipmovie.c:av_bswap64 Unexecuted instantiation: ipudec.c:av_bswap64 Unexecuted instantiation: ircamdec.c:av_bswap64 Unexecuted instantiation: isom.c:av_bswap64 Unexecuted instantiation: ivfdec.c:av_bswap64 Unexecuted instantiation: jacosubdec.c:av_bswap64 Unexecuted instantiation: jpegxl_anim_dec.c:av_bswap64 Unexecuted instantiation: jvdec.c:av_bswap64 Unexecuted instantiation: kvag.c:av_bswap64 Unexecuted instantiation: lafdec.c:av_bswap64 Unexecuted instantiation: lc3.c:av_bswap64 Unexecuted instantiation: lmlm4.c:av_bswap64 Unexecuted instantiation: loasdec.c:av_bswap64 Unexecuted instantiation: luodatdec.c:av_bswap64 Unexecuted instantiation: lvfdec.c:av_bswap64 Unexecuted instantiation: lxfdec.c:av_bswap64 Line | Count | Source | 70 | 4.64k | { | 71 | 4.64k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 4.64k | } |
Unexecuted instantiation: mca.c:av_bswap64 Unexecuted instantiation: mccdec.c:av_bswap64 Unexecuted instantiation: mgsts.c:av_bswap64 Unexecuted instantiation: microdvddec.c:av_bswap64 Unexecuted instantiation: mj2kdec.c:av_bswap64 Unexecuted instantiation: mlvdec.c:av_bswap64 Unexecuted instantiation: mm.c:av_bswap64 Unexecuted instantiation: mods.c:av_bswap64 Unexecuted instantiation: moflex.c:av_bswap64 Line | Count | Source | 70 | 1.59M | { | 71 | 1.59M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.59M | } |
Unexecuted instantiation: mp3dec.c:av_bswap64 Unexecuted instantiation: mpeg.c:av_bswap64 Unexecuted instantiation: mpegts.c:av_bswap64 Unexecuted instantiation: mpegvideodec.c:av_bswap64 Unexecuted instantiation: mpl2dec.c:av_bswap64 Unexecuted instantiation: msf.c:av_bswap64 Unexecuted instantiation: msnwc_tcp.c:av_bswap64 Unexecuted instantiation: mspdec.c:av_bswap64 Unexecuted instantiation: mtaf.c:av_bswap64 Unexecuted instantiation: mtv.c:av_bswap64 Unexecuted instantiation: musx.c:av_bswap64 Unexecuted instantiation: mvdec.c:av_bswap64 Unexecuted instantiation: mxfdec.c:av_bswap64 Unexecuted instantiation: mxg.c:av_bswap64 Unexecuted instantiation: ncdec.c:av_bswap64 Unexecuted instantiation: nistspheredec.c:av_bswap64 Unexecuted instantiation: nspdec.c:av_bswap64 Unexecuted instantiation: nsvdec.c:av_bswap64 Line | Count | Source | 70 | 109k | { | 71 | 109k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 109k | } |
Unexecuted instantiation: nuv.c:av_bswap64 Unexecuted instantiation: oggdec.c:av_bswap64 Unexecuted instantiation: oggparsecelt.c:av_bswap64 Unexecuted instantiation: oggparsedirac.c:av_bswap64 Unexecuted instantiation: oggparseflac.c:av_bswap64 Unexecuted instantiation: oggparseogm.c:av_bswap64 Unexecuted instantiation: oggparseopus.c:av_bswap64 Unexecuted instantiation: oggparseskeleton.c:av_bswap64 Unexecuted instantiation: oggparsespeex.c:av_bswap64 oggparsetheora.c:av_bswap64 Line | Count | Source | 70 | 22.1k | { | 71 | 22.1k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 22.1k | } |
Unexecuted instantiation: oggparsevorbis.c:av_bswap64 Unexecuted instantiation: oggparsevp8.c:av_bswap64 Unexecuted instantiation: omadec.c:av_bswap64 Unexecuted instantiation: osq.c:av_bswap64 Unexecuted instantiation: pmpdec.c:av_bswap64 Unexecuted instantiation: pp_bnk.c:av_bswap64 Unexecuted instantiation: psxstr.c:av_bswap64 Unexecuted instantiation: pva.c:av_bswap64 Unexecuted instantiation: qcp.c:av_bswap64 Unexecuted instantiation: r3d.c:av_bswap64 Unexecuted instantiation: rcwtdec.c:av_bswap64 Line | Count | Source | 70 | 1.84M | { | 71 | 1.84M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.84M | } |
Unexecuted instantiation: replaygain.c:av_bswap64 Unexecuted instantiation: riffdec.c:av_bswap64 Unexecuted instantiation: rka.c:av_bswap64 Unexecuted instantiation: rl2.c:av_bswap64 Unexecuted instantiation: rmdec.c:av_bswap64 Unexecuted instantiation: rsd.c:av_bswap64 Unexecuted instantiation: rsodec.c:av_bswap64 Unexecuted instantiation: s337m.c:av_bswap64 Unexecuted instantiation: sbgdec.c:av_bswap64 Unexecuted instantiation: sccdec.c:av_bswap64 Line | Count | Source | 70 | 925k | { | 71 | 925k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 925k | } |
Unexecuted instantiation: sdns.c:av_bswap64 Unexecuted instantiation: sdr2.c:av_bswap64 Unexecuted instantiation: sdsdec.c:av_bswap64 Unexecuted instantiation: sdxdec.c:av_bswap64 Unexecuted instantiation: segafilm.c:av_bswap64 Line | Count | Source | 70 | 2.06M | { | 71 | 2.06M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.06M | } |
Unexecuted instantiation: shortendec.c:av_bswap64 Unexecuted instantiation: sierravmd.c:av_bswap64 Unexecuted instantiation: siff.c:av_bswap64 Unexecuted instantiation: smacker.c:av_bswap64 Unexecuted instantiation: smush.c:av_bswap64 Unexecuted instantiation: sol.c:av_bswap64 Unexecuted instantiation: soxdec.c:av_bswap64 Unexecuted instantiation: spdif.c:av_bswap64 Unexecuted instantiation: spdifdec.c:av_bswap64 Unexecuted instantiation: srtdec.c:av_bswap64 Unexecuted instantiation: stldec.c:av_bswap64 Unexecuted instantiation: subviewerdec.c:av_bswap64 Unexecuted instantiation: supdec.c:av_bswap64 Unexecuted instantiation: svs.c:av_bswap64 Line | Count | Source | 70 | 9.99k | { | 71 | 9.99k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 9.99k | } |
Unexecuted instantiation: takdec.c:av_bswap64 Unexecuted instantiation: thp.c:av_bswap64 Unexecuted instantiation: tmv.c:av_bswap64 Unexecuted instantiation: tta.c:av_bswap64 Unexecuted instantiation: tty.c:av_bswap64 Unexecuted instantiation: txd.c:av_bswap64 Line | Count | Source | 70 | 576k | { | 71 | 576k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 576k | } |
Line | Count | Source | 70 | 79.7k | { | 71 | 79.7k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 79.7k | } |
Unexecuted instantiation: vc1test.c:av_bswap64 Unexecuted instantiation: vividas.c:av_bswap64 Unexecuted instantiation: voc_packet.c:av_bswap64 Unexecuted instantiation: vocdec.c:av_bswap64 Unexecuted instantiation: vpk.c:av_bswap64 Unexecuted instantiation: vqf.c:av_bswap64 Unexecuted instantiation: wady.c:av_bswap64 Unexecuted instantiation: wavdec.c:av_bswap64 Unexecuted instantiation: wc3movie.c:av_bswap64 Unexecuted instantiation: webvttdec.c:av_bswap64 Unexecuted instantiation: westwood_aud.c:av_bswap64 Unexecuted instantiation: westwood_vqa.c:av_bswap64 Unexecuted instantiation: wsddec.c:av_bswap64 Unexecuted instantiation: wtvdec.c:av_bswap64 Unexecuted instantiation: wvdec.c:av_bswap64 Unexecuted instantiation: xa.c:av_bswap64 Unexecuted instantiation: xmd.c:av_bswap64 Unexecuted instantiation: xmv.c:av_bswap64 Unexecuted instantiation: xvag.c:av_bswap64 Unexecuted instantiation: yop.c:av_bswap64 Unexecuted instantiation: 3dostr.c:av_bswap64 Unexecuted instantiation: 4xm.c:av_bswap64 Unexecuted instantiation: aadec.c:av_bswap64 Unexecuted instantiation: aaxdec.c:av_bswap64 Unexecuted instantiation: acedec.c:av_bswap64 Unexecuted instantiation: acm.c:av_bswap64 Unexecuted instantiation: act.c:av_bswap64 Unexecuted instantiation: adp.c:av_bswap64 Unexecuted instantiation: adxdec.c:av_bswap64 Unexecuted instantiation: aeadec.c:av_bswap64 Unexecuted instantiation: aiffdec.c:av_bswap64 Unexecuted instantiation: aixdec.c:av_bswap64 Unexecuted instantiation: asfcrypt.c:av_bswap64 Unexecuted instantiation: dash.c:av_bswap64 Unexecuted instantiation: dovi_isom.c:av_bswap64 flac_picture.c:av_bswap64 Line | Count | Source | 70 | 17.7k | { | 71 | 17.7k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 17.7k | } |
Line | Count | Source | 70 | 1.89k | { | 71 | 1.89k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.89k | } |
Unexecuted instantiation: iamf_reader.c:av_bswap64 Unexecuted instantiation: wv.c:av_bswap64 Unexecuted instantiation: dirac.c:av_bswap64 Unexecuted instantiation: dv_profile.c:av_bswap64 Unexecuted instantiation: aes.c:av_bswap64 Unexecuted instantiation: aes_ctr.c:av_bswap64 Unexecuted instantiation: base64.c:av_bswap64 Line | Count | Source | 70 | 125k | { | 71 | 125k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 125k | } |
Unexecuted instantiation: encryption_info.c:av_bswap64 Unexecuted instantiation: lzo.c:av_bswap64 Unexecuted instantiation: tea.c:av_bswap64 Unexecuted instantiation: target_dec_fuzzer.c:av_bswap64 Unexecuted instantiation: atrac9dec.c:av_bswap64 Unexecuted instantiation: lfg.c:av_bswap64 Unexecuted instantiation: md5.c:av_bswap64 Line | Count | Source | 70 | 4.51M | { | 71 | 4.51M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 4.51M | } |
Unexecuted instantiation: libtheoraenc.c:av_bswap64 Unexecuted instantiation: enc.c:av_bswap64 Unexecuted instantiation: enc_psy.c:av_bswap64 Unexecuted instantiation: pvq.c:av_bswap64 Unexecuted instantiation: rc.c:av_bswap64 Unexecuted instantiation: celt_pvq_init.c:av_bswap64 Unexecuted instantiation: celt.c:av_bswap64 Unexecuted instantiation: gsmdec.c:av_bswap64 Unexecuted instantiation: msgsmdec.c:av_bswap64 Line | Count | Source | 70 | 142k | { | 71 | 142k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 142k | } |
Unexecuted instantiation: imc.c:av_bswap64 Unexecuted instantiation: bswapdsp.c:av_bswap64 Unexecuted instantiation: adpcm.c:av_bswap64 Unexecuted instantiation: wmaenc.c:av_bswap64 Line | Count | Source | 70 | 54.3k | { | 71 | 54.3k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 54.3k | } |
Unexecuted instantiation: target_bsf_fuzzer.c:av_bswap64 Line | Count | Source | 70 | 11.2k | { | 71 | 11.2k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 11.2k | } |
Unexecuted instantiation: cfhd.c:av_bswap64 Unexecuted instantiation: cfhddata.c:av_bswap64 Line | Count | Source | 70 | 11.5M | { | 71 | 11.5M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 11.5M | } |
Unexecuted instantiation: escape130.c:av_bswap64 Unexecuted instantiation: mvcdec.c:av_bswap64 Unexecuted instantiation: alacenc.c:av_bswap64 Line | Count | Source | 70 | 1.87k | { | 71 | 1.87k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.87k | } |
Unexecuted instantiation: adpcmenc.c:av_bswap64 Unexecuted instantiation: asvdec.c:av_bswap64 Unexecuted instantiation: pnmenc.c:av_bswap64 Line | Count | Source | 70 | 2.99M | { | 71 | 2.99M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.99M | } |
Unexecuted instantiation: dirac_arith.c:av_bswap64 Unexecuted instantiation: libvpxdec.c:av_bswap64 Unexecuted instantiation: eac3enc.c:av_bswap64 Unexecuted instantiation: ac3enc.c:av_bswap64 Unexecuted instantiation: wmadec.c:av_bswap64 Unexecuted instantiation: aacenc.c:av_bswap64 Unexecuted instantiation: aaccoder.c:av_bswap64 Unexecuted instantiation: aacenc_is.c:av_bswap64 Unexecuted instantiation: aacenc_tns.c:av_bswap64 Unexecuted instantiation: bethsoftvideo.c:av_bswap64 Line | Count | Source | 70 | 79.6k | { | 71 | 79.6k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 79.6k | } |
Unexecuted instantiation: dxvenc.c:av_bswap64 Unexecuted instantiation: texturedspenc.c:av_bswap64 Unexecuted instantiation: exr.c:av_bswap64 Line | Count | Source | 70 | 27.7k | { | 71 | 27.7k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 27.7k | } |
Unexecuted instantiation: aacdec_fixed.c:av_bswap64 Unexecuted instantiation: aacdec_float.c:av_bswap64 Unexecuted instantiation: aacdec_tab.c:av_bswap64 Unexecuted instantiation: aacdec_usac.c:av_bswap64 Unexecuted instantiation: aacps_common.c:av_bswap64 Unexecuted instantiation: aacsbr.c:av_bswap64 Unexecuted instantiation: aacsbr_fixed.c:av_bswap64 Unexecuted instantiation: aacdec_ac.c:av_bswap64 Unexecuted instantiation: aacdec_lpd.c:av_bswap64 Unexecuted instantiation: aacps_fixed.c:av_bswap64 Unexecuted instantiation: aacps_float.c:av_bswap64 Unexecuted instantiation: ptx.c:av_bswap64 Line | Count | Source | 70 | 15.4M | { | 71 | 15.4M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 15.4M | } |
Unexecuted instantiation: mjpegdec_common.c:av_bswap64 Unexecuted instantiation: jpeglsdec.c:av_bswap64 Unexecuted instantiation: lscrdec.c:av_bswap64 Line | Count | Source | 70 | 152k | { | 71 | 152k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 152k | } |
Unexecuted instantiation: pngdsp.c:av_bswap64 Unexecuted instantiation: msvideo1.c:av_bswap64 Unexecuted instantiation: rtsp.c:av_bswap64 Unexecuted instantiation: rtspdec.c:av_bswap64 Unexecuted instantiation: sapdec.c:av_bswap64 Unexecuted instantiation: udp.c:av_bswap64 Unexecuted instantiation: rdt.c:av_bswap64 Unexecuted instantiation: rtpdec.c:av_bswap64 Unexecuted instantiation: rtpdec_asf.c:av_bswap64 Unexecuted instantiation: rtpdec_h261.c:av_bswap64 Unexecuted instantiation: rtpdec_h263.c:av_bswap64 Unexecuted instantiation: rtpdec_h263_rfc2190.c:av_bswap64 Unexecuted instantiation: rtpdec_h264.c:av_bswap64 Unexecuted instantiation: rtpdec_jpeg.c:av_bswap64 Unexecuted instantiation: rtpdec_latm.c:av_bswap64 Unexecuted instantiation: rtpdec_mpa_robust.c:av_bswap64 Unexecuted instantiation: rtpdec_mpeg12.c:av_bswap64 Unexecuted instantiation: rtpdec_mpeg4.c:av_bswap64 Unexecuted instantiation: rtpdec_opus.c:av_bswap64 Unexecuted instantiation: rtpdec_qdm2.c:av_bswap64 Unexecuted instantiation: rtpdec_qt.c:av_bswap64 Unexecuted instantiation: rtpdec_svq3.c:av_bswap64 Unexecuted instantiation: rtpdec_vc2hq.c:av_bswap64 Unexecuted instantiation: rtpdec_vp8.c:av_bswap64 Unexecuted instantiation: rtpdec_vp9.c:av_bswap64 Unexecuted instantiation: rtpdec_xiph.c:av_bswap64 Unexecuted instantiation: srtp.c:av_bswap64 Line | Count | Source | 70 | 3.40M | { | 71 | 3.40M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 3.40M | } |
Unexecuted instantiation: h264_direct.c:av_bswap64 Unexecuted instantiation: h264_mb.c:av_bswap64 Unexecuted instantiation: h264_picture.c:av_bswap64 Line | Count | Source | 70 | 1.45M | { | 71 | 1.45M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.45M | } |
Line | Count | Source | 70 | 7.66M | { | 71 | 7.66M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 7.66M | } |
Unexecuted instantiation: h264pred.c:av_bswap64 Unexecuted instantiation: h274.c:av_bswap64 Unexecuted instantiation: h264_cabac.c:av_bswap64 Unexecuted instantiation: h264_loopfilter.c:av_bswap64 Unexecuted instantiation: sha512.c:av_bswap64 Unexecuted instantiation: bmp.c:av_bswap64 Unexecuted instantiation: msrledec.c:av_bswap64 Unexecuted instantiation: sbcenc.c:av_bswap64 Unexecuted instantiation: sbcdsp.c:av_bswap64 Line | Count | Source | 70 | 166M | { | 71 | 166M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 166M | } |
Unexecuted instantiation: bgmc.c:av_bswap64 Unexecuted instantiation: mlz.c:av_bswap64 Line | Count | Source | 70 | 737 | { | 71 | 737 | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 737 | } |
Line | Count | Source | 70 | 49.5k | { | 71 | 49.5k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 49.5k | } |
Unexecuted instantiation: libfdk-aacenc.c:av_bswap64 Unexecuted instantiation: smcenc.c:av_bswap64 Unexecuted instantiation: qtrleenc.c:av_bswap64 Unexecuted instantiation: mxpegdec.c:av_bswap64 Unexecuted instantiation: rv30.c:av_bswap64 Unexecuted instantiation: rv34.c:av_bswap64 Unexecuted instantiation: aptxdec.c:av_bswap64 Unexecuted instantiation: aptx.c:av_bswap64 Unexecuted instantiation: indeo3.c:av_bswap64 Unexecuted instantiation: eamad.c:av_bswap64 proresenc_anatoliy.c:av_bswap64 Line | Count | Source | 70 | 6.35M | { | 71 | 6.35M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 6.35M | } |
Unexecuted instantiation: misc4.c:av_bswap64 Unexecuted instantiation: g726.c:av_bswap64 Line | Count | Source | 70 | 1.03M | { | 71 | 1.03M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.03M | } |
Unexecuted instantiation: vc1_block.c:av_bswap64 Unexecuted instantiation: vc1_loopfilter.c:av_bswap64 Unexecuted instantiation: vc1_mc.c:av_bswap64 Unexecuted instantiation: vc1_pred.c:av_bswap64 Unexecuted instantiation: flashsvenc.c:av_bswap64 Unexecuted instantiation: rtv1.c:av_bswap64 Unexecuted instantiation: texturedsp.c:av_bswap64 Unexecuted instantiation: mpegaudiodec_float.c:av_bswap64 Unexecuted instantiation: avuienc.c:av_bswap64 Line | Count | Source | 70 | 11.3k | { | 71 | 11.3k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 11.3k | } |
Unexecuted instantiation: huffyuvdec.c:av_bswap64 Unexecuted instantiation: 8bps.c:av_bswap64 Unexecuted instantiation: speexdec.c:av_bswap64 Unexecuted instantiation: qdrw.c:av_bswap64 Unexecuted instantiation: dxv.c:av_bswap64 Unexecuted instantiation: lzf.c:av_bswap64 Unexecuted instantiation: mmvideo.c:av_bswap64 Unexecuted instantiation: pafvideo.c:av_bswap64 Unexecuted instantiation: vmdvideo.c:av_bswap64 Unexecuted instantiation: brenderpix.c:av_bswap64 Unexecuted instantiation: atrac3plusdec.c:av_bswap64 Unexecuted instantiation: atrac3plusdsp.c:av_bswap64 Unexecuted instantiation: atrac3plus.c:av_bswap64 Unexecuted instantiation: mss4.c:av_bswap64 Unexecuted instantiation: tiff.c:av_bswap64 Line | Count | Source | 70 | 29.3M | { | 71 | 29.3M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 29.3M | } |
Unexecuted instantiation: lzw.c:av_bswap64 Unexecuted instantiation: dvbsubenc.c:av_bswap64 Unexecuted instantiation: ac3dec_float.c:av_bswap64 Unexecuted instantiation: vp8.c:av_bswap64 Unexecuted instantiation: vp8dsp.c:av_bswap64 Unexecuted instantiation: vpx_rac.c:av_bswap64 Line | Count | Source | 70 | 26.5k | { | 71 | 26.5k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 26.5k | } |
Unexecuted instantiation: vb.c:av_bswap64 Unexecuted instantiation: dvbsubdec.c:av_bswap64 Unexecuted instantiation: mss1.c:av_bswap64 Unexecuted instantiation: mss12.c:av_bswap64 Unexecuted instantiation: dpcm.c:av_bswap64 Unexecuted instantiation: roqaudioenc.c:av_bswap64 Unexecuted instantiation: mss2.c:av_bswap64 Unexecuted instantiation: ulti.c:av_bswap64 Unexecuted instantiation: mdec.c:av_bswap64 Unexecuted instantiation: roqvideodec.c:av_bswap64 Unexecuted instantiation: r210enc.c:av_bswap64 Unexecuted instantiation: dvaudiodec.c:av_bswap64 Line | Count | Source | 70 | 1.16M | { | 71 | 1.16M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.16M | } |
Unexecuted instantiation: vp6.c:av_bswap64 Unexecuted instantiation: vp56.c:av_bswap64 Unexecuted instantiation: vp56data.c:av_bswap64 Unexecuted instantiation: vp3dsp.c:av_bswap64 Unexecuted instantiation: loco.c:av_bswap64 Line | Count | Source | 70 | 28.1k | { | 71 | 28.1k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 28.1k | } |
Unexecuted instantiation: vp5.c:av_bswap64 Unexecuted instantiation: ra144dec.c:av_bswap64 Unexecuted instantiation: lcldec.c:av_bswap64 Unexecuted instantiation: indeo5.c:av_bswap64 Unexecuted instantiation: ivi.c:av_bswap64 Unexecuted instantiation: ivi_dsp.c:av_bswap64 Line | Count | Source | 70 | 5.61M | { | 71 | 5.61M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 5.61M | } |
Unexecuted instantiation: prosumer.c:av_bswap64 Unexecuted instantiation: clearvideo.c:av_bswap64 Unexecuted instantiation: dxtory.c:av_bswap64 Line | Count | Source | 70 | 15.7k | { | 71 | 15.7k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 15.7k | } |
Unexecuted instantiation: proresdsp.c:av_bswap64 Unexecuted instantiation: sunrast.c:av_bswap64 Unexecuted instantiation: mpegaudiodec_fixed.c:av_bswap64 Unexecuted instantiation: ralf.c:av_bswap64 Unexecuted instantiation: pixlet.c:av_bswap64 Unexecuted instantiation: dsicinvideo.c:av_bswap64 Unexecuted instantiation: flashsv2enc.c:av_bswap64 Unexecuted instantiation: mpegaudioenc.c:av_bswap64 Unexecuted instantiation: wnv1.c:av_bswap64 Unexecuted instantiation: libvpxenc.c:av_bswap64 Line | Count | Source | 70 | 1.19M | { | 71 | 1.19M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.19M | } |
Unexecuted instantiation: xl.c:av_bswap64 Line | Count | Source | 70 | 1.00M | { | 71 | 1.00M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.00M | } |
Line | Count | Source | 70 | 269k | { | 71 | 269k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 269k | } |
Unexecuted instantiation: leaddec.c:av_bswap64 Unexecuted instantiation: tscc.c:av_bswap64 Unexecuted instantiation: ljpegenc.c:av_bswap64 Unexecuted instantiation: movtextenc.c:av_bswap64 Unexecuted instantiation: g723_1enc.c:av_bswap64 Unexecuted instantiation: eatqi.c:av_bswap64 Line | Count | Source | 70 | 52.7k | { | 71 | 52.7k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 52.7k | } |
Unexecuted instantiation: lagarithrac.c:av_bswap64 Line | Count | Source | 70 | 1.38M | { | 71 | 1.38M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.38M | } |
Unexecuted instantiation: siren.c:av_bswap64 Line | Count | Source | 70 | 925k | { | 71 | 925k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 925k | } |
Unexecuted instantiation: cavs.c:av_bswap64 Unexecuted instantiation: cavsdata.c:av_bswap64 Unexecuted instantiation: dvenc.c:av_bswap64 Unexecuted instantiation: target_swr_fuzzer.c:av_bswap64 Line | Count | Source | 70 | 24.1k | { | 71 | 24.1k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 24.1k | } |
Unexecuted instantiation: webp.c:av_bswap64 Line | Count | Source | 70 | 612k | { | 71 | 612k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 612k | } |
Unexecuted instantiation: eatgv.c:av_bswap64 Unexecuted instantiation: eatgq.c:av_bswap64 Unexecuted instantiation: binkaudio.c:av_bswap64 Line | Count | Source | 70 | 99.9k | { | 71 | 99.9k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 99.9k | } |
Unexecuted instantiation: indeo2.c:av_bswap64 wmalosslessdec.c:av_bswap64 Line | Count | Source | 70 | 58.9M | { | 71 | 58.9M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 58.9M | } |
Unexecuted instantiation: cinepakenc.c:av_bswap64 Unexecuted instantiation: ilbcdec.c:av_bswap64 Line | Count | Source | 70 | 2.30M | { | 71 | 2.30M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.30M | } |
Unexecuted instantiation: mvs.c:av_bswap64 Unexecuted instantiation: pred.c:av_bswap64 Unexecuted instantiation: refs.c:av_bswap64 Unexecuted instantiation: cabac.c:av_bswap64 Unexecuted instantiation: dsp.c:av_bswap64 Unexecuted instantiation: filter.c:av_bswap64 Unexecuted instantiation: dsp_init.c:av_bswap64 Unexecuted instantiation: roqvideoenc.c:av_bswap64 Unexecuted instantiation: tscc2.c:av_bswap64 Unexecuted instantiation: hqx.c:av_bswap64 Unexecuted instantiation: canopus.c:av_bswap64 Unexecuted instantiation: mobiclip.c:av_bswap64 Line | Count | Source | 70 | 200k | { | 71 | 200k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 200k | } |
Unexecuted instantiation: pcm-blurayenc.c:av_bswap64 Unexecuted instantiation: fastaudio.c:av_bswap64 Unexecuted instantiation: sonic.c:av_bswap64 Unexecuted instantiation: g729dec.c:av_bswap64 Unexecuted instantiation: mscc.c:av_bswap64 Line | Count | Source | 70 | 4.94M | { | 71 | 4.94M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 4.94M | } |
Unexecuted instantiation: huffyuvencdsp.c:av_bswap64 Unexecuted instantiation: lossless_videoencdsp.c:av_bswap64 Line | Count | Source | 70 | 2.76M | { | 71 | 2.76M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.76M | } |
Unexecuted instantiation: sipr.c:av_bswap64 Unexecuted instantiation: target_sws_fuzzer.c:av_bswap64 Unexecuted instantiation: swscale.c:av_bswap64 Unexecuted instantiation: vscale.c:av_bswap64 Unexecuted instantiation: hscale_fast_bilinear_simd.c:av_bswap64 Unexecuted instantiation: yuv2rgb.c:av_bswap64 Unexecuted instantiation: alphablend.c:av_bswap64 Unexecuted instantiation: graph.c:av_bswap64 Unexecuted instantiation: hscale_fast_bilinear.c:av_bswap64 Unexecuted instantiation: input.c:av_bswap64 Unexecuted instantiation: options.c:av_bswap64 Unexecuted instantiation: output.c:av_bswap64 Unexecuted instantiation: rgb2rgb.c:av_bswap64 Unexecuted instantiation: slice.c:av_bswap64 Unexecuted instantiation: swscale_unscaled.c:av_bswap64 Unexecuted instantiation: gamma.c:av_bswap64 Unexecuted instantiation: hscale.c:av_bswap64 Unexecuted instantiation: g722dec.c:av_bswap64 Unexecuted instantiation: nellymoserdec.c:av_bswap64 Unexecuted instantiation: avuidec.c:av_bswap64 Unexecuted instantiation: dcaenc.c:av_bswap64 Unexecuted instantiation: dcaadpcm.c:av_bswap64 Unexecuted instantiation: dcadata.c:av_bswap64 Unexecuted instantiation: interplayvideo.c:av_bswap64 Unexecuted instantiation: dec.c:av_bswap64 Unexecuted instantiation: dec_celt.c:av_bswap64 Unexecuted instantiation: silk.c:av_bswap64 Unexecuted instantiation: libopusdec.c:av_bswap64 Unexecuted instantiation: bmpenc.c:av_bswap64 Line | Count | Source | 70 | 1.94M | { | 71 | 1.94M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.94M | } |
Unexecuted instantiation: dpx.c:av_bswap64 Unexecuted instantiation: r210dec.c:av_bswap64 Unexecuted instantiation: exrenc.c:av_bswap64 Unexecuted instantiation: pcm-dvd.c:av_bswap64 Unexecuted instantiation: mss3.c:av_bswap64 Unexecuted instantiation: v210dec.c:av_bswap64 Unexecuted instantiation: hdrdec.c:av_bswap64 Unexecuted instantiation: dvdsubdec.c:av_bswap64 Unexecuted instantiation: rtjpeg.c:av_bswap64 Unexecuted instantiation: hnm4video.c:av_bswap64 Line | Count | Source | 70 | 2.50M | { | 71 | 2.50M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.50M | } |
Unexecuted instantiation: metasound.c:av_bswap64 Unexecuted instantiation: psd.c:av_bswap64 Line | Count | Source | 70 | 2.55M | { | 71 | 2.55M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.55M | } |
Unexecuted instantiation: escape124.c:av_bswap64 Unexecuted instantiation: hdrenc.c:av_bswap64 Unexecuted instantiation: cllc.c:av_bswap64 Line | Count | Source | 70 | 11.7M | { | 71 | 11.7M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 11.7M | } |
Unexecuted instantiation: rawenc.c:av_bswap64 Unexecuted instantiation: qoidec.c:av_bswap64 Unexecuted instantiation: wavpackenc.c:av_bswap64 Line | Count | Source | 70 | 1.30k | { | 71 | 1.30k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.30k | } |
Unexecuted instantiation: pictordec.c:av_bswap64 Line | Count | Source | 70 | 7.07k | { | 71 | 7.07k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 7.07k | } |
motionpixels.c:av_bswap64 Line | Count | Source | 70 | 91.3M | { | 71 | 91.3M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 91.3M | } |
Unexecuted instantiation: msp2dec.c:av_bswap64 Unexecuted instantiation: vp9.c:av_bswap64 Unexecuted instantiation: vp9block.c:av_bswap64 Unexecuted instantiation: vp9data.c:av_bswap64 Unexecuted instantiation: vp9dsp_10bpp.c:av_bswap64 Unexecuted instantiation: vp9dsp_12bpp.c:av_bswap64 Unexecuted instantiation: vp9dsp_8bpp.c:av_bswap64 Unexecuted instantiation: vp9lpf.c:av_bswap64 Unexecuted instantiation: vp9mvs.c:av_bswap64 Unexecuted instantiation: vp9prob.c:av_bswap64 Unexecuted instantiation: vp9recon.c:av_bswap64 Unexecuted instantiation: vbnenc.c:av_bswap64 Unexecuted instantiation: ffv1dec.c:av_bswap64 Unexecuted instantiation: frwu.c:av_bswap64 Unexecuted instantiation: aptxenc.c:av_bswap64 Unexecuted instantiation: intra_utils.c:av_bswap64 Unexecuted instantiation: thread.c:av_bswap64 Unexecuted instantiation: ctu.c:av_bswap64 Unexecuted instantiation: inter.c:av_bswap64 Unexecuted instantiation: intra.c:av_bswap64 Unexecuted instantiation: kmvc.c:av_bswap64 Unexecuted instantiation: xwdenc.c:av_bswap64 Unexecuted instantiation: pcxenc.c:av_bswap64 Line | Count | Source | 70 | 500 | { | 71 | 500 | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 500 | } |
Unexecuted instantiation: kgv1dec.c:av_bswap64 Line | Count | Source | 70 | 50.9k | { | 71 | 50.9k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 50.9k | } |
Unexecuted instantiation: svq1dec.c:av_bswap64 Unexecuted instantiation: sanm.c:av_bswap64 Unexecuted instantiation: pafaudio.c:av_bswap64 Unexecuted instantiation: mpc7.c:av_bswap64 Unexecuted instantiation: dds.c:av_bswap64 Unexecuted instantiation: truemotion2rt.c:av_bswap64 Unexecuted instantiation: a64multienc.c:av_bswap64 Unexecuted instantiation: wcmv.c:av_bswap64 Unexecuted instantiation: v410dec.c:av_bswap64 Unexecuted instantiation: rv40.c:av_bswap64 Unexecuted instantiation: rv40dsp.c:av_bswap64 Unexecuted instantiation: gif.c:av_bswap64 Unexecuted instantiation: lzwenc.c:av_bswap64 Unexecuted instantiation: xsubdec.c:av_bswap64 Unexecuted instantiation: sgienc.c:av_bswap64 Unexecuted instantiation: rasc.c:av_bswap64 Unexecuted instantiation: notchlc.c:av_bswap64 Unexecuted instantiation: fitsenc.c:av_bswap64 Unexecuted instantiation: aic.c:av_bswap64 Unexecuted instantiation: msvideo1enc.c:av_bswap64 Unexecuted instantiation: vqcdec.c:av_bswap64 Unexecuted instantiation: dolby_e.c:av_bswap64 Line | Count | Source | 70 | 2.63M | { | 71 | 2.63M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.63M | } |
Unexecuted instantiation: evrcdec.c:av_bswap64 Unexecuted instantiation: targaenc.c:av_bswap64 Unexecuted instantiation: v308enc.c:av_bswap64 Unexecuted instantiation: zmbv.c:av_bswap64 Unexecuted instantiation: tdsc.c:av_bswap64 Unexecuted instantiation: xwddec.c:av_bswap64 Unexecuted instantiation: dcadec.c:av_bswap64 Line | Count | Source | 70 | 23.3k | { | 71 | 23.3k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 23.3k | } |
Unexecuted instantiation: dca_lbr.c:av_bswap64 Line | Count | Source | 70 | 4.10M | { | 71 | 4.10M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 4.10M | } |
Line | Count | Source | 70 | 687k | { | 71 | 687k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 687k | } |
Unexecuted instantiation: mlpenc.c:av_bswap64 Line | Count | Source | 70 | 1.28M | { | 71 | 1.28M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.28M | } |
Unexecuted instantiation: hapdec.c:av_bswap64 Unexecuted instantiation: snappy.c:av_bswap64 Unexecuted instantiation: atrac3.c:av_bswap64 Unexecuted instantiation: vmdaudio.c:av_bswap64 Unexecuted instantiation: vorbisdec.c:av_bswap64 Unexecuted instantiation: qtrle.c:av_bswap64 Unexecuted instantiation: gemdec.c:av_bswap64 Unexecuted instantiation: xxan.c:av_bswap64 Unexecuted instantiation: arbc.c:av_bswap64 Unexecuted instantiation: flashsv.c:av_bswap64 Unexecuted instantiation: rscc.c:av_bswap64 Unexecuted instantiation: s302menc.c:av_bswap64 Unexecuted instantiation: v210x.c:av_bswap64 Unexecuted instantiation: wavpack.c:av_bswap64 Unexecuted instantiation: dsicinaudio.c:av_bswap64 Unexecuted instantiation: speedhqdec.c:av_bswap64 Unexecuted instantiation: g723_1dec.c:av_bswap64 Unexecuted instantiation: scpr.c:av_bswap64 Unexecuted instantiation: msrleenc.c:av_bswap64 Unexecuted instantiation: 012v.c:av_bswap64 Unexecuted instantiation: g2meet.c:av_bswap64 Unexecuted instantiation: elsdec.c:av_bswap64 Unexecuted instantiation: vorbisenc.c:av_bswap64 Line | Count | Source | 70 | 34.7k | { | 71 | 34.7k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 34.7k | } |
Unexecuted instantiation: indeo4.c:av_bswap64 Unexecuted instantiation: sp5xdec.c:av_bswap64 Unexecuted instantiation: fmvc.c:av_bswap64 Line | Count | Source | 70 | 55.9k | { | 71 | 55.9k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 55.9k | } |
Unexecuted instantiation: qpeg.c:av_bswap64 Unexecuted instantiation: vmnc.c:av_bswap64 Unexecuted instantiation: v210enc.c:av_bswap64 Unexecuted instantiation: atrac1.c:av_bswap64 Unexecuted instantiation: sgidec.c:av_bswap64 Unexecuted instantiation: tiffenc.c:av_bswap64 Unexecuted instantiation: apv_decode.c:av_bswap64 Unexecuted instantiation: apv_entropy.c:av_bswap64 Unexecuted instantiation: xsubenc.c:av_bswap64 Unexecuted instantiation: libopusenc.c:av_bswap64 Unexecuted instantiation: avs.c:av_bswap64 Unexecuted instantiation: j2kenc.c:av_bswap64 Unexecuted instantiation: imm5.c:av_bswap64 Line | Count | Source | 70 | 2.87M | { | 71 | 2.87M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.87M | } |
Unexecuted instantiation: m101.c:av_bswap64 Unexecuted instantiation: adxenc.c:av_bswap64 Unexecuted instantiation: pcm-bluray.c:av_bswap64 Unexecuted instantiation: dvdsubenc.c:av_bswap64 Unexecuted instantiation: vbndec.c:av_bswap64 Unexecuted instantiation: rv60dec.c:av_bswap64 Line | Count | Source | 70 | 504k | { | 71 | 504k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 504k | } |
Unexecuted instantiation: targa.c:av_bswap64 Unexecuted instantiation: nellymoserenc.c:av_bswap64 Unexecuted instantiation: tiertexseqv.c:av_bswap64 Unexecuted instantiation: bmvvideo.c:av_bswap64 Unexecuted instantiation: ra144enc.c:av_bswap64 Unexecuted instantiation: aliaspixenc.c:av_bswap64 Unexecuted instantiation: wbmpenc.c:av_bswap64 Unexecuted instantiation: ffwavesynth.c:av_bswap64 Unexecuted instantiation: rpza.c:av_bswap64 Line | Count | Source | 70 | 2.05M | { | 71 | 2.05M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.05M | } |
Unexecuted instantiation: aliaspixdec.c:av_bswap64 Unexecuted instantiation: dnxhdenc.c:av_bswap64 Unexecuted instantiation: dnxhdenc_init.c:av_bswap64 Line | Count | Source | 70 | 15.5k | { | 71 | 15.5k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 15.5k | } |
Unexecuted instantiation: libvorbisdec.c:av_bswap64 Unexecuted instantiation: cinepak.c:av_bswap64 Line | Count | Source | 70 | 7.69k | { | 71 | 7.69k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 7.69k | } |
Unexecuted instantiation: pcx.c:av_bswap64 Unexecuted instantiation: qcelpdec.c:av_bswap64 Unexecuted instantiation: s302m.c:av_bswap64 Unexecuted instantiation: aasc.c:av_bswap64 Line | Count | Source | 70 | 5.75M | { | 71 | 5.75M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 5.75M | } |
Unexecuted instantiation: ac3dec_fixed.c:av_bswap64 Unexecuted instantiation: argo.c:av_bswap64 Unexecuted instantiation: midivid.c:av_bswap64 Unexecuted instantiation: snowenc.c:av_bswap64 Unexecuted instantiation: mimic.c:av_bswap64 Unexecuted instantiation: eacmv.c:av_bswap64 Unexecuted instantiation: dpxenc.c:av_bswap64 Unexecuted instantiation: fic.c:av_bswap64 bitpacked_enc.c:av_bswap64 Line | Count | Source | 70 | 2.13M | { | 71 | 2.13M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.13M | } |
Unexecuted instantiation: pgssubdec.c:av_bswap64 Line | Count | Source | 70 | 1.64M | { | 71 | 1.64M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.64M | } |
Unexecuted instantiation: ra288.c:av_bswap64 Unexecuted instantiation: pcm-dvdenc.c:av_bswap64 Unexecuted instantiation: fitsdec.c:av_bswap64 Unexecuted instantiation: interplayacm.c:av_bswap64 Unexecuted instantiation: mwsc.c:av_bswap64 Line | Count | Source | 70 | 2.43M | { | 71 | 2.43M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 2.43M | } |
Unexecuted instantiation: ftr.c:av_bswap64 Unexecuted instantiation: cdgraphics.c:av_bswap64 Unexecuted instantiation: cdtoons.c:av_bswap64 Unexecuted instantiation: truemotion1.c:av_bswap64 Line | Count | Source | 70 | 1.81M | { | 71 | 1.81M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.81M | } |
Unexecuted instantiation: agm.c:av_bswap64 Unexecuted instantiation: flacenc.c:av_bswap64 proresenc_kostya.c:av_bswap64 Line | Count | Source | 70 | 3.55M | { | 71 | 3.55M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 3.55M | } |
Unexecuted instantiation: xan.c:av_bswap64 Unexecuted instantiation: svq3.c:av_bswap64 Unexecuted instantiation: tpeldsp.c:av_bswap64 Unexecuted instantiation: ws-snd1.c:av_bswap64 Unexecuted instantiation: flicvideo.c:av_bswap64 Unexecuted instantiation: sbcdec.c:av_bswap64 Unexecuted instantiation: msrle.c:av_bswap64 Unexecuted instantiation: pgxdec.c:av_bswap64 Unexecuted instantiation: cri.c:av_bswap64 Line | Count | Source | 70 | 5.91k | { | 71 | 5.91k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 5.91k | } |
Line | Count | Source | 70 | 3.13M | { | 71 | 3.13M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 3.13M | } |
Unexecuted instantiation: ttaenc.c:av_bswap64 Unexecuted instantiation: cljrdec.c:av_bswap64 Unexecuted instantiation: g728dec.c:av_bswap64 Unexecuted instantiation: cook.c:av_bswap64 Unexecuted instantiation: wbmpdec.c:av_bswap64 Unexecuted instantiation: vqavideo.c:av_bswap64 Unexecuted instantiation: twinvqdec.c:av_bswap64 Unexecuted instantiation: hq_hqa.c:av_bswap64 Unexecuted instantiation: vble.c:av_bswap64 Unexecuted instantiation: mv30.c:av_bswap64 Line | Count | Source | 70 | 98.3k | { | 71 | 98.3k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 98.3k | } |
Unexecuted instantiation: v410enc.c:av_bswap64 Unexecuted instantiation: cpia.c:av_bswap64 Unexecuted instantiation: smc.c:av_bswap64 Unexecuted instantiation: jpeg2000dec.c:av_bswap64 Unexecuted instantiation: jpeg2000htdec.c:av_bswap64 Unexecuted instantiation: dstdec.c:av_bswap64 Line | Count | Source | 70 | 1.19M | { | 71 | 1.19M | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 1.19M | } |
Unexecuted instantiation: zmbvenc.c:av_bswap64 Unexecuted instantiation: sunrastenc.c:av_bswap64 Line | Count | Source | 70 | 63.8k | { | 71 | 63.8k | return (uint64_t)av_bswap32(x) << 32 | av_bswap32(x >> 32); | 72 | 63.8k | } |
|
73 | | #endif |
74 | | |
75 | | // be2ne ... big-endian to native-endian |
76 | | // le2ne ... little-endian to native-endian |
77 | | |
78 | | #if AV_HAVE_BIGENDIAN |
79 | | #define av_be2ne16(x) (x) |
80 | | #define av_be2ne32(x) (x) |
81 | | #define av_be2ne64(x) (x) |
82 | | #define av_le2ne16(x) av_bswap16(x) |
83 | | #define av_le2ne32(x) av_bswap32(x) |
84 | | #define av_le2ne64(x) av_bswap64(x) |
85 | | #define AV_BE2NEC(s, x) (x) |
86 | | #define AV_LE2NEC(s, x) AV_BSWAPC(s, x) |
87 | | #else |
88 | | #define av_be2ne16(x) av_bswap16(x) |
89 | 6.04M | #define av_be2ne32(x) av_bswap32(x) |
90 | 583M | #define av_be2ne64(x) av_bswap64(x) |
91 | 46.8k | #define av_le2ne16(x) (x) |
92 | 2.46G | #define av_le2ne32(x) (x) |
93 | 7.66M | #define av_le2ne64(x) (x) |
94 | 444k | #define AV_BE2NEC(s, x) AV_BSWAPC(s, x) |
95 | | #define AV_LE2NEC(s, x) (x) |
96 | | #endif |
97 | | |
98 | | #define AV_BE2NE16C(x) AV_BE2NEC(16, x) |
99 | 444k | #define AV_BE2NE32C(x) AV_BE2NEC(32, x) |
100 | | #define AV_BE2NE64C(x) AV_BE2NEC(64, x) |
101 | | #define AV_LE2NE16C(x) AV_LE2NEC(16, x) |
102 | | #define AV_LE2NE32C(x) AV_LE2NEC(32, x) |
103 | | #define AV_LE2NE64C(x) AV_LE2NEC(64, x) |
104 | | |
105 | | #endif /* AVUTIL_BSWAP_H */ |