| /linux/drivers/vfio/pci/ |
| H A D | vfio_pci_igd.c | 312 __le16 lval; in vfio_pci_igd_cfg_rw() local 318 lval = cpu_to_le16(val); in vfio_pci_igd_cfg_rw() 319 if (copy_to_user(buf + count - size, &lval, 2)) in vfio_pci_igd_cfg_rw() 328 __le32 lval; in vfio_pci_igd_cfg_rw() local 334 lval = cpu_to_le32(val); in vfio_pci_igd_cfg_rw() 335 if (copy_to_user(buf + count - size, &lval, 4)) in vfio_pci_igd_cfg_rw() 344 __le16 lval; in vfio_pci_igd_cfg_rw() local 350 lval = cpu_to_le16(val); in vfio_pci_igd_cfg_rw() 351 if (copy_to_user(buf + count - size, &lval, 2)) in vfio_pci_igd_cfg_rw()
|
| /linux/kernel/trace/ |
| H A D | trace_probe_tmpl.h | 132 unsigned long lval, llval = val; in process_fetch_insn_bottom() local 137 lval = val; in process_fetch_insn_bottom() 152 lval = llval; in process_fetch_insn_bottom() 157 llval = lval; in process_fetch_insn_bottom() 232 val = lval + sizeof(char *); in process_fetch_insn_bottom()
|
| /linux/tools/testing/selftests/breakpoints/ |
| H A D | breakpoint_test.c | 177 char cval; short sval; int ival; long long lval; in read_var() local 192 lval = *(long long *)&dummy_var[i]; in read_var()
|
| /linux/fs/nls/ |
| H A D | nls_base.c | 33 long lval; member 68 if (l < t->lval || l > UNICODE_MAX || in utf8_to_utf32()
|
| /linux/include/uapi/linux/ |
| H A D | scif_ioctl.h | 180 __u64 lval; member
|
| /linux/kernel/ |
| H A D | sysctl.c | 696 unsigned long lval; in do_proc_vec() local 704 err = proc_get_long(&p, &left, &lval, &neg, in do_proc_vec() 711 if (proc_vec_conv(type, conv, &neg, &lval, i, dir, table)) { in do_proc_vec() 716 if (proc_vec_conv(type, conv, &neg, &lval, i, dir, table)) { in do_proc_vec() 722 proc_put_long(&buffer, &left, lval, neg); in do_proc_vec()
|
| /linux/scripts/kconfig/ |
| H A D | expr.c | 929 union string_value lval = {}, rval = {}; in __expr_calc_value() 965 k1 = expr_parse_string(str1, e->left.sym->type, &lval); 972 res = (lval.u > rval.u) - (lval.u < rval.u); in expr_calc_value() 974 res = (lval.s > rval.s) - (lval.s < rval.s); in expr_calc_value() 896 union string_value lval = {}, rval = {}; __expr_calc_value() local
|
| /linux/sound/core/ |
| H A D | control.c | 1074 long long lval, lmin, lmax, lstep; in sanity_check_input_values() 1080 lval = control->value.integer.value[i]; in sanity_check_input_values() 1086 lval = control->value.integer.value[i]; in sanity_check_input_values() 1092 lval = control->value.integer64.value[i]; in sanity_check_input_values() 1098 lval = control->value.enumerated.item[i]; in sanity_check_elem_value() 1105 if (lval < lmin || lval > lmax) { in sanity_check_elem_value() 1111 control->id.index, lval, lmin, lmax, i); in sanity_check_elem_value() 1115 div64_u64_rem(lval, lstep, &rem); in sanity_check_elem_value() 1122 control->id.index, lval, lste in sanity_check_elem_value() 1013 long long lval, lmin, lmax, lstep; sanity_check_int_value() local [all...] |
| /linux/sound/pci/riptide/ |
| H A D | riptide.c | 923 setmixer(struct cmdif *cif, short num, unsigned short rval, unsigned short lval) in setmixer() argument 928 dev_dbg(cif->dev, "sent mixer %d: 0x%x 0x%x\n", num, rval, lval); in setmixer() 930 SEND_SDGV(cif, num, num, rval, lval); in setmixer() 932 if (rptr.retwords[0] == lval && rptr.retwords[1] == rval) in setmixer() 1059 unsigned short *lval) in getmixer() argument 1066 *lval = rptr.retwords[1]; in getmixer() 1067 dev_dbg(cif->dev, "got mixer %d: 0x%x 0x%x\n", num, *rval, *lval); in getmixer() 1869 unsigned short rval = 0, lval = 0; in snd_riptide_proc_read() local 1891 getmixer(cif, i, &rval, &lval); in snd_riptide_proc_read() 1892 snd_iprintf(buffer, "\n %d: %d %d", i, rval, lval); in snd_riptide_proc_read()
|
| /linux/tools/testing/ktest/ |
| H A D | ktest.pl | 938 my ($lval, $cmp, $rval) = @_; 942 $lval =~ s/^\s*//; 943 $lval =~ s/\s*$//; 949 return $lval eq $rval; 951 return $lval ne $rval; 953 return $lval =~ m/$rval/; 955 return $lval !~ m/$rval/; 958 my $statement = "$lval $cmp $rval";
|
| /linux/drivers/iio/adc/ |
| H A D | mt6359-auxadc.c | 652 u32 reg, rdy_mask, val, lval; in mt6359_auxadc_sample_adc_val() local 686 ret = regmap_read(regmap, reg - 1, &lval); in mt6359_auxadc_sample_adc_val() 690 val = (val << 8) | lval; in mt6359_auxadc_sample_adc_val()
|
| /linux/sound/soc/fsl/ |
| H A D | fsl_ssi.c | 1215 unsigned int lval; in fsl_ssi_ac97_write() local 1233 lval = val << 4; in fsl_ssi_ac97_write() 1234 regmap_write(regs, REG_SSI_SACDAT, lval); in fsl_ssi_ac97_write()
|
| /linux/sound/firewire/ |
| H A D | amdtp-stream.c | 898 static int compare_ohci_cycle_count(u32 lval, u32 rval) in compare_ohci_cycle_count() argument 900 if (lval == rval) in compare_ohci_cycle_count() 902 else if (lval < rval && rval - lval < OHCI_SECOND_MODULUS * CYCLES_PER_SECOND / 2) in compare_ohci_cycle_count()
|