Home
last modified time | relevance | path

Searched refs:oval (Results 1 – 25 of 65) sorted by relevance

123

/linux/arch/x86/include/asm/
A Dfutex.h15 #define unsafe_atomic_op1(insn, oval, uaddr, oparg, label) \ argument
29 *oval = oldval; \
33 #define unsafe_atomic_op2(insn, oval, uaddr, oparg, label) \ argument
53 *oval = oldval; \
56 static __always_inline int arch_futex_atomic_op_inuser(int op, int oparg, int *oval, in arch_futex_atomic_op_inuser() argument
64 unsafe_atomic_op1("xchgl %0, %2", oval, uaddr, oparg, Efault); in arch_futex_atomic_op_inuser()
67 unsafe_atomic_op1(LOCK_PREFIX "xaddl %0, %2", oval, in arch_futex_atomic_op_inuser()
71 unsafe_atomic_op2("orl %4, %3", oval, uaddr, oparg, Efault); in arch_futex_atomic_op_inuser()
74 unsafe_atomic_op2("andl %4, %3", oval, uaddr, ~oparg, Efault); in arch_futex_atomic_op_inuser()
77 unsafe_atomic_op2("xorl %4, %3", oval, uaddr, oparg, Efault); in arch_futex_atomic_op_inuser()
A Dpercpu.h189 : [oval] "=&a" (pxo_old__), \
206 : [oval] "+a" (pco_old__), \
282 #define raw_cpu_cmpxchg_1(pcp, oval, nval) percpu_cmpxchg_op(1, , pcp, oval, nval) argument
283 #define raw_cpu_cmpxchg_2(pcp, oval, nval) percpu_cmpxchg_op(2, , pcp, oval, nval) argument
284 #define raw_cpu_cmpxchg_4(pcp, oval, nval) percpu_cmpxchg_op(4, , pcp, oval, nval) argument
289 #define this_cpu_cmpxchg_1(pcp, oval, nval) percpu_cmpxchg_op(1, volatile, pcp, oval, nval) argument
290 #define this_cpu_cmpxchg_2(pcp, oval, nval) percpu_cmpxchg_op(2, volatile, pcp, oval, nval) argument
291 #define this_cpu_cmpxchg_4(pcp, oval, nval) percpu_cmpxchg_op(4, volatile, pcp, oval, nval) argument
322 #define raw_cpu_cmpxchg_8(pcp, oval, nval) percpu_cmpxchg_op(8, , pcp, oval, nval) argument
331 #define this_cpu_cmpxchg_8(pcp, oval, nval) percpu_cmpxchg_op(8, volatile, pcp, oval, nval) argument
/linux/include/asm-generic/
A Dpercpu.h97 if (__ret == (oval)) \
286 #define raw_cpu_cmpxchg_1(pcp, oval, nval) \ argument
287 raw_cpu_generic_cmpxchg(pcp, oval, nval)
290 #define raw_cpu_cmpxchg_2(pcp, oval, nval) \ argument
291 raw_cpu_generic_cmpxchg(pcp, oval, nval)
295 raw_cpu_generic_cmpxchg(pcp, oval, nval)
299 raw_cpu_generic_cmpxchg(pcp, oval, nval)
412 this_cpu_generic_cmpxchg(pcp, oval, nval)
416 this_cpu_generic_cmpxchg(pcp, oval, nval)
420 this_cpu_generic_cmpxchg(pcp, oval, nval)
[all …]
A Dfutex.h31 arch_futex_atomic_op_inuser(int op, u32 oparg, int *oval, u32 __user *uaddr) in arch_futex_atomic_op_inuser() argument
72 *oval = oldval; in arch_futex_atomic_op_inuser()
117 arch_futex_atomic_op_inuser(int op, u32 oparg, int *oval, u32 __user *uaddr) in arch_futex_atomic_op_inuser() argument
/linux/Documentation/gpu/dp-mst/
A Dtopology-figure-1.dot43 mstb1 [label="MSTB #1";style=filled;fillcolor=palegreen;shape=oval];
44 mstb2 [label="MSTB #2";style=filled;fillcolor=palegreen;shape=oval];
45 mstb3 [label="MSTB #3";style=filled;fillcolor=palegreen;shape=oval];
46 mstb4 [label="MSTB #4";style=filled;fillcolor=palegreen;shape=oval];
48 port1 [label="Port #1";shape=oval];
49 port2 [label="Port #2";shape=oval];
50 port3 [label="Port #3";shape=oval];
51 port4 [label="Port #4";shape=oval];
/linux/sound/isa/sb/
A Dsb_mixer.c80 unsigned char val, oval; in snd_sbmixer_put_single() local
86 change = val != oval; in snd_sbmixer_put_single()
181 unsigned char oval; in snd_dt019x_input_sw_get() local
186 switch (oval & 0x07) { in snd_dt019x_input_sw_get()
243 change = nval != oval; in snd_dt019x_input_sw_put()
269 unsigned char oval; in snd_als4k_mono_capture_route_get() local
274 oval >>= 6; in snd_als4k_mono_capture_route_get()
275 if (oval > 2) in snd_als4k_mono_capture_route_get()
276 oval = 2; in snd_als4k_mono_capture_route_get()
322 unsigned char oval; in snd_sb8mixer_get_mux() local
[all …]
/linux/arch/s390/include/asm/
A Dpercpu.h134 #define arch_this_cpu_cmpxchg(pcp, oval, nval) \ argument
141 ret__ = cmpxchg(ptr__, oval, nval); \
146 #define this_cpu_cmpxchg_1(pcp, oval, nval) arch_this_cpu_cmpxchg(pcp, oval, nval) argument
147 #define this_cpu_cmpxchg_2(pcp, oval, nval) arch_this_cpu_cmpxchg(pcp, oval, nval) argument
148 #define this_cpu_cmpxchg_4(pcp, oval, nval) arch_this_cpu_cmpxchg(pcp, oval, nval) argument
149 #define this_cpu_cmpxchg_8(pcp, oval, nval) arch_this_cpu_cmpxchg(pcp, oval, nval) argument
/linux/net/netfilter/
A Dxt_statistic.c33 int nval, oval; in statistic_mt() local
42 oval = atomic_read(&info->master->count); in statistic_mt()
43 nval = (oval == info->u.nth.every) ? 0 : oval + 1; in statistic_mt()
44 } while (atomic_cmpxchg(&info->master->count, oval, nval) != oval); in statistic_mt()
A Dnft_numgen.c27 u32 nval, oval; in nft_ng_inc_gen() local
30 oval = atomic_read(&priv->counter); in nft_ng_inc_gen()
31 nval = (oval + 1 < priv->modulus) ? oval + 1 : 0; in nft_ng_inc_gen()
32 } while (atomic_cmpxchg(&priv->counter, oval, nval) != oval); in nft_ng_inc_gen()
/linux/sound/ppc/
A Dburgundy.c301 int oval; in snd_pmac_burgundy_get_gain() local
303 oval = snd_pmac_burgundy_rcb(chip, addr); in snd_pmac_burgundy_get_gain()
305 oval = ~oval & 0xff; in snd_pmac_burgundy_get_gain()
319 int oval, val; in snd_pmac_burgundy_put_gain() local
323 oval = ~oval & 0xff; in snd_pmac_burgundy_put_gain()
332 return val != oval; in snd_pmac_burgundy_put_gain()
379 int val, oval; in snd_pmac_burgundy_put_switch_w() local
387 return val != oval; in snd_pmac_burgundy_put_switch_w()
435 int val, oval; in snd_pmac_burgundy_put_switch_b() local
437 val = oval & ~(lmask | rmask); in snd_pmac_burgundy_put_switch_b()
[all …]
/linux/sound/pci/ice1712/
A Dpontis.c128 unsigned short oval, nval; in wm_dac_vol_put() local
136 oval = wm_get(ice, idx) & 0xff; in wm_dac_vol_put()
137 if (oval != nval) { in wm_dac_vol_put()
221 unsigned short oval, nval; in wm_adc_mux_put() local
230 change = nval != oval; in wm_adc_mux_put()
256 unsigned short val, oval; in wm_bypass_put() local
265 if (val != oval) { in wm_bypass_put()
291 unsigned short val, oval; in wm_chswap_put() local
295 oval = wm_get(ice, WM_DAC_CTRL1); in wm_chswap_put()
296 val = oval & 0x0f; in wm_chswap_put()
[all …]
A Dprodigy_hifi.c548 unsigned short oval, nval; in wm_adc_mux_enum_put() local
552 oval = wm_get(ice, WM_ADC_MUX); in wm_adc_mux_enum_put()
554 if (nval != oval) { in wm_adc_mux_enum_put()
644 unsigned short oval, nval; in wm_adc_mux_put() local
653 change = nval != oval; in wm_adc_mux_put()
682 unsigned short val, oval; in wm_bypass_put() local
691 if (val != oval) { in wm_bypass_put()
720 unsigned short val, oval; in wm_chswap_put() local
724 oval = wm_get(ice, WM_DAC_CTRL1); in wm_chswap_put()
725 val = oval & 0x0f; in wm_chswap_put()
[all …]
A Daureon.c211 unsigned char oval, nval; in aureon_universe_inmux_put() local
218 oval = spec->pca9554_out; in aureon_universe_inmux_put()
219 change = (oval != nval); in aureon_universe_inmux_put()
722 change = (oval != nval); in wm_pcm_mute_put()
1116 nval = oval & ~0x77; in wm_adc_mux_put()
1119 change = (oval != nval); in wm_adc_mux_put()
1167 nval = oval & ~0x07; in aureon_cs8415_mux_put()
1169 change = (oval != nval); in aureon_cs8415_mux_put()
1217 nval = oval & ~0x20; in aureon_cs8415_mute_put()
1219 nval = oval | 0x20; in aureon_cs8415_mute_put()
[all …]
/linux/sound/usb/
A Dmixer_scarlett_gen2.c1812 if (oval == val) in scarlett2_volume_ctl_put()
1886 if (oval == val) in scarlett2_mute_ctl_put()
2025 if (oval == val) in scarlett2_sw_hw_enum_ctl_put()
2141 if (oval == val) in scarlett2_level_enum_ctl_put()
2199 if (oval == val) in scarlett2_pad_ctl_put()
2256 if (oval == val) in scarlett2_air_ctl_put()
2314 if (oval == val) in scarlett2_phantom_ctl_put()
2365 if (oval == val) in scarlett2_phantom_persistence_ctl_put()
2493 if (oval == val) in scarlett2_direct_monitor_ctl_put()
2656 if (oval == val) in scarlett2_speaker_switch_enum_ctl_put()
[all …]
A Dmixer_scarlett.c267 int err, oval, val; in scarlett_ctl_switch_put() local
270 err = snd_usb_get_cur_mix_value(elem, i, i, &oval); in scarlett_ctl_switch_put()
276 if (oval != val) { in scarlett_ctl_switch_put()
338 int err, oval, val; in scarlett_ctl_put() local
341 err = snd_usb_get_cur_mix_value(elem, i, i, &oval); in scarlett_ctl_put()
348 if (oval != val) { in scarlett_ctl_put()
432 int err, oval, val; in scarlett_ctl_enum_put() local
434 err = snd_usb_get_cur_mix_value(elem, 0, 0, &oval); in scarlett_ctl_enum_put()
440 if (val != oval) { in scarlett_ctl_enum_put()
/linux/drivers/scsi/aic94xx/
A Daic94xx_reg.h211 u16 oval = asd_ddbsite_read_word(asd_ha, ddb_site_no, offs); in asd_ddbsite_update_word() local
212 if (oval != oldval) in asd_ddbsite_update_word()
232 u16 oval; in asd_ddbsite_update_byte() local
238 oval = (_oldval << 8) | (nval & 0xFF); in asd_ddbsite_update_byte()
243 oval = (nval & 0xFF00) | _oldval; in asd_ddbsite_update_byte()
245 return asd_ddbsite_update_word(asd_ha, ddb_site_no, base, oval, nval); in asd_ddbsite_update_byte()
/linux/include/linux/
A Dpercpu-defs.h427 #define raw_cpu_cmpxchg(pcp, oval, nval) \ argument
428 __pcpu_size_call_return2(raw_cpu_cmpxchg_, pcp, oval, nval)
485 #define __this_cpu_cmpxchg(pcp, oval, nval) \ argument
488 raw_cpu_cmpxchg(pcp, oval, nval); \
514 #define this_cpu_cmpxchg(pcp, oval, nval) \ argument
515 __pcpu_size_call_return2(this_cpu_cmpxchg_, pcp, oval, nval)
/linux/sound/isa/gus/
A Dgus_mixer.c44 unsigned char oval, nval; in snd_gf1_put_single() local
51 oval = gus->mix_cntrl_reg; in snd_gf1_put_single()
52 nval = (oval & ~(1 << shift)) | nval; in snd_gf1_put_single()
53 change = nval != oval; in snd_gf1_put_single()
/linux/sound/i2c/other/
A Dak4xxx-adda.c517 unsigned char val, oval; in ak4xxx_switch_put() local
522 oval = snd_akm4xxx_get(ak, chip, addr); in ak4xxx_switch_put()
524 val = oval | (1<<shift); in ak4xxx_switch_put()
526 val = oval & ~(1<<shift); in ak4xxx_switch_put()
527 change = (oval != val); in ak4xxx_switch_put()
583 unsigned char oval, val; in ak4xxx_capture_source_put() local
589 oval = snd_akm4xxx_get(ak, chip, addr); in ak4xxx_capture_source_put()
590 val = oval & ~mask; in ak4xxx_capture_source_put()
592 if (val != oval) { in ak4xxx_capture_source_put()
/linux/kernel/time/
A Ditimer.c172 u64 oval, nval, ointerval, ninterval; in set_cpu_itimer() local
180 oval = it->expires; in set_cpu_itimer()
182 if (oval || nval) { in set_cpu_itimer()
185 set_process_cpu_timer(tsk, clock_id, &nval, &oval); in set_cpu_itimer()
195 ovalue->it_value = ns_to_timespec64(oval); in set_cpu_itimer()
/linux/arch/sh/include/asm/
A Dfutex.h29 static inline int arch_futex_atomic_op_inuser(int op, u32 oparg, int *oval, in arch_futex_atomic_op_inuser() argument
67 *oval = oldval; in arch_futex_atomic_op_inuser()
/linux/arch/sparc/include/asm/
A Dfutex_64.h33 static inline int arch_futex_atomic_op_inuser(int op, int oparg, int *oval, in arch_futex_atomic_op_inuser() argument
62 *oval = oldval; in arch_futex_atomic_op_inuser()
/linux/arch/openrisc/include/asm/
A Dfutex.h34 arch_futex_atomic_op_inuser(int op, int oparg, int *oval, u32 __user *uaddr) in arch_futex_atomic_op_inuser() argument
62 *oval = oldval; in arch_futex_atomic_op_inuser()
/linux/arch/hexagon/include/asm/
A Dfutex.h35 arch_futex_atomic_op_inuser(int op, int oparg, int *oval, u32 __user *uaddr) in arch_futex_atomic_op_inuser() argument
67 *oval = oldval; in arch_futex_atomic_op_inuser()
/linux/arch/microblaze/include/asm/
A Dfutex.h33 arch_futex_atomic_op_inuser(int op, int oparg, int *oval, u32 __user *uaddr) in arch_futex_atomic_op_inuser() argument
61 *oval = oldval; in arch_futex_atomic_op_inuser()

Completed in 61 milliseconds

123