/Linux-v4.19/arch/powerpc/boot/ |
D | hack-coff.c | 38 AOUTHDR aout; in main() local 57 if (read(fd, &aout, aoutsz) != aoutsz) in main() 64 put_16be(aout.o_snentry, i+1); in main() 65 put_16be(aout.o_sntext, i+1); in main() 67 put_16be(aout.o_sndata, i+1); in main() 69 put_16be(aout.o_snbss, i+1); in main() 72 put_16be(aout.magic, AOUT_MAGIC); in main() 74 || write(fd, &aout, aoutsz) != aoutsz) { in main()
|
/Linux-v4.19/arch/alpha/boot/tools/ |
D | objstrip.c | 58 struct exec * aout; /* includes file & aout header */ in main() local 198 aout = (struct exec *) buf; in main() 200 if (!(aout->fh.f_flags & COFF_F_EXEC)) { in main() 206 if (aout->fh.f_opthdr != sizeof(aout->ah)) { in main() 212 if (N_MAGIC(*aout) != OMAGIC) { in main() 217 offset = N_TXTOFF(*aout); in main() 218 fil_size = aout->ah.tsize + aout->ah.dsize; in main() 219 mem_size = fil_size + aout->ah.bsize; in main() 223 prog_name, aout->ah.text_start, in main() 224 aout->ah.text_start + fil_size, offset); in main()
|
/Linux-v4.19/drivers/iio/light/ |
D | cm3605.c | 47 struct iio_channel *aout; member 77 ret = iio_read_channel_processed(cm3605->aout, &res); in cm3605_get_lux() 195 cm3605->aout = devm_iio_channel_get(dev, "aout"); in cm3605_probe() 196 if (IS_ERR(cm3605->aout)) { in cm3605_probe() 197 if (PTR_ERR(cm3605->aout) == -ENODEV) { in cm3605_probe() 202 return PTR_ERR(cm3605->aout); in cm3605_probe() 204 ret = iio_get_channel_type(cm3605->aout, &ch_type); in cm3605_probe()
|
/Linux-v4.19/drivers/hwmon/ |
D | pcf8591.c | 84 u8 aout; member 110 return sprintf(buf, "%d\n", data->aout * 10); in out0_output_show() 130 data->aout = val; in out0_output_store() 131 i2c_smbus_write_byte_data(client, data->control, data->aout); in out0_output_store() 260 data->aout = PCF8591_INIT_AOUT; in pcf8591_init_client() 262 i2c_smbus_write_byte_data(client, data->control, data->aout); in pcf8591_init_client()
|
D | adm9240.c | 153 u8 aout; /* rw aout_output */ member 252 data->aout = i2c_smbus_read_byte_data(client, in adm9240_update_device() 543 return sprintf(buf, "%d\n", AOUT_FROM_REG(data->aout)); in aout_output_show() 560 data->aout = AOUT_TO_REG(val); in aout_output_store() 561 i2c_smbus_write_byte_data(client, ADM9240_REG_ANALOG_OUT, data->aout); in aout_output_store()
|
D | lm87.c | 177 u8 aout; /* register value */ member 264 data->aout = lm87_read_value(client, LM87_REG_AOUT); in lm87_update_device() 633 return sprintf(buf, "%d\n", AOUT_FROM_REG(data->aout)); in aout_output_show() 649 data->aout = AOUT_TO_REG(val); in aout_output_store() 650 lm87_write_value(client, LM87_REG_AOUT, data->aout); in aout_output_store()
|
/Linux-v4.19/arch/arm/mach-imx/ |
D | iomux-v1.c | 104 unsigned int port, unsigned int pin, unsigned int aout) in imx_iomuxv1_set_iconfa() argument 108 unsigned long value = aout << shift; in imx_iomuxv1_set_iconfa() 130 unsigned int aout = (gpio_mode >> GPIO_AOUT_SHIFT) & 3; in mxc_gpio_mode() local 150 imx_iomuxv1_set_iconfa(port, pin, aout); in mxc_gpio_mode()
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | uniphier-pinctrl.dtsi | 9 pinctrl_aout: aout { 10 groups = "aout"; 11 function = "aout";
|
D | qcom-apq8060-dragonboard.dts | 101 io-channel-names = "aout";
|
/Linux-v4.19/arch/sparc/boot/ |
D | Makefile | 11 targets := tftpboot.img image zImage vmlinux.aout 29 $(obj)/vmlinux.aout: vmlinux FORCE
|
D | .gitignore | 6 vmlinux.aout
|
/Linux-v4.19/drivers/media/pci/ttpci/ |
D | av7110_av.c | 430 aux_ring_buffer_write(&av7110->aout, buf, count); in play_video_cb() 438 aux_ring_buffer_write(&av7110->aout, buf, count); in play_audio_cb() 453 rb = (type) ? &av7110->avout : &av7110->aout; in ts_play() 481 dvb_ringbuffer_free(&av7110->aout) >= 20 * 1024) 554 if (nonblock && dvb_ringbuffer_free(&av7110->aout) < 20 * 1024) in dvb_aplay() 558 if (dvb_ringbuffer_free(&av7110->aout) < 20 * 1024) { in dvb_aplay() 561 if (wait_event_interruptible(av7110->aout.queue, in dvb_aplay() 562 (dvb_ringbuffer_free(&av7110->aout) >= 20 * 1024))) in dvb_aplay() 1000 poll_wait(file, &av7110->aout.queue, wait); in dvb_audio_poll() 1003 if (dvb_ringbuffer_free(&av7110->aout) >= 20 * 1024) in dvb_audio_poll() [all …]
|
D | av7110.h | 139 struct dvb_ringbuffer aout; /* buffer for audio */ member
|
D | av7110.c | 598 spin_lock(&av7110->aout.lock); in gpioirq() 599 len = av7110_pes_play(av7110->debi_virt, &av7110->aout, 2048); in gpioirq() 600 spin_unlock(&av7110->aout.lock); in gpioirq() 983 dvb_ringbuffer_flush_spinlock_wakeup(&av7110->aout); in av7110_start_feed()
|
/Linux-v4.19/Documentation/devicetree/bindings/iio/light/ |
D | cm3605.txt | 21 - io-channel-names: must be "aout" 40 io-channel-names = "aout";
|
/Linux-v4.19/arch/sparc/ |
D | Makefile | 75 image zImage uImage tftpboot.img vmlinux.aout: vmlinux
|
/Linux-v4.19/Documentation/ |
D | dontdiff | 248 vmlinux.aout
|
/Linux-v4.19/drivers/media/usb/em28xx/ |
D | em28xx-cards.c | 1652 .aout = EM28XX_AOUT_MONO | /* I2S */ 1675 .aout = EM28XX_AOUT_MONO | /* I2S */ 1822 .aout = EM28XX_AOUT_PCM_IN | EM28XX_AOUT_PCM_STEREO, 1828 .aout = EM28XX_AOUT_PCM_IN | EM28XX_AOUT_PCM_STEREO, 1834 .aout = EM28XX_AOUT_PCM_IN | EM28XX_AOUT_PCM_STEREO, 2019 .aout = EM28XX_AOUT_PCM_IN | EM28XX_AOUT_PCM_STEREO, 2025 .aout = EM28XX_AOUT_PCM_IN | EM28XX_AOUT_PCM_STEREO,
|
D | em28xx.h | 421 enum em28xx_aout aout; member
|
D | em28xx-video.c | 1298 dev->ctl_aoutput = INPUT(index)->aout; in video_mux() 1763 dev->ctl_aoutput = INPUT(a->index)->aout; in vidioc_s_audio()
|