Home
last modified time | relevance | path

Searched refs:right (Results 1 – 25 of 589) sorted by relevance

12345678910>>...24

/Linux-v4.19/arch/parisc/math-emu/
Dsfsub.c55 register unsigned int left, right, result, extent; in sgl_fsub() local
64 right = *rightptr; in sgl_fsub()
68 Sgl_xortointp1(left,right,/*to*/save); in sgl_fsub()
77 if (Sgl_isnotnan(right)) in sgl_fsub()
79 if (Sgl_isinfinity(right) && save==0) in sgl_fsub()
113 else if (Sgl_is_signalingnan(right)) in sgl_fsub()
119 Sgl_set_quiet(right); in sgl_fsub()
120 *dstptr = right; in sgl_fsub()
133 if (Sgl_isinfinity_exponent(right)) in sgl_fsub()
135 if (Sgl_iszero_mantissa(right)) in sgl_fsub()
[all …]
Dsfadd.c55 register unsigned int left, right, result, extent; in sgl_fadd() local
66 right = *rightptr; in sgl_fadd()
70 Sgl_xortointp1(left,right,/*to*/save); in sgl_fadd()
79 if (Sgl_isnotnan(right)) in sgl_fadd()
81 if (Sgl_isinfinity(right) && save!=0) in sgl_fadd()
115 else if (Sgl_is_signalingnan(right)) in sgl_fadd()
121 Sgl_set_quiet(right); in sgl_fadd()
122 *dstptr = right; in sgl_fadd()
135 if (Sgl_isinfinity_exponent(right)) in sgl_fadd()
137 if (Sgl_iszero_mantissa(right)) in sgl_fadd()
[all …]
Dsfcmp.c55 register unsigned int left, right; in sgl_fcmp() local
60 right = *rightptr; in sgl_fcmp()
66 || (Sgl_exponent(right) == SGL_INFINITY_EXPONENT) ) in sgl_fcmp()
75 ( (Sgl_exponent(right) == SGL_INFINITY_EXPONENT) in sgl_fcmp()
76 && Sgl_isnotzero_mantissa(right) in sgl_fcmp()
77 && (Exception(cond) || Sgl_isone_signaling(right)) ) ) in sgl_fcmp()
92 ((Sgl_exponent(right) == SGL_INFINITY_EXPONENT) in sgl_fcmp()
93 && Sgl_isnotzero_mantissa(right)) ) in sgl_fcmp()
103 Sgl_xortointp1(left,right,xorresult); in sgl_fcmp()
109 && Sgl_iszero_exponentmantissa(right) ) in sgl_fcmp()
[all …]
Dhppa.h28 #define Shiftdouble(left,right,amount,dest) \ argument
30 dest = ((left) << (32-(amount))) | ((unsigned int)(right) >> (amount))
33 #define Variableshiftdouble(left,right,amount,dest) \ argument
35 if (amount == 0) dest = right; \
37 ((unsigned) right >> (amount))
40 #define Variable_shift_double(left,right,amount,dest) \ argument
42 dest = (left << (32-(amount))) | ((unsigned) right >> (amount))
/Linux-v4.19/scripts/kconfig/
Dexpr.c38 e->right.expr = e2; in expr_alloc_two()
47 e->right.sym = s2; in expr_alloc_comp()
88 e->right.sym = org->right.sym; in expr_copy()
94 e->right.expr = expr_copy(org->right.expr); in expr_copy()
127 expr_free(e->right.expr); in expr_free()
155 __expr_eliminate_eq(type, &e1->right.expr, &e2); in __expr_eliminate_eq()
160 __expr_eliminate_eq(type, &e1, &e2->right.expr); in __expr_eliminate_eq()
264 return e1->left.sym == e2->left.sym && e1->right.sym == e2->right.sym; in expr_eq()
315 e->right.expr = expr_eliminate_yn(e->right.expr); in expr_eliminate_yn()
319 expr_free(e->right.expr); in expr_eliminate_yn()
[all …]
/Linux-v4.19/Documentation/media/uapi/v4l/
Dpixfmt-y8i.rst19 in lower and from the right sensor in the higher 8 bits.
33 - Y'\ :sub:`00right`
35 - Y'\ :sub:`01right`
37 - Y'\ :sub:`02right`
39 - Y'\ :sub:`03right`
42 - Y'\ :sub:`10right`
44 - Y'\ :sub:`11right`
46 - Y'\ :sub:`12right`
48 - Y'\ :sub:`13right`
51 - Y'\ :sub:`20right`
[all …]
/Linux-v4.19/include/linux/
Duidgid.h61 static inline bool uid_eq(kuid_t left, kuid_t right) in uid_eq() argument
63 return __kuid_val(left) == __kuid_val(right); in uid_eq()
66 static inline bool gid_eq(kgid_t left, kgid_t right) in gid_eq() argument
68 return __kgid_val(left) == __kgid_val(right); in gid_eq()
71 static inline bool uid_gt(kuid_t left, kuid_t right) in uid_gt() argument
73 return __kuid_val(left) > __kuid_val(right); in uid_gt()
76 static inline bool gid_gt(kgid_t left, kgid_t right) in gid_gt() argument
78 return __kgid_val(left) > __kgid_val(right); in gid_gt()
81 static inline bool uid_gte(kuid_t left, kuid_t right) in uid_gte() argument
83 return __kuid_val(left) >= __kuid_val(right); in uid_gte()
[all …]
/Linux-v4.19/arch/x86/crypto/
Ddes3_ede-asm_64.S101 #define initial_permutation(left, right) \ argument
102 do_permutation(left##d, right##d, 4, 0x0f0f0f0f); \
103 do_permutation(left##d, right##d, 16, 0x0000ffff); \
104 do_permutation(right##d, left##d, 2, 0x33333333); \
105 do_permutation(right##d, left##d, 8, 0x00ff00ff); \
108 roll $1, right##d; \
109 xorl right##d, RW0d; \
112 xorl RW0d, right##d; \
114 expand_to_64bits(right, RT3); \
117 #define final_permutation(left, right) \ argument
[all …]
/Linux-v4.19/drivers/video/fbdev/core/
Dsyscopyarea.c33 int left, right; in bitcpy() local
80 right = shift & (bits - 1); in bitcpy()
92 *dst = comp(*src >> right, *dst, first); in bitcpy()
97 *dst = comp(d0 >> right | d1 << left, *dst, in bitcpy()
118 *dst = comp(d0 >> right | d1 << left, *dst, in bitcpy()
130 *dst++ = d0 >> right | d1 << left; in bitcpy()
133 *dst++ = d0 >> right | d1 << left; in bitcpy()
136 *dst++ = d0 >> right | d1 << left; in bitcpy()
139 *dst++ = d0 >> right | d1 << left; in bitcpy()
145 *dst++ = d0 >> right | d1 << left; in bitcpy()
[all …]
Dsysfillrect.c82 unsigned long pat, int left, int right, unsigned n, int bits) in bitfill_unaligned() argument
103 pat = pat << left | pat >> right; in bitfill_unaligned()
111 pat = pat << left | pat >> right; in bitfill_unaligned()
113 pat = pat << left | pat >> right; in bitfill_unaligned()
115 pat = pat << left | pat >> right; in bitfill_unaligned()
117 pat = pat << left | pat >> right; in bitfill_unaligned()
122 pat = pat << left | pat >> right; in bitfill_unaligned()
192 unsigned long pat, int left, int right, unsigned n, in bitfill_unaligned_rev() argument
215 pat = pat << left | pat >> right; in bitfill_unaligned_rev()
223 pat = pat << left | pat >> right; in bitfill_unaligned_rev()
[all …]
Dcfbcopyarea.c111 int const right = -shift & (bits - 1); in bitcpy() local
124 d0 >>= right; in bitcpy()
129 d0 = d0 >> right | d1 << left; in bitcpy()
153 d0 = d0 >> right | d1 << left; in bitcpy()
166 FB_WRITEL(d0 >> right | d1 << left, dst++); in bitcpy()
169 FB_WRITEL(d0 >> right | d1 << left, dst++); in bitcpy()
172 FB_WRITEL(d0 >> right | d1 << left, dst++); in bitcpy()
175 FB_WRITEL(d0 >> right | d1 << left, dst++); in bitcpy()
182 d0 = d0 >> right | d1 << left; in bitcpy()
190 if (m <= bits - right) { in bitcpy()
[all …]
Dcfbfillrect.c93 unsigned long pat, int left, int right, unsigned n, int bits) in bitfill_unaligned() argument
114 pat = pat << left | pat >> right; in bitfill_unaligned()
122 pat = pat << left | pat >> right; in bitfill_unaligned()
124 pat = pat << left | pat >> right; in bitfill_unaligned()
126 pat = pat << left | pat >> right; in bitfill_unaligned()
128 pat = pat << left | pat >> right; in bitfill_unaligned()
133 pat = pat << left | pat >> right; in bitfill_unaligned()
218 int dst_idx, unsigned long pat, int left, int right, in bitfill_unaligned_rev() argument
243 pat = pat << left | pat >> right; in bitfill_unaligned_rev()
252 pat = pat << left | pat >> right; in bitfill_unaligned_rev()
[all …]
/Linux-v4.19/fs/quota/
Dkqid.c13 bool qid_eq(struct kqid left, struct kqid right) in qid_eq() argument
15 if (left.type != right.type) in qid_eq()
19 return uid_eq(left.uid, right.uid); in qid_eq()
21 return gid_eq(left.gid, right.gid); in qid_eq()
23 return projid_eq(left.projid, right.projid); in qid_eq()
37 bool qid_lt(struct kqid left, struct kqid right) in qid_lt() argument
39 if (left.type < right.type) in qid_lt()
41 if (left.type > right.type) in qid_lt()
45 return uid_lt(left.uid, right.uid); in qid_lt()
47 return gid_lt(left.gid, right.gid); in qid_lt()
[all …]
/Linux-v4.19/drivers/md/persistent-data/
Ddm-btree-remove.c82 static void node_copy(struct btree_node *left, struct btree_node *right, int shift) in node_copy() argument
86 BUG_ON(value_size != le32_to_cpu(right->header.value_size)); in node_copy()
92 key_ptr(right, 0), in node_copy()
95 value_ptr(right, 0), in node_copy()
98 BUG_ON(shift > le32_to_cpu(right->header.max_entries)); in node_copy()
99 memcpy(key_ptr(right, 0), in node_copy()
102 memcpy(value_ptr(right, 0), in node_copy()
173 static void shift(struct btree_node *left, struct btree_node *right, int count) in shift() argument
176 uint32_t nr_right = le32_to_cpu(right->header.nr_entries); in shift()
178 uint32_t r_max_entries = le32_to_cpu(right->header.max_entries); in shift()
[all …]
/Linux-v4.19/tools/perf/util/
Dsort.c79 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right) in sort__thread_cmp() argument
81 return right->thread->tid - left->thread->tid; in sort__thread_cmp()
120 sort__comm_cmp(struct hist_entry *left, struct hist_entry *right) in sort__comm_cmp() argument
122 return strcmp(comm__str(right->comm), comm__str(left->comm)); in sort__comm_cmp()
126 sort__comm_collapse(struct hist_entry *left, struct hist_entry *right) in sort__comm_collapse() argument
128 return strcmp(comm__str(right->comm), comm__str(left->comm)); in sort__comm_collapse()
132 sort__comm_sort(struct hist_entry *left, struct hist_entry *right) in sort__comm_sort() argument
134 return strcmp(comm__str(right->comm), comm__str(left->comm)); in sort__comm_sort()
176 sort__dso_cmp(struct hist_entry *left, struct hist_entry *right) in sort__dso_cmp() argument
178 return _sort__dso_cmp(right->ms.map, left->ms.map); in sort__dso_cmp()
[all …]
/Linux-v4.19/drivers/usb/core/
Dport.c296 static int link_peers(struct usb_port *left, struct usb_port *right) in link_peers() argument
301 if (left->peer == right && right->peer == left) in link_peers()
304 if (left->peer || right->peer) { in link_peers()
306 struct usb_port *rpeer = right->peer; in link_peers()
309 if (left->location && left->location == right->location) in link_peers()
315 dev_name(&left->dev), dev_name(&right->dev), method, in link_peers()
318 dev_name(&right->dev), in link_peers()
323 rc = sysfs_create_link(&left->dev.kobj, &right->dev.kobj, "peer"); in link_peers()
326 rc = sysfs_create_link(&right->dev.kobj, &left->dev.kobj, "peer"); in link_peers()
339 WARN_ON(right->is_superspeed); in link_peers()
[all …]
/Linux-v4.19/sound/core/oss/
Dmixer_oss.c264 int result = 0, left, right; in snd_mixer_oss_get_volume() local
270 right = pslot->volume[1]; in snd_mixer_oss_get_volume()
272 result = pslot->get_volume(fmixer, pslot, &left, &right); in snd_mixer_oss_get_volume()
274 right = left; in snd_mixer_oss_get_volume()
277 if (snd_BUG_ON(right < 0 || right > 100)) in snd_mixer_oss_get_volume()
281 pslot->volume[1] = right; in snd_mixer_oss_get_volume()
282 result = (left & 0xff) | ((right & 0xff) << 8); in snd_mixer_oss_get_volume()
292 int result = 0, left = volume & 0xff, right = (volume >> 8) & 0xff; in snd_mixer_oss_set_volume() local
299 if (right > 100) in snd_mixer_oss_set_volume()
300 right = 100; in snd_mixer_oss_set_volume()
[all …]
/Linux-v4.19/Documentation/sound/cards/
Daudigy-mixer.rst49 This control is used to attenuate samples for left and right front PCM FX-bus
50 accumulators. ALSA uses accumulators 8 and 9 for left and right front PCM
56 This control is used to attenuate samples for left and right surround PCM FX-bus
57 accumulators. ALSA uses accumulators 2 and 3 for left and right surround PCM
75 This control is used to attenuate samples for left and right PCM FX-bus
76 accumulators. ALSA uses accumulators 0 and 1 for left and right PCM samples for
82 This control is used to attenuate samples for left and right PCM FX-bus
83 accumulator. ALSA uses accumulators 0 and 1 for left and right PCM.
89 This control is used to attenuate samples for left and right MIDI FX-bus
90 accumulators. ALSA uses accumulators 4 and 5 for left and right MIDI samples.
[all …]
Dsb-live-mixer.rst64 This control is used to attenuate samples for left and right PCM FX-bus
65 accumulators. ALSA uses accumulators 0 and 1 for left and right PCM samples.
70 This control is used to attenuate samples for left and right PCM FX-bus
71 accumulators. ALSA uses accumulators 0 and 1 for left and right PCM samples.
77 This control is used to attenuate samples for left and right PCM FX-bus
78 accumulators. ALSA uses accumulators 0 and 1 for left and right PCM samples.
80 the ??rear?? right DAC PCM slot of the AC97 codec.
84 This control is used to attenuate samples for left and right PCM FX-bus
85 accumulators. ALSA uses accumulators 0 and 1 for left and right PCM.
91 These controls are used to attenuate samples for left and right PCM FX-bus
[all …]
/Linux-v4.19/net/tipc/
Dcore.h162 static inline int less_eq(u16 left, u16 right) in less_eq() argument
164 return mod(right - left) < 32768u; in less_eq()
167 static inline int more(u16 left, u16 right) in more() argument
169 return !less_eq(left, right); in more()
172 static inline int less(u16 left, u16 right) in less() argument
174 return less_eq(left, right) && (mod(right) != mod(left)); in less()
/Linux-v4.19/drivers/hid/
Dhid-zpff.c42 int left, right; in zpff_play() local
51 right = effect->u.rumble.weak_magnitude; in zpff_play()
52 dbg_hid("called with 0x%04x 0x%04x\n", left, right); in zpff_play()
55 right = right * 0x7f / 0xffff; in zpff_play()
58 zpff->report->field[3]->value[0] = right; in zpff_play()
59 dbg_hid("running with 0x%02x 0x%02x\n", left, right); in zpff_play()
Dhid-axff.c49 int left, right; in axff_play() local
53 right = effect->u.rumble.weak_magnitude; in axff_play()
55 dbg_hid("called with 0x%04x 0x%04x", left, right); in axff_play()
58 right = right * 0xff / 0xffff; in axff_play()
63 field_count % 2 ? right : left; in axff_play()
68 dbg_hid("running with 0x%02x 0x%02x", left, right); in axff_play()
Dhid-sjoy.c46 u32 left, right; in hid_sjoyff_play() local
49 right = effect->u.rumble.weak_magnitude; in hid_sjoyff_play()
50 dev_dbg(&dev->dev, "called with 0x%08x 0x%08x\n", left, right); in hid_sjoyff_play()
53 right = (right != 0); /* on/off only */ in hid_sjoyff_play()
55 sjoyff->report->field[0]->value[1] = right; in hid_sjoyff_play()
57 dev_dbg(&dev->dev, "running with 0x%02x 0x%02x\n", left, right); in hid_sjoyff_play()
/Linux-v4.19/Documentation/devicetree/bindings/input/
Dgpio-mouse.txt12 - right-gpios: GPIO line phandle to the line indicating "right"
17 - button-right-gpios: GPIO line handle to the right mouse button
28 right-gpios = <&gpio0 3 GPIO_ACTIVE_LOW>;
31 button-right-gpios = <&gpio0 6 GPIO_ACTIVE_LOW>;
/Linux-v4.19/tools/testing/selftests/kvm/lib/
Dsparsebit.c172 struct node *right; member
228 if (nodep->right) { in node_next()
229 for (nodep = nodep->right; nodep->left; nodep = nodep->left) in node_next()
238 while (nodep->parent && nodep == nodep->parent->right) in node_next()
257 for (nodep = nodep->left; nodep->right; nodep = nodep->right) in node_prev()
298 if (subtree->right) { in node_copy_subtree()
299 root->right = node_copy_subtree(subtree->right); in node_copy_subtree()
300 root->right->parent = root; in node_copy_subtree()
317 nodep = nodep->idx > idx ? nodep->left : nodep->right) { in node_find()
368 if (!parentp->right) { in node_add()
[all …]

12345678910>>...24