Home
last modified time | relevance | path

Searched refs:aout (Results 1 – 25 of 49) sorted by relevance

12

/OK3568_Linux_fs/kernel/arch/powerpc/boot/
H A Dhack-coff.c34 AOUTHDR aout; in main() local
53 if (read(fd, &aout, aoutsz) != aoutsz) in main()
60 put_16be(aout.o_snentry, i+1); in main()
61 put_16be(aout.o_sntext, i+1); in main()
63 put_16be(aout.o_sndata, i+1); in main()
65 put_16be(aout.o_snbss, i+1); in main()
68 put_16be(aout.magic, AOUT_MAGIC); in main()
70 || write(fd, &aout, aoutsz) != aoutsz) { in main()
/OK3568_Linux_fs/kernel/arch/alpha/boot/tools/
H A Dobjstrip.c58 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()
/OK3568_Linux_fs/kernel/drivers/iio/light/
H A Dcm3605.c48 struct iio_channel *aout; member
78 ret = iio_read_channel_processed(cm3605->aout, &res); in cm3605_get_lux()
196 cm3605->aout = devm_iio_channel_get(dev, "aout"); in cm3605_probe()
197 if (IS_ERR(cm3605->aout)) { in cm3605_probe()
198 if (PTR_ERR(cm3605->aout) == -ENODEV) { in cm3605_probe()
203 return PTR_ERR(cm3605->aout); in cm3605_probe()
205 ret = iio_get_channel_type(cm3605->aout, &ch_type); in cm3605_probe()
/OK3568_Linux_fs/kernel/drivers/hwmon/
H A Dpcf8591.c71 u8 aout; member
97 return sprintf(buf, "%d\n", data->aout * 10); in out0_output_show()
117 data->aout = val; in out0_output_store()
118 i2c_smbus_write_byte_data(client, data->control, data->aout); in out0_output_store()
246 data->aout = PCF8591_INIT_AOUT; in pcf8591_init_client()
248 i2c_smbus_write_byte_data(client, data->control, data->aout); in pcf8591_init_client()
H A Dadm9240.c142 u8 aout; /* rw aout_output */ member
263 &data->aout, 1); in adm9240_update_config()
627 return sprintf(buf, "%d\n", AOUT_FROM_REG(data->aout)); in aout_output_show()
643 data->aout = AOUT_TO_REG(val); in aout_output_store()
644 err = regmap_write(data->regmap, ADM9240_REG_ANALOG_OUT, data->aout); in aout_output_store()
H A Dlm87.c164 u8 aout; /* register value */ member
251 data->aout = lm87_read_value(client, LM87_REG_AOUT); in lm87_update_device()
629 return sprintf(buf, "%d\n", AOUT_FROM_REG(data->aout)); in aout_output_show()
645 data->aout = AOUT_TO_REG(val); in aout_output_store()
646 lm87_write_value(client, LM87_REG_AOUT, data->aout); in aout_output_store()
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Duniphier-pinctrl.dtsi9 pinctrl_aout: aout {
10 groups = "aout";
11 function = "aout";
/OK3568_Linux_fs/kernel/drivers/media/pci/ttpci/
H A Dav7110_av.c416 aux_ring_buffer_write(&av7110->aout, buf, count); in play_video_cb()
424 aux_ring_buffer_write(&av7110->aout, buf, count); in play_audio_cb()
439 rb = (type) ? &av7110->avout : &av7110->aout; in ts_play()
467 dvb_ringbuffer_free(&av7110->aout) >= 20 * 1024)
540 if (nonblock && dvb_ringbuffer_free(&av7110->aout) < 20 * 1024) in dvb_aplay()
544 if (dvb_ringbuffer_free(&av7110->aout) < 20 * 1024) { in dvb_aplay()
547 if (wait_event_interruptible(av7110->aout.queue, in dvb_aplay()
548 (dvb_ringbuffer_free(&av7110->aout) >= 20 * 1024))) in dvb_aplay()
985 poll_wait(file, &av7110->aout.queue, wait); in dvb_audio_poll()
988 if (dvb_ringbuffer_free(&av7110->aout) >= 20 * 1024) in dvb_audio_poll()
[all …]
H A Dav7110.h127 struct dvb_ringbuffer aout; /* buffer for audio */ member
/OK3568_Linux_fs/kernel/arch/sparc/boot/
H A DMakefile11 targets := tftpboot.img image zImage vmlinux.aout
29 $(obj)/vmlinux.aout: vmlinux FORCE
H A D.gitignore7 vmlinux.aout
/OK3568_Linux_fs/u-boot/arch/arm/dts/
H A Duniphier-pinctrl.dtsi12 groups = "aout";
13 function = "aout";
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/iio/light/
H A Dcm3605.txt21 - io-channel-names: must be "aout"
40 io-channel-names = "aout";
/OK3568_Linux_fs/u-boot/arch/arm/cpu/arm926ejs/mx27/
H A Dgeneric.c212 unsigned int aout = (gpio_mode & GPIO_AOUT_MASK) >> GPIO_AOUT_SHIFT; in imx_gpio_mode() local
261 writel(readl(&regs->port[port].iconfa1) | aout << (pin * 2), in imx_gpio_mode()
277 writel(readl(&regs->port[port].iconfa2) | aout << (pin * 2), in imx_gpio_mode()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Db-header-vars14 …droid.h glibc-stdint.h elf.h linux-gas.h linux-elf.h bpabi.h linux-eabi.h aout.h arm.h initfini-ar…
15 …droid.h glibc-stdint.h elf.h linux-gas.h linux-elf.h bpabi.h linux-eabi.h aout.h arm.h initfini-ar…
20 …droid.h glibc-stdint.h elf.h linux-gas.h linux-elf.h bpabi.h linux-eabi.h aout.h arm.h initfini-ar…
39 …droid.h glibc-stdint.h elf.h linux-gas.h linux-elf.h bpabi.h linux-eabi.h aout.h arm.h initfini-ar…
40 …droid.h glibc-stdint.h elf.h linux-gas.h linux-elf.h bpabi.h linux-eabi.h aout.h arm.h initfini-ar…
46 …droid.h glibc-stdint.h elf.h linux-gas.h linux-elf.h bpabi.h linux-eabi.h aout.h arm.h initfini-ar…
47 …droid.h glibc-stdint.h elf.h linux-gas.h linux-elf.h bpabi.h linux-eabi.h aout.h arm.h initfini-ar…
50 …droid.h glibc-stdint.h elf.h linux-gas.h linux-elf.h bpabi.h linux-eabi.h aout.h arm.h initfini-ar…
51aout.h arm.h initfini-array.h defaults.h insn-constants.h arm-cpu.h arm-isa.h insn-flags.h options…
53aout.h arm.h initfini-array.h defaults.h insn-constants.h arm-cpu.h arm-isa.h insn-flags.h options…
[all …]
/OK3568_Linux_fs/external/chromium/licenses/
H A DREADME98 directory for a Sun 4 cross m68k-aout environment like this:
101 mkdir ../newlib-m68k-aout
102 cd ../newlib-m68k-aout
103 ../newlib-2.0.0/configure --host=sun4 --target=m68k-aout
110 directory `newlib-m68k-aout/libiberty', and NEWLIB itself in
111 `newlib-m68k-aout/newlib'.
517 and how you configured it (e.g., "sun4 host and m68k-aout target").
/OK3568_Linux_fs/kernel/arch/sparc/
H A DMakefile75 image zImage uImage tftpboot.img vmlinux.aout: vmlinux
/OK3568_Linux_fs/external/xserver/
H A Dconfig.sub1374 | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \
1569 os=aout
1612 os=aout
/OK3568_Linux_fs/buildroot/support/gnuconfig/
H A Dconfig.sub1512 os=aout
1555 os=aout
1703 | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \
/OK3568_Linux_fs/buildroot/dl/stressapptest/git/
H A Dconfig.sub1588 os=-aout
1628 os=-aout
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0034-efi-Move-the-shim_lock-verifier-to-the-GRUB-core.patch3506 -@COND_i386_pc_TRUE@am__append_3342 = aout.module
3507 -@COND_i386_pc_TRUE@am__append_3343 = aout.module$(EXEEXT)
3510 +@COND_i386_pc_TRUE@am__append_3335 = aout.module
3511 +@COND_i386_pc_TRUE@am__append_3336 = aout.module$(EXEEXT)
3519 @COND_i386_pc_TRUE@ aout.marker
3520 -@COND_i386_pc_TRUE@am__append_3347 = aout.mod
3521 -@COND_i386_pc_TRUE@am__append_3348 = aout.marker
3522 -@COND_i386_efi_TRUE@am__append_3349 = aout.module
3523 -@COND_i386_efi_TRUE@am__append_3350 = aout.module$(EXEEXT)
3527 +@COND_i386_pc_TRUE@am__append_3340 = aout.mod
[all …]
/OK3568_Linux_fs/kernel/drivers/media/usb/em28xx/
H A Dem28xx-cards.c1652 .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,
H A Dem28xx.h426 enum em28xx_aout aout; member
/OK3568_Linux_fs/kernel/Documentation/
H A Ddontdiff253 vmlinux.aout
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/gettext/gettext-minimal-0.21/
H A Dconfig.rpath592 linux*oldld* | linux*aout* | linux*coff*)

12