| /linux/kernel/ |
| H A D | sysctl.c | 577 int (*conv)(bool *negp, unsigned long *u_ptr, int *k_ptr, in do_proc_dointvec() 594 if (!conv) in do_proc_dointvec() 595 conv = do_proc_int_conv; in do_proc_dointvec() 620 if (conv(&neg, &lval, i, 1, table)) { in do_proc_dointvec() 625 if (conv(&neg, &lval, i, 0, table)) { in do_proc_dointvec() 649 int (*conv)(unsigned long *u_ptr, in do_proc_douintvec_w() 681 if (conv(&lval, (unsigned int *) table->data, 1, table)) { in do_proc_douintvec_w() 702 int (*conv)(unsigned long *u_ptr, in do_proc_douintvec_r() 712 if (conv(&lval, (unsigned int *) table->data, 0, table)) { in do_proc_douintvec_r() 732 int (*conv)(unsigned long *u_ptr, in do_proc_douintvec() [all …]
|
| /linux/fs/smb/server/ |
| H A D | misc.c | 323 char *conv; in ksmbd_convert_dir_info_name() local 329 conv = kmalloc(sz, KSMBD_DEFAULT_GFP); in ksmbd_convert_dir_info_name() 330 if (!conv) in ksmbd_convert_dir_info_name() 334 *conv_len = smbConvertToUTF16((__le16 *)conv, d_info->name, in ksmbd_convert_dir_info_name() 339 conv[*conv_len] = 0x00; in ksmbd_convert_dir_info_name() 340 conv[*conv_len + 1] = 0x00; in ksmbd_convert_dir_info_name() 341 return conv; in ksmbd_convert_dir_info_name()
|
| /linux/drivers/media/i2c/ccs/ |
| H A D | ccs-reg-access.c | 99 bool only8, bool conv) in __ccs_read_addr() argument 108 *val = conv ? ccs_reg_conv(sensor, reg, __val) : __val; in __ccs_read_addr() 165 bool force8, bool quirk, bool conv, bool data) in ccs_read_addr_raw() argument 184 return __ccs_read_addr(sensor, reg, val, true, conv); in ccs_read_addr_raw() 190 conv); in ccs_read_addr_raw()
|
| /linux/Documentation/hwmon/ |
| H A D | max31827.rst | 78 a set frequency. When powered on, the chip measures temperatures with 1 conv/s. 83 - 64000 (ms) = 1 conv/64 sec 84 - 32000 (ms) = 1 conv/32 sec 85 - 16000 (ms) = 1 conv/16 sec 86 - 4000 (ms) = 1 conv/4 sec 87 - 1000 (ms) = 1 conv/sec (default) 88 - 250 (ms) = 4 conv/sec 89 - 125 (ms) = 8 conv/sec 92 the conversion frequency to 1 conv/s. The conversion time varies depending on
|
| /linux/drivers/media/i2c/ |
| H A D | tda1997x.c | 252 const struct color_matrix_coefs *conv; member 665 state->conv = NULL; in tda1997x_configure_csc() 672 state->conv = &conv_matrix[RGBLIMITED_RGBFULL]; in tda1997x_configure_csc() 675 state->conv = &conv_matrix[ITU709_RGBFULL]; in tda1997x_configure_csc() 677 state->conv = &conv_matrix[ITU601_RGBFULL]; in tda1997x_configure_csc() 688 state->conv = &conv_matrix[RGBFULL_ITU601]; in tda1997x_configure_csc() 690 state->conv = &conv_matrix[RGBFULL_ITU709]; in tda1997x_configure_csc() 694 state->conv = &conv_matrix[RGBLIMITED_ITU601]; in tda1997x_configure_csc() 696 state->conv = &conv_matrix[RGBLIMITED_ITU709]; in tda1997x_configure_csc() 701 if (state->conv) { in tda1997x_configure_csc() [all …]
|
| /linux/include/crypto/internal/ |
| H A D | drbg.h | 23 __be32 conv; in drbg_cpu_to_be32() member 27 conversion->conv = cpu_to_be32(val); in drbg_cpu_to_be32()
|
| /linux/drivers/media/v4l2-core/ |
| H A D | v4l2-fwnode.c | 88 const struct v4l2_fwnode_bus_conv *conv = in v4l2_fwnode_bus_type_to_mbus() local 91 return conv ? conv->mbus_type : V4L2_MBUS_INVALID; in v4l2_fwnode_bus_type_to_mbus() 97 const struct v4l2_fwnode_bus_conv *conv = in v4l2_fwnode_bus_type_to_string() local 100 return conv ? conv->name : "not found"; in v4l2_fwnode_bus_type_to_string() 118 const struct v4l2_fwnode_bus_conv *conv = in v4l2_fwnode_mbus_type_to_string() local 121 return conv ? conv->name : "not found"; in v4l2_fwnode_mbus_type_to_string()
|
| /linux/drivers/net/pcs/ |
| H A D | pcs-rzn1-miic.c | 73 u8 conv[MIIC_MODCTRL_CONF_CONV_MAX]; member 592 if (miic_modctrl_match(table_entry->conv, dt_val, in miic_match_dt_conf() 676 struct device_node *conv; in miic_parse_dt() local 691 for_each_available_child_of_node(np, conv) { in miic_parse_dt() 692 if (of_property_read_u32(conv, "reg", &port)) in miic_parse_dt() 695 if (of_property_read_u32(conv, "renesas,miic-input", &conf)) in miic_parse_dt() 701 active_low = of_property_read_bool(conv, "renesas,miic-phy-link-active-low"); in miic_parse_dt()
|
| /linux/drivers/video/fbdev/omap/ |
| H A D | hwa742.c | 177 static void set_format_regs(int conv, int transl, int flags) in set_format_regs() argument 191 hwa742_write_reg(HWA742_INPUT_MODE_REG, conv); in set_format_regs() 343 int conv, transl; in send_frame_handler() local 359 conv = 0x08; in send_frame_handler() 364 conv = 0x09; in send_frame_handler() 369 conv = 0x01; in send_frame_handler() 378 set_format_regs(conv, transl, flags); in send_frame_handler()
|
| /linux/include/linux/ |
| H A D | sysctl.h | 89 int (*conv)(bool *negp, unsigned long *u_ptr, int *k_ptr, 105 int (*conv)(unsigned long *lvalp, unsigned int *valp,
|
| /linux/tools/testing/selftests/zram/ |
| H A D | zram01.sh | 40 dd conv=notrunc if=/dev/zero of=zram${i}/file \
|
| /linux/drivers/comedi/drivers/ |
| H A D | amplc_pci230.c | 1862 unsigned short conv; in pci230_ai_start() local 1880 conv = PCI230_ADC_TRIG_NONE; in pci230_ai_start() 1884 conv = PCI230_ADC_TRIG_Z2CT2; in pci230_ai_start() 1890 conv = PCI230_ADC_TRIG_EXTP; in pci230_ai_start() 1893 conv = PCI230_ADC_TRIG_EXTN; in pci230_ai_start() 1899 conv = PCI230_ADC_TRIG_EXTP; in pci230_ai_start() 1902 conv = PCI230_ADC_TRIG_EXTN; in pci230_ai_start() 1911 conv = PCI230_ADC_TRIG_Z2CT2; in pci230_ai_start() 1914 devpriv->adccon = (devpriv->adccon & ~PCI230_ADC_TRIG_MASK) | conv; in pci230_ai_start()
|
| /linux/drivers/iio/common/ms_sensors/ |
| H A D | ms_sensors_i2c.h | 56 int ms_sensors_convert_and_read(void *cli, u8 conv, u8 rd,
|
| H A D | ms_sensors_i2c.c | 104 int ms_sensors_convert_and_read(void *cli, u8 conv, u8 rd, in ms_sensors_convert_and_read() argument 112 ret = i2c_smbus_write_byte(client, conv); in ms_sensors_convert_and_read()
|
| /linux/arch/arm/boot/dts/renesas/ |
| H A D | r9a06g032.dtsi | 423 mii_conv1: mii-conv@1 { 428 mii_conv2: mii-conv@2 { 433 mii_conv3: mii-conv@3 { 438 mii_conv4: mii-conv@4 { 443 mii_conv5: mii-conv@5 {
|
| /linux/drivers/iio/adc/ |
| H A D | palmas_gpadc.c | 993 int adc_period, conv; in palmas_adc_configure_events() local 1016 conv = 0; in palmas_adc_configure_events() 1022 conv |= PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN; in palmas_adc_configure_events() 1059 conv |= PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN; in palmas_adc_configure_events() 1101 PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN, conv); in palmas_adc_configure_events()
|
| H A D | ti-ads1018.c | 555 __be16 conv; in ads1018_trigger_handler() member 562 ret = ads1018_spi_read_exclusive(ads1018, &scan.conv, true); in ads1018_trigger_handler() 566 scan.conv = ads1018->rx_buf[0]; in ads1018_trigger_handler()
|
| /linux/sound/hda/common/ |
| H A D | proc.c | 454 int conv = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0); in print_audio_io() local 457 (conv & AC_CONV_STREAM) >> AC_CONV_STREAM_SHIFT, in print_audio_io() 458 conv & AC_CONV_CHANNEL); in print_audio_io() 460 if (wid_type == AC_WID_AUD_IN && (conv & AC_CONV_CHANNEL) == 0) { in print_audio_io()
|
| /linux/arch/powerpc/crypto/ |
| H A D | aesp10-ppc.pl | 539 my $conv=$3; 554 SWITCH: for($conv) {
|
| /linux/arch/powerpc/boot/ |
| H A D | wrapper | 554 run_cmd dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \ 558 run_cmd dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
|
| /linux/Documentation/admin-guide/media/ |
| H A D | lmedm04.rst | 105 echo -ne \\xF0\\x22 | dd conv=notrunc bs=1 count=2 seek=266 of=dvb-usb-lme2510c-rs2000.fw
|
| /linux/drivers/iio/temperature/ |
| H A D | tsys01.c | 35 int (*convert_and_read)(void *cli, u8 conv, u8 rd,
|
| /linux/drivers/hwmon/ |
| H A D | tsc1641.c | 182 int conv = interval * 1000; in tsc1641_upd_interval_to_reg() local 183 int conv_bits = find_closest(conv, tsc1641_conv_times, in tsc1641_upd_interval_to_reg()
|
| /linux/arch/x86/boot/ |
| H A D | Makefile | 62 cmd_image = (dd if=$< bs=4k conv=sync status=none; cat $(filter-out $<,$(real-prereqs))) >$@
|
| H A D | genimage.sh | 240 $dd if="$mbr" of="$FIMAGE" bs=440 count=1 conv=notrunc 2>/dev/null
|