Home
last modified time | relevance | path

Searched full:produce (Results 1 – 25 of 642) sorted by relevance

12345678910>>...26

/linux-6.12.1/Documentation/admin-guide/media/
Dlmedm04.rst23 will produce dvb-usb-lme2510c-s7395.fw
36 will produce dvb-usb-lme2510c-s7395.fw
53 will produce dvb-usb-lme2510-lg.fw
/linux-6.12.1/Documentation/driver-api/
Dswitchtec.rst44 produce an error and any read that doesn't follow a write will
45 produce an error.
50 call -- reading less than 4 bytes will produce an error.)
Dptp.rst107 - GPIO outputs can produce periodic signals
130 GPIO which can time stamp external triggers and one GPIO to produce
133 configured to either time stamp external triggers or produce
/linux-6.12.1/arch/hexagon/include/uapi/asm/
Dunistd.h25 * 2. with __SYSCALL defined to produce function declarations
26 * 3. with __SYSCALL defined to produce syscall table initialization
/linux-6.12.1/tools/arch/hexagon/include/uapi/asm/
Dunistd.h25 * 2. with __SYSCALL defined to produce function declarations
26 * 3. with __SYSCALL defined to produce syscall table initialization
/linux-6.12.1/drivers/i2c/
DKconfig142 Say Y here if you want the I2C core to produce a bunch of debug
149 Say Y here if you want the I2C algorithm drivers to produce a bunch
158 Say Y here if you want the I2C bus drivers to produce a bunch of
/linux-6.12.1/tools/perf/tests/shell/lib/
Dcoresight.sh60 # compiler may produce different code depending on the compiler and
75 # produce more consistent amounts of data each run, to see if over
92 # Specifically crafted test will produce a list of Tread ID's to
/linux-6.12.1/tools/testing/selftests/powerpc/primitives/linux/
Dwordpart.h38 * NOTE: @x is not checked for > 0xff; larger values produce odd results.
46 * NOTE: @x is not checked for > 0xff; larger values produce odd results.
/linux-6.12.1/include/linux/
Dwordpart.h38 * NOTE: @x is not checked for > 0xff; larger values produce odd results.
46 * NOTE: @x is not checked for > 0xff; larger values produce odd results.
Dxxhash.h194 * xxh32_digest() - produce the current xxh32 hash
196 * @state: Produce the current xxh32 hash of this state.
227 * xxh64_digest() - produce the current xxh64 hash
229 * @state: Produce the current xxh64 hash of this state.
/linux-6.12.1/drivers/media/test-drivers/vidtv/
Dvidtv_channel.h15 * Every stream will have its corresponding encoder polled to produce TS packets
39 * Every stream will have its corresponding encoder polled to produce TS packets
/linux-6.12.1/include/linux/qed/
Dqed_chain.h59 /* Cyclic index of next element to produce/consume */
65 /* Cyclic index of next element to produce/consume */
77 * as produce / consume.
80 /* Point to next element to produce/consume */
134 * for fastpath operation [consume/produce] but only for the SINGLE
511 /* produce empty elements */ in qed_chain_reset()
/linux-6.12.1/tools/testing/selftests/rcutorture/bin/
Dkvm-assign-cpus.sh4 # Produce awk statements roughly depicting the system's CPU and cache
5 # layout. If the required information is not available, produce
/linux-6.12.1/Documentation/input/devices/
Dyealink.rst76 '1' : 2 segments digit only able to produce a 1.
78 able to produce at least 1 2 3.
80 able to produce at least 0 1 2 3 4 5.
/linux-6.12.1/drivers/gpu/host1x/hw/
Dhw_host1x02_channel.h17 * can be |'d with others to produce a full register value for
26 * with others to produce a full register value for <x>.
Dhw_host1x04_channel.h17 * can be |'d with others to produce a full register value for
26 * with others to produce a full register value for <x>.
Dhw_host1x05_channel.h17 * can be |'d with others to produce a full register value for
26 * with others to produce a full register value for <x>.
Dhw_host1x01_channel.h17 * can be |'d with others to produce a full register value for
26 * with others to produce a full register value for <x>.
Dhw_host1x01_uclass.h17 * can be |'d with others to produce a full register value for
26 * with others to produce a full register value for <x>.
/linux-6.12.1/drivers/net/ethernet/intel/ice/
Dice_xsk.c603 * ice_clean_xdp_irq_zc - produce AF_XDP descriptors to CQ
667 * @xdp_ring: XDP ring to produce descriptor onto
980 * ice_xmit_pkt - produce a single HW Tx descriptor out of AF_XDP descriptor
981 * @xdp_ring: XDP ring to produce the HW Tx descriptor on
1005 * ice_xmit_pkt_batch - produce a batch of HW Tx descriptors out of AF_XDP descriptors
1006 * @xdp_ring: XDP ring to produce the HW Tx descriptors on
1038 * ice_fill_tx_hw_ring - produce the number of Tx descriptors onto ring
1039 * @xdp_ring: XDP ring to produce the HW Tx descriptors on
1062 * @xdp_ring: XDP ring to produce the HW Tx descriptors on
/linux-6.12.1/tools/perf/pmu-events/arch/x86/grandridge/
Dfloating-point.json29 …"BriefDescription": "Counts the number of floating point operations that produce 32 bit single pre…
37 …"BriefDescription": "Counts the number of floating point operations that produce 64 bit double pre…
/linux-6.12.1/tools/perf/pmu-events/arch/x86/sierraforest/
Dfloating-point.json29 …"BriefDescription": "Counts the number of floating point operations that produce 32 bit single pre…
37 …"BriefDescription": "Counts the number of floating point operations that produce 64 bit double pre…
/linux-6.12.1/drivers/net/ethernet/sgi/
Dioc3-eth.c745 /* Now the rx ring base, consume & produce registers. */ in ioc3_start()
756 /* Now the tx ring base, consume & produce registers. */ in ioc3_start()
985 int produce; in ioc3_start_xmit() local
1038 produce = ip->tx_pi; in ioc3_start_xmit()
1039 desc = &ip->txr[produce]; in ioc3_start_xmit()
1085 ip->tx_skbs[produce] = skb; /* Remember skb */ in ioc3_start_xmit()
1086 produce = (produce + 1) & TX_RING_MASK; in ioc3_start_xmit()
1087 ip->tx_pi = produce; in ioc3_start_xmit()
1088 writel(produce << 7, &ip->regs->etpir); /* Fire ... */ in ioc3_start_xmit()
/linux-6.12.1/tools/testing/selftests/cpufreq/
Dmain.sh30 sptest1: Simple governor switch to produce lockdep.
31 sptest2: Concurrent governor switch to produce lockdep.
/linux-6.12.1/include/uapi/linux/
Dptrace.h126 * Selector is optional (may be NULL), and if invalid will produce
135 * virtual address space from which syscalls will not produce a user

12345678910>>...26