Searched refs:input (Results 51 - 75 of 143) sorted by relevance

123456

/u-boot/drivers/serial/
H A Dserial_bcm283x_mu.c108 static int bcm283x_mu_serial_pending(struct udevice *dev, bool input) argument
116 if (input) {
H A Dserial_npcm.c45 static int npcm_serial_pending(struct udevice *dev, bool input) argument
50 if (input)
H A Dserial_sifive.c167 static int sifive_serial_pending(struct udevice *dev, bool input) argument
172 if (input)
H A Dserial_pic32.c94 static int pic32_uart_pending(struct udevice *dev, bool input) argument
98 if (input)
H A Dserial_mcf.c131 static int coldfire_serial_pending(struct udevice *dev, bool input) argument
136 if (input)
H A Dserial_linflexuart.c152 static int linflex_serial_pending(struct udevice *dev, bool input) argument
157 if (input)
H A Dserial_cortina.c109 static int ca_serial_pending(struct udevice *dev, bool input) argument
116 if (input)
H A Dserial_htif.c116 static int htif_serial_pending(struct udevice *dev, bool input) argument
120 if (!input)
H A Dserial_xuartlite.c79 static int uartlite_serial_pending(struct udevice *dev, bool input) argument
84 if (input)
H A Dserial_sti_asc.c70 static int sti_asc_pending(struct udevice *dev, bool input) argument
77 if (input)
H A Dserial_uniphier.c78 static int uniphier_serial_pending(struct udevice *dev, bool input) argument
82 if (input)
H A Dserial_pl01x_internal.h48 int pl01x_serial_pending(struct udevice *dev, bool input);
H A Dserial_octeon_pcie_console.c10 #include <input.h>
146 /* Limit ourselves to what we can input in a contiguous block */
311 static int octeon_pcie_console_pending(struct udevice *dev, bool input) argument
313 if (input) {
H A Dserial_mtk.c169 static int _mtk_serial_pending(struct mtk_serial_priv *priv, bool input) argument
171 if (input)
206 static int mtk_serial_pending(struct udevice *dev, bool input) argument
210 return _mtk_serial_pending(priv, input);
H A Dserial_mt7620.c120 static int mt7620_serial_pending(struct udevice *dev, bool input) argument
124 if (input)
/u-boot/arch/mips/mach-octeon/include/mach/
H A Dcvmx-regs.h78 #define CVMX_POP(result, input) \
79 asm("pop %[rd],%[rs]" : [rd] "=d"(result) : [rs] "d"(input))
351 * @param input Number to extract from
357 static inline u64 cvmx_bit_extract(u64 input, int lsb, int width) argument
359 u64 result = input >> lsb;
/u-boot/drivers/gpio/
H A Domap_gpio.c104 int input; local
106 input = _get_gpio_direction(bank, gpio);
107 switch (input) {
171 * Set gpio direction as input
226 /* set GPIO pin 'gpio' as an input */
231 /* Configure GPIO direction as input. */
H A Dpca953x_gpio.c62 int input; member in struct:pca95xx_reg
71 .input = PCA953X_INPUT,
78 .input = PCA957X_INPUT,
199 /*0: output; 1: input */
211 ret = pca953x_read_single(dev, info->regs->input, &val, offset);
/u-boot/arch/mips/mach-octeon/
H A Dcvmx-pki.c760 * @param input Input keys to pcam match passed as struct.
764 struct cvmx_pki_pcam_input input,
777 bank = (int)(input.field & 0x01);
791 match.s.data1 = input.data & input.data_mask;
792 match.s.data0 = (~input.data) & input.data_mask;
814 term.s.term1 = input.field & input.field_mask;
815 term.s.term0 = (~input
763 cvmx_pki_pcam_write_entry(int node, int index, uint64_t cluster_mask, struct cvmx_pki_pcam_input input, struct cvmx_pki_pcam_action action) argument
[all...]
/u-boot/tools/
H A Dexpo.py94 proc = subprocess.run('dtc', input=data, capture_output=True)
/u-boot/arch/arm/mach-snapdragon/
H A Dof_fixup.c22 #include <dt-bindings/input/linux-event-codes.h>
/u-boot/drivers/
H A DMakefile19 obj-$(CONFIG_$(SPL_TPL_)INPUT) += input/
114 obj-y += input/
/u-boot/board/samsung/common/
H A Dmisc.c22 #include <linux/input.h>
/u-boot/lib/zstd/decompress/
H A Dzstd_decompress.c44 * (defined as: no byte read from input, and no byte flushed to output)
507 * note : this function does not consume input, it only reads it.
568 /* check input validity */
971 "specifying more input bytes than size of frame(s). "
984 RETURN_ERROR_IF(srcSize, srcSize_wrong, "input not entirely consumed");
1045 * Similar to ZSTD_nextSrcSizeToDecompress(), but when a block input can be streamed,
1046 * we allow taking a partial block as the input. Currently only raw uncompressed blocks can
1050 * output, and avoid copying the input.
1052 * @param inputSize - The total amount of input that the caller currently has.
1827 * used both when reading directly from the ZSTD_inBuffer, and in buffered input mod
1859 ZSTD_decompressStream(ZSTD_DStream* zds, ZSTD_outBuffer* output, ZSTD_inBuffer* input) argument
2125 ZSTD_inBuffer input = { src, srcSize, *srcPos }; local
[all...]
/u-boot/tools/patman/
H A Dsettings.py207 name = input("Enter name: ")
212 email = input("Enter email: ")

Completed in 356 milliseconds

123456