/usr/src/kernels/4.18.0-553.157.1.el8_10.x86_64/include/media
NameSizeModeActions
davinci/-0755rm
drv-intf/-0755rm
i2c/-0755rm
tpg/-0755rm
cec-notifier.h66780644editdlrm
cec-pin.h29470644editdlrm
cec.h183970644editdlrm
demux.h232370644editdlrm
dmxdev.h60340644editdlrm
dvb-usb-ids.h182040644editdlrm
dvbdev.h150890644editdlrm
dvb_ca_en50221.h44550644editdlrm
dvb_demux.h110330644editdlrm
dvb_frontend.h297010644editdlrm
dvb_math.h18110644editdlrm
dvb_net.h25830644editdlrm
dvb_ringbuffer.h85240644editdlrm
dvb_vb2.h78380644editdlrm
frame_vector.h14470644editdlrm
imx.h3960644editdlrm
media-device.h161130644editdlrm
media-devnode.h58140644editdlrm
media-entity.h354210644editdlrm
rc-core.h132110644editdlrm
rc-map.h128060644editdlrm
rcar-fcp.h13420644editdlrm
soc_camera.h133000644editdlrm
tuner-types.h77230644editdlrm
tuner.h90590644editdlrm
tveeprom.h33700644editdlrm
v4l2-async.h76490644editdlrm
v4l2-clk.h21440644editdlrm
v4l2-common.h165380644editdlrm
v4l2-ctrls.h399420644editdlrm
v4l2-dev.h161090644editdlrm
v4l2-device.h181270644editdlrm
v4l2-dv-timings.h88870644editdlrm
v4l2-event.h62770644editdlrm
v4l2-fh.h47590644editdlrm
v4l2-flash-led-class.h60340644editdlrm
v4l2-fwnode.h141840644editdlrm
v4l2-image-sizes.h8640644editdlrm
v4l2-ioctl.h326690644editdlrm
v4l2-mc.h82130644editdlrm
v4l2-mediabus.h62340644editdlrm
v4l2-mem2mem.h201860644editdlrm
v4l2-rect.h46500644editdlrm
v4l2-subdev.h415790644editdlrm
videobuf-core.h71480644editdlrm
videobuf-dma-contig.h10620644editdlrm
videobuf-dma-sg.h30090644editdlrm
videobuf-vmalloc.h13190644editdlrm
videobuf2-core.h451100644editdlrm
videobuf2-dma-contig.h8660644editdlrm
videobuf2-dma-sg.h6960644editdlrm
videobuf2-dvb.h18630644editdlrm
videobuf2-memops.h11010644editdlrm
videobuf2-v4l2.h107190644editdlrm
videobuf2-vmalloc.h5090644editdlrm
vsp1.h32880644editdlrm
Edit: /usr/src/kernels/4.18.0-553.157.1.el8_10.x86_64/include/media/dvb_math.h (1811B)
/* * dvb-math provides some complex fixed-point math * operations shared between the dvb related stuff * * Copyright (C) 2006 Christoph Pfister (christophpfister@gmail.com) * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. */ #ifndef __DVB_MATH_H #define __DVB_MATH_H #include /** * intlog2 - computes log2 of a value; the result is shifted left by 24 bits * * @value: The value (must be != 0) * * to use rational values you can use the following method: * * intlog2(value) = intlog2(value * 2^x) - x * 2^24 * * Some usecase examples: * * intlog2(8) will give 3 << 24 = 3 * 2^24 * * intlog2(9) will give 3 << 24 + ... = 3.16... * 2^24 * * intlog2(1.5) = intlog2(3) - 2^24 = 0.584... * 2^24 * * * return: log2(value) * 2^24 */ extern unsigned int intlog2(u32 value); /** * intlog10 - computes log10 of a value; the result is shifted left by 24 bits * * @value: The value (must be != 0) * * to use rational values you can use the following method: * * intlog10(value) = intlog10(value * 10^x) - x * 2^24 * * An usecase example: * * intlog10(1000) will give 3 << 24 = 3 * 2^24 * * due to the implementation intlog10(1000) might be not exactly 3 * 2^24 * * look at intlog2 for similar examples * * return: log10(value) * 2^24 */ extern unsigned int intlog10(u32 value); #endif