Home
last modified time | relevance | path

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

12345678910>>...31

/linux-6.6.21/include/kunit/
Dtest.h682 right, \ argument
687 const typeof(right) __right = (right); \
691 .right_text = #right, \
712 right, \ argument
719 left, op, right, \
727 right, \ argument
734 left, op, right, \
742 right, \ argument
747 const char *__right = (right); \
751 .right_text = #right, \
[all …]
/linux-6.6.21/arch/parisc/math-emu/
Dsfsub.c42 register unsigned int left, right, result, extent; in sgl_fsub() local
51 right = *rightptr; in sgl_fsub()
55 Sgl_xortointp1(left,right,/*to*/save); in sgl_fsub()
64 if (Sgl_isnotnan(right)) in sgl_fsub()
66 if (Sgl_isinfinity(right) && save==0) in sgl_fsub()
100 else if (Sgl_is_signalingnan(right)) in sgl_fsub()
106 Sgl_set_quiet(right); in sgl_fsub()
107 *dstptr = right; in sgl_fsub()
120 if (Sgl_isinfinity_exponent(right)) in sgl_fsub()
122 if (Sgl_iszero_mantissa(right)) in sgl_fsub()
[all …]
Dsfadd.c42 register unsigned int left, right, result, extent; in sgl_fadd() local
53 right = *rightptr; in sgl_fadd()
57 Sgl_xortointp1(left,right,/*to*/save); in sgl_fadd()
66 if (Sgl_isnotnan(right)) in sgl_fadd()
68 if (Sgl_isinfinity(right) && save!=0) in sgl_fadd()
102 else if (Sgl_is_signalingnan(right)) in sgl_fadd()
108 Sgl_set_quiet(right); in sgl_fadd()
109 *dstptr = right; in sgl_fadd()
122 if (Sgl_isinfinity_exponent(right)) in sgl_fadd()
124 if (Sgl_iszero_mantissa(right)) in sgl_fadd()
[all …]
Dsfcmp.c42 register unsigned int left, right; in sgl_fcmp() local
47 right = *rightptr; in sgl_fcmp()
53 || (Sgl_exponent(right) == SGL_INFINITY_EXPONENT) ) in sgl_fcmp()
62 ( (Sgl_exponent(right) == SGL_INFINITY_EXPONENT) in sgl_fcmp()
63 && Sgl_isnotzero_mantissa(right) in sgl_fcmp()
64 && (Exception(cond) || Sgl_isone_signaling(right)) ) ) in sgl_fcmp()
79 ((Sgl_exponent(right) == SGL_INFINITY_EXPONENT) in sgl_fcmp()
80 && Sgl_isnotzero_mantissa(right)) ) in sgl_fcmp()
90 Sgl_xortointp1(left,right,xorresult); in sgl_fcmp()
96 && Sgl_iszero_exponentmantissa(right) ) in sgl_fcmp()
[all …]
Dhppa.h15 #define Shiftdouble(left,right,amount,dest) \ argument
17 dest = ((left) << (32-(amount))) | ((unsigned int)(right) >> (amount))
20 #define Variableshiftdouble(left,right,amount,dest) \ argument
22 if (amount == 0) dest = right; \
24 ((unsigned) right >> (amount))
27 #define Variable_shift_double(left,right,amount,dest) \ argument
29 dest = (left << (32-(amount))) | ((unsigned) right >> (amount))
/linux-6.6.21/scripts/kconfig/
Dexpr.c39 e->right.expr = e2; in expr_alloc_two()
48 e->right.sym = s2; in expr_alloc_comp()
89 e->right.sym = org->right.sym; in expr_copy()
95 e->right.expr = expr_copy(org->right.expr); in expr_copy()
128 expr_free(e->right.expr); in expr_free()
156 __expr_eliminate_eq(type, &e1->right.expr, &e2); in __expr_eliminate_eq()
161 __expr_eliminate_eq(type, &e1, &e2->right.expr); in __expr_eliminate_eq()
272 return e1->left.sym == e2->left.sym && e1->right.sym == e2->right.sym; in expr_eq()
323 e->right.expr = expr_eliminate_yn(e->right.expr); in expr_eliminate_yn()
327 expr_free(e->right.expr); in expr_eliminate_yn()
[all …]
/linux-6.6.21/Documentation/userspace-api/media/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-6.6.21/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-6.6.21/arch/x86/crypto/
Ddes3_ede-asm_64.S92 #define initial_permutation(left, right) \ argument
93 do_permutation(left##d, right##d, 4, 0x0f0f0f0f); \
94 do_permutation(left##d, right##d, 16, 0x0000ffff); \
95 do_permutation(right##d, left##d, 2, 0x33333333); \
96 do_permutation(right##d, left##d, 8, 0x00ff00ff); \
99 roll $1, right##d; \
100 xorl right##d, RW0d; \
103 xorl RW0d, right##d; \
105 expand_to_64bits(right, RT3); \
108 #define final_permutation(left, right) \ argument
[all …]
/linux-6.6.21/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.c72 unsigned long pat, int left, int right, unsigned n, int bits) in bitfill_unaligned() argument
93 pat = pat << left | pat >> right; in bitfill_unaligned()
101 pat = pat << left | pat >> right; in bitfill_unaligned()
103 pat = pat << left | pat >> right; in bitfill_unaligned()
105 pat = pat << left | pat >> right; in bitfill_unaligned()
107 pat = pat << left | pat >> right; in bitfill_unaligned()
112 pat = pat << left | pat >> right; in bitfill_unaligned()
182 unsigned long pat, int left, int right, unsigned n, in bitfill_unaligned_rev() argument
205 pat = pat << left | pat >> right; in bitfill_unaligned_rev()
213 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-6.6.21/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-6.6.21/drivers/md/persistent-data/
Ddm-btree-remove.c86 static int node_copy(struct btree_node *left, struct btree_node *right, int shift) in node_copy() argument
91 if (value_size != le32_to_cpu(right->header.value_size)) { in node_copy()
105 key_ptr(right, 0), in node_copy()
108 value_ptr(right, 0), in node_copy()
111 if (shift > le32_to_cpu(right->header.max_entries)) { in node_copy()
116 memcpy(key_ptr(right, 0), in node_copy()
119 memcpy(value_ptr(right, 0), in node_copy()
192 static int shift(struct btree_node *left, struct btree_node *right, int count) in shift() argument
196 uint32_t nr_right = le32_to_cpu(right->header.nr_entries); in shift()
198 uint32_t r_max_entries = le32_to_cpu(right->header.max_entries); in shift()
[all …]
/linux-6.6.21/tools/perf/util/
Dsort.c109 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right) in sort__thread_cmp() argument
111 return thread__tid(right->thread) - thread__tid(left->thread); in sort__thread_cmp()
145 sort__simd_cmp(struct hist_entry *left, struct hist_entry *right) in sort__simd_cmp() argument
147 if (left->simd_flags.arch != right->simd_flags.arch) in sort__simd_cmp()
148 return (int64_t) left->simd_flags.arch - right->simd_flags.arch; in sort__simd_cmp()
150 return (int64_t) left->simd_flags.pred - right->simd_flags.pred; in sort__simd_cmp()
196 sort__comm_cmp(struct hist_entry *left, struct hist_entry *right) in sort__comm_cmp() argument
198 return strcmp(comm__str(right->comm), comm__str(left->comm)); in sort__comm_cmp()
202 sort__comm_collapse(struct hist_entry *left, struct hist_entry *right) in sort__comm_collapse() argument
204 return strcmp(comm__str(right->comm), comm__str(left->comm)); in sort__comm_collapse()
[all …]
/linux-6.6.21/fs/unicode/
Dmkutf8data.c368 void *right; member
392 node = node->right; in lookup()
394 leaf = node->right; in lookup()
442 node->left, node->right, in tree_walk()
445 if (!(node->left && node->right)) in tree_walk()
467 assert(node->right); in tree_walk()
468 tree->leaf_print(node->right, in tree_walk()
471 } else if (node->right) { in tree_walk()
474 node = node->right; in tree_walk()
498 node->left = node->right = NULL; in alloc_node()
[all …]
/linux-6.6.21/Documentation/sound/cards/
Daudigy-mixer.rst49 This control is used to attenuate samples from left and right front PCM FX-bus
50 accumulators. ALSA uses accumulators 8 and 9 for left and right front PCM
55 This control is used to attenuate samples from left and right surround PCM FX-bus
56 accumulators. ALSA uses accumulators 2 and 3 for left and right surround PCM
62 This control is used to attenuate samples from left and right side PCM FX-bus
63 accumulators. ALSA uses accumulators 14 and 15 for left and right side PCM
80 This control is used to attenuate samples from left and right PCM FX-bus
81 accumulators. ALSA uses accumulators 0 and 1 for left and right PCM samples for
86 This control is used to attenuate samples from left and right PCM FX-bus
87 accumulators. ALSA uses accumulators 0 and 1 for left and right PCM samples for
[all …]
Dsb-live-mixer.rst64 This control is used to attenuate samples from 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 from 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 from 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 from 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 from left and right PCM FX-bus
[all …]
/linux-6.6.21/drivers/usb/core/
Dport.c444 static int link_peers(struct usb_port *left, struct usb_port *right) in link_peers() argument
449 if (left->peer == right && right->peer == left) in link_peers()
452 if (left->peer || right->peer) { in link_peers()
454 struct usb_port *rpeer = right->peer; in link_peers()
457 if (left->location && left->location == right->location) in link_peers()
463 dev_name(&left->dev), dev_name(&right->dev), method, in link_peers()
466 dev_name(&right->dev), in link_peers()
471 rc = sysfs_create_link(&left->dev.kobj, &right->dev.kobj, "peer"); in link_peers()
474 rc = sysfs_create_link(&right->dev.kobj, &left->dev.kobj, "peer"); in link_peers()
487 WARN_ON(right->is_superspeed); in link_peers()
[all …]
/linux-6.6.21/sound/core/oss/
Dmixer_oss.c261 int result = 0, left, right; in snd_mixer_oss_get_volume() local
268 right = pslot->volume[1]; in snd_mixer_oss_get_volume()
270 result = pslot->get_volume(fmixer, pslot, &left, &right); in snd_mixer_oss_get_volume()
272 right = left; in snd_mixer_oss_get_volume()
277 if (snd_BUG_ON(right < 0 || right > 100)) { in snd_mixer_oss_get_volume()
283 pslot->volume[1] = right; in snd_mixer_oss_get_volume()
284 result = (left & 0xff) | ((right & 0xff) << 8); in snd_mixer_oss_get_volume()
296 int result = 0, left = volume & 0xff, right = (volume >> 8) & 0xff; in snd_mixer_oss_set_volume() local
304 if (right > 100) in snd_mixer_oss_set_volume()
305 right = 100; in snd_mixer_oss_set_volume()
[all …]
/linux-6.6.21/fs/xfs/scrub/
Dbitmap.c123 struct xbitmap_node *right; in xbitmap_set() local
142 right = xbitmap_tree_iter_first(&bitmap->xb_root, last + 1, last + 1); in xbitmap_set()
143 ASSERT(!right || right->bn_start == last + 1); in xbitmap_set()
145 if (left && right) { in xbitmap_set()
148 xbitmap_tree_remove(right, &bitmap->xb_root); in xbitmap_set()
149 left->bn_last = right->bn_last; in xbitmap_set()
151 kfree(right); in xbitmap_set()
157 } else if (right) { in xbitmap_set()
159 xbitmap_tree_remove(right, &bitmap->xb_root); in xbitmap_set()
160 right->bn_start = start; in xbitmap_set()
[all …]
/linux-6.6.21/fs/btrfs/
Dctree.c1046 struct extent_buffer *right = NULL; in balance_level() local
1144 right = btrfs_read_node_slot(parent, pslot + 1); in balance_level()
1145 if (IS_ERR(right)) { in balance_level()
1146 ret = PTR_ERR(right); in balance_level()
1147 right = NULL; in balance_level()
1151 __btrfs_tree_lock(right, BTRFS_NESTING_RIGHT); in balance_level()
1152 wret = btrfs_cow_block(trans, root, right, in balance_level()
1153 parent, pslot + 1, &right, in balance_level()
1172 if (right) { in balance_level()
1173 wret = push_node_left(trans, mid, right, 1); in balance_level()
[all …]
/linux-6.6.21/drivers/hid/
Dhid-zpff.c30 int left, right; in zpff_play() local
39 right = effect->u.rumble.weak_magnitude; in zpff_play()
40 dbg_hid("called with 0x%04x 0x%04x\n", left, right); in zpff_play()
43 right = right * 0x7f / 0xffff; in zpff_play()
46 zpff->report->field[3]->value[0] = right; in zpff_play()
47 dbg_hid("running with 0x%02x 0x%02x\n", left, right); in zpff_play()
/linux-6.6.21/net/tipc/
Dcore.h185 static inline int less_eq(u16 left, u16 right) in less_eq() argument
187 return mod(right - left) < 32768u; in less_eq()
190 static inline int more(u16 left, u16 right) in more() argument
192 return !less_eq(left, right); in more()
195 static inline int less(u16 left, u16 right) in less() argument
197 return less_eq(left, right) && (mod(right) != mod(left)); in less()

12345678910>>...31