| /linux/arch/parisc/math-emu/ |
| H A D | sfsub.c | 42 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 …]
|
| H A D | sfadd.c | 42 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 …]
|
| H A D | sfcmp.c | 42 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 …]
|
| H A D | hppa.h | 15 #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/scripts/kconfig/ |
| H A D | expr.c | 42 e->right._initdata == r) in expr_lookup() 49 e->right._initdata = r; in expr_lookup() 109 r = (*ep1)->right.expr; in __expr_eliminate_eq() 117 r = (*ep2)->right.expr; in __expr_eliminate_eq() 228 return e1->left.sym == e2->left.sym && e1->right.sym == e2->right.sym; in expr_eq() 274 r = expr_eliminate_yn(e->right.expr); in expr_eliminate_yn() 290 r = expr_eliminate_yn(e->right.expr); in expr_eliminate_yn() 343 ((e1->right.sym == &symbol_yes && e2->right.sym == &symbol_mod) || in expr_join_or() 344 (e1->right.sym == &symbol_mod && e2->right.sym == &symbol_yes))) { in expr_join_or() 349 ((e1->right.sym == &symbol_yes && e2->right.sym == &symbol_no) || in expr_join_or() [all …]
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | pixfmt-y8i.rst | 20 in lower and from the right sensor in the higher 8 bits. 34 - Y'\ :sub:`00right` 36 - Y'\ :sub:`01right` 38 - Y'\ :sub:`02right` 40 - Y'\ :sub:`03right` 43 - Y'\ :sub:`10right` 45 - Y'\ :sub:`11right` 47 - Y'\ :sub:`12right` 49 - Y'\ :sub:`13right` 52 - Y'\ :sub:`20right` [all …]
|
| /linux/drivers/md/persistent-data/ |
| H A D | dm-btree-remove.c | 86 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 …]
|
| H A D | dm-btree.c | 553 static void redistribute2(struct btree_node *left, struct btree_node *right) in redistribute2() argument 556 unsigned int nr_right = le32_to_cpu(right->header.nr_entries); in redistribute2() 564 copy_entries(left, nr_left, right, 0, delta); in redistribute2() 565 shift_down(right, delta); in redistribute2() 570 shift_up(right, delta); in redistribute2() 571 copy_entries(right, 0, left, target_left, delta); in redistribute2() 575 right->header.nr_entries = cpu_to_le32(target_right); in redistribute2() 583 struct btree_node *right) in redistribute3() argument 587 unsigned int nr_right = le32_to_cpu(right->header.nr_entries); in redistribute3() 600 copy_entries(left, nr_left, right, 0, left_short); in redistribute3() [all …]
|
| /linux/fs/quota/ |
| H A D | kqid.c | 13 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/tools/perf/util/ |
| H A D | sort.c | 113 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right) in sort__thread_cmp() 115 return thread__tid(right->thread) - thread__tid(left->thread); 149 sort__tgid_cmp(struct hist_entry *left, struct hist_entry *right) in sort__tgid_cmp() 151 return thread__pid(right->thread) - thread__pid(left->thread); 186 sort__simd_cmp(struct hist_entry *left, struct hist_entry *right) in sort__simd_cmp() 188 if (left->simd_flags.arch != right->simd_flags.arch) in sort__simd_cmp() 189 return (int64_t) left->simd_flags.arch - right->simd_flags.arch; in sort__simd_cmp() 191 return (int64_t) left->simd_flags.pred - right->simd_flags.pred; 246 sort__comm_cmp(struct hist_entry *left, struct hist_entry *right) 248 return strcmp(comm__str(right in sort__comm_sort() 111 sort__thread_cmp(struct hist_entry * left,struct hist_entry * right) sort__thread_cmp() argument 147 sort__tgid_cmp(struct hist_entry * left,struct hist_entry * right) sort__tgid_cmp() argument 184 sort__simd_cmp(struct hist_entry * left,struct hist_entry * right) sort__simd_cmp() argument 235 sort__comm_cmp(struct hist_entry * left,struct hist_entry * right) sort__comm_cmp() argument 241 sort__comm_collapse(struct hist_entry * left,struct hist_entry * right) sort__comm_collapse() argument 247 sort__comm_sort(struct hist_entry * left,struct hist_entry * right) sort__comm_sort() argument 291 sort__dso_cmp(struct hist_entry * left,struct hist_entry * right) sort__dso_cmp() argument 363 sort__sym_cmp(struct hist_entry * left,struct hist_entry * right) sort__sym_cmp() argument 384 sort__sym_sort(struct hist_entry * left,struct hist_entry * right) sort__sym_sort() argument 463 sort__symoff_cmp(struct hist_entry * left,struct hist_entry * right) sort__symoff_cmp() argument 475 sort__symoff_sort(struct hist_entry * left,struct hist_entry * right) sort__symoff_sort() argument 514 sort__srcline_cmp(struct hist_entry * left,struct hist_entry * right) sort__srcline_cmp() argument 526 sort__srcline_collapse(struct hist_entry * left,struct hist_entry * right) sort__srcline_collapse() argument 537 sort__srcline_sort(struct hist_entry * left,struct hist_entry * right) sort__srcline_sort() argument 573 sort__srcline_from_cmp(struct hist_entry * left,struct hist_entry * right) sort__srcline_from_cmp() argument 579 sort__srcline_from_collapse(struct hist_entry * left,struct hist_entry * right) sort__srcline_from_collapse() argument 591 sort__srcline_from_sort(struct hist_entry * left,struct hist_entry * right) sort__srcline_from_sort() argument 621 sort__srcline_to_cmp(struct hist_entry * left,struct hist_entry * right) sort__srcline_to_cmp() argument 627 sort__srcline_to_collapse(struct hist_entry * left,struct hist_entry * right) sort__srcline_to_collapse() argument 639 sort__srcline_to_sort(struct hist_entry * left,struct hist_entry * right) sort__srcline_to_sort() argument 839 sort__srcfile_cmp(struct hist_entry * left,struct hist_entry * right) sort__srcfile_cmp() argument 845 sort__srcfile_collapse(struct hist_entry * left,struct hist_entry * right) sort__srcfile_collapse() argument 856 sort__srcfile_sort(struct hist_entry * left,struct hist_entry * right) sort__srcfile_sort() argument 886 sort__parent_cmp(struct hist_entry * left,struct hist_entry * right) sort__parent_cmp() argument 914 sort__cpu_cmp(struct hist_entry * left,struct hist_entry * right) sort__cpu_cmp() argument 935 sort__parallelism_cmp(struct hist_entry * left,struct hist_entry * right) sort__parallelism_cmp() argument 977 sort__cgroup_id_cmp(struct hist_entry * left,struct hist_entry * right) sort__cgroup_id_cmp() argument 1007 sort__cgroup_cmp(struct hist_entry * left,struct hist_entry * right) sort__cgroup_cmp() argument 1040 sort__socket_cmp(struct hist_entry * left,struct hist_entry * right) sort__socket_cmp() argument 1072 sort__time_cmp(struct hist_entry * left,struct hist_entry * right) sort__time_cmp() argument 1131 sort__trace_cmp(struct hist_entry * left,struct hist_entry * right) sort__trace_cmp() argument 1172 sort__dso_from_cmp(struct hist_entry * left,struct hist_entry * right) sort__dso_from_cmp() argument 1204 sort__dso_to_cmp(struct hist_entry * left,struct hist_entry * right) sort__dso_to_cmp() argument 1236 sort__sym_from_cmp(struct hist_entry * left,struct hist_entry * right) sort__sym_from_cmp() argument 1253 sort__sym_to_cmp(struct hist_entry * left,struct hist_entry * right) sort__sym_to_cmp() argument 1409 sort__addr_from_cmp(struct hist_entry * left,struct hist_entry * right) sort__addr_from_cmp() argument 1433 sort__addr_to_cmp(struct hist_entry * left,struct hist_entry * right) sort__addr_to_cmp() argument 1474 sort__mispredict_cmp(struct hist_entry * left,struct hist_entry * right) sort__mispredict_cmp() argument 1501 sort__cycles_cmp(struct hist_entry * left,struct hist_entry * right) sort__cycles_cmp() argument 1530 sort__daddr_cmp(struct hist_entry * left,struct hist_entry * right) sort__daddr_cmp() argument 1556 sort__iaddr_cmp(struct hist_entry * left,struct hist_entry * right) sort__iaddr_cmp() argument 1582 sort__dso_daddr_cmp(struct hist_entry * left,struct hist_entry * right) sort__dso_daddr_cmp() argument 1607 sort__locked_cmp(struct hist_entry * left,struct hist_entry * right) sort__locked_cmp() argument 1635 sort__tlb_cmp(struct hist_entry * left,struct hist_entry * right) sort__tlb_cmp() argument 1663 sort__lvl_cmp(struct hist_entry * left,struct hist_entry * right) sort__lvl_cmp() argument 1691 sort__snoop_cmp(struct hist_entry * left,struct hist_entry * right) sort__snoop_cmp() argument 1719 sort__dcacheline_cmp(struct hist_entry * left,struct hist_entry * right) sort__dcacheline_cmp() argument 1819 sort__weight_cmp(struct hist_entry * left,struct hist_entry * right) sort__weight_cmp() argument 1852 sort__ins_lat_cmp(struct hist_entry * left,struct hist_entry * right) sort__ins_lat_cmp() argument 1885 sort__p_stage_cyc_cmp(struct hist_entry * left,struct hist_entry * right) sort__p_stage_cyc_cmp() argument 1974 sort__blocked_cmp(struct hist_entry * left,struct hist_entry * right) sort__blocked_cmp() argument 2009 sort__phys_daddr_cmp(struct hist_entry * left,struct hist_entry * right) sort__phys_daddr_cmp() argument 2050 sort__data_page_size_cmp(struct hist_entry * left,struct hist_entry * right) sort__data_page_size_cmp() argument 2079 sort__code_page_size_cmp(struct hist_entry * left,struct hist_entry * right) sort__code_page_size_cmp() argument 2104 sort__abort_cmp(struct hist_entry * left,struct hist_entry * right) sort__abort_cmp() argument 2136 sort__in_tx_cmp(struct hist_entry * left,struct hist_entry * right) sort__in_tx_cmp() argument 2168 sort__transaction_cmp(struct hist_entry * left,struct hist_entry * right) sort__transaction_cmp() argument 2251 sort__sym_size_cmp(struct hist_entry * left,struct hist_entry * right) sort__sym_size_cmp() argument 2290 sort__dso_size_cmp(struct hist_entry * left,struct hist_entry * right) sort__dso_size_cmp() argument 2320 sort__addr_cmp(struct hist_entry * left,struct hist_entry * right) sort__addr_cmp() argument 2364 sort__type_cmp(struct hist_entry * left,struct hist_entry * right) sort__type_cmp() argument 2382 sort__type_collapse(struct hist_entry * left,struct hist_entry * right) sort__type_collapse() argument 2401 sort__type_sort(struct hist_entry * left,struct hist_entry * right) sort__type_sort() argument 2425 sort__typeoff_sort(struct hist_entry * left,struct hist_entry * right) sort__typeoff_sort() argument 2480 sort__typecln_sort(struct hist_entry * left,struct hist_entry * right) sort__typecln_sort() argument [all...] |
| /linux/tools/testing/selftests/hid/tests/ |
| H A D | base_gamepad.py | 65 self.right = (127, 127) 84 right=(None, None), argument 126 right = replace_none_in_tuple(right, self.right) 127 self.right = right 143 self.store_axes("right_stick", gamepad, right) 150 self, *, left=(None, None), right=(None, None), hat_switch=None, buttons=None argument 165 left=left, right=right, hat_switch=hat_switch, buttons=buttons 206 right=(None, None), argument 230 right=right,
|
| /linux/fs/unicode/ |
| H A D | mkutf8data.c | 368 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/fs/xfs/scrub/ |
| H A D | bitmap.c | 126 struct xbitmap64_node *right; in xbitmap64_set() local 145 right = xbitmap64_tree_iter_first(&bitmap->xb_root, last + 1, last + 1); in xbitmap64_set() 146 ASSERT(!right || right->bn_start == last + 1); in xbitmap64_set() 148 if (left && right) { in xbitmap64_set() 151 xbitmap64_tree_remove(right, &bitmap->xb_root); in xbitmap64_set() 152 left->bn_last = right->bn_last; in xbitmap64_set() 154 kfree(right); in xbitmap64_set() 160 } else if (right) { in xbitmap64_set() 162 xbitmap64_tree_remove(right, &bitmap->xb_root); in xbitmap64_set() 163 right->bn_start = start; in xbitmap64_set() [all …]
|
| /linux/Documentation/sound/cards/ |
| H A D | audigy-mixer.rst | 49 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 …]
|
| H A D | sb-live-mixer.rst | 64 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/sound/core/oss/ |
| H A D | mixer_oss.c | 255 int result = 0, left, right; in snd_mixer_oss_get_volume() local 262 right = pslot->volume[1]; in snd_mixer_oss_get_volume() 264 result = pslot->get_volume(fmixer, pslot, &left, &right); in snd_mixer_oss_get_volume() 266 right = left; in snd_mixer_oss_get_volume() 269 if (snd_BUG_ON(right < 0 || right > 100)) in snd_mixer_oss_get_volume() 273 pslot->volume[1] = right; in snd_mixer_oss_get_volume() 274 result = (left & 0xff) | ((right & 0xff) << 8); in snd_mixer_oss_get_volume() 284 int result = 0, left = volume & 0xff, right = (volume >> 8) & 0xff; in snd_mixer_oss_set_volume() local 292 if (right > 100) in snd_mixer_oss_set_volume() 293 right = 100; in snd_mixer_oss_set_volume() [all …]
|
| /linux/tools/testing/selftests/kvm/lib/ |
| H A D | sparsebit.c | 171 struct node *right; member 227 if (nodep->right) { in node_next() 228 for (nodep = nodep->right; nodep->left; nodep = nodep->left) in node_next() 237 while (nodep->parent && nodep == nodep->parent->right) in node_next() 256 for (nodep = nodep->left; nodep->right; nodep = nodep->right) in node_prev() 297 if (subtree->right) { in node_copy_subtree() 298 root->right = node_copy_subtree(subtree->right); in node_copy_subtree() 299 root->right->parent = root; in node_copy_subtree() 316 nodep = nodep->idx > idx ? nodep->left : nodep->right) { in node_find() 367 if (!parentp->right) { in node_add() [all …]
|
| /linux/drivers/hid/ |
| H A D | hid-zpff.c | 30 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()
|
| H A D | hid-sjoy.c | 34 u32 left, right; in hid_sjoyff_play() local 37 right = effect->u.rumble.weak_magnitude; in hid_sjoyff_play() 38 dev_dbg(&dev->dev, "called with 0x%08x 0x%08x\n", left, right); in hid_sjoyff_play() 41 right = (right != 0); /* on/off only */ in hid_sjoyff_play() 43 sjoyff->report->field[0]->value[1] = right; in hid_sjoyff_play() 45 dev_dbg(&dev->dev, "running with 0x%02x 0x%02x\n", left, right); in hid_sjoyff_play()
|
| H A D | hid-lgff.c | 63 unsigned int left, right; in hid_lgff_play() local 82 right = effect->u.rumble.strong_magnitude; in hid_lgff_play() 84 right = right * 0xff / 0xffff; in hid_lgff_play() 87 CLAMP(right); in hid_lgff_play() 91 report->field[0]->value[3] = right; in hid_lgff_play() 92 dbg_hid("(left, right)=(%04x, %04x)\n", left, right); in hid_lgff_play()
|
| H A D | hid-gaff.c | 34 int left, right; in hid_gaff_play() local 37 right = effect->u.rumble.weak_magnitude; in hid_gaff_play() 39 dbg_hid("called with 0x%04x 0x%04x", left, right); in hid_gaff_play() 42 right = right * 0xfe / 0xffff; in hid_gaff_play() 46 gaff->report->field[0]->value[2] = right; in hid_gaff_play() 50 dbg_hid("running with 0x%02x 0x%02x", left, right); in hid_gaff_play()
|
| H A D | hid-axff.c | 37 int left, right; in axff_play() local 41 right = effect->u.rumble.weak_magnitude; in axff_play() 43 dbg_hid("called with 0x%04x 0x%04x", left, right); in axff_play() 46 right = right * 0xff / 0xffff; in axff_play() 51 field_count % 2 ? right : left; in axff_play() 56 dbg_hid("running with 0x%02x 0x%02x", left, right); in axff_play()
|
| /linux/net/tipc/ |
| H A D | core.h | 185 static inline int less_eq(u16 left, u16 right) in less_eq() 187 return mod(right - left) < 32768u; in less_eq() 190 static inline int more(u16 left, u16 right) in more() 192 return !less_eq(left, right); in more() 195 static inline int less(u16 left, u16 right) in less() 197 return less_eq(left, right) && (mod(right) != mod(left)); in less() 184 less_eq(u16 left,u16 right) less_eq() argument 189 more(u16 left,u16 right) more() argument 194 less(u16 left,u16 right) less() argument
|
| /linux/drivers/gpu/drm/qxl/ |
| H A D | qxl_draw.c | 98 drawable->self_bitmap_area.right = 0; in make_drawable() 142 int left, right, top, bottom; in qxl_draw_dirty_fb() local 165 right = clips->x2; in qxl_draw_dirty_fb() 173 right = max_t(int, right, (int)clips_ptr->x2); in qxl_draw_dirty_fb() 178 width = right - left; in qxl_draw_dirty_fb() 197 drawable_rect.right = right; in qxl_draw_dirty_fb() 232 drawable->u.copy.src_area.right = width; in qxl_draw_dirty_fb() 247 rects[i].right = clips_ptr->x2; in qxl_draw_dirty_fb()
|
| /linux/tools/verification/rvgen/rvgen/ |
| H A D | ltl2ba.py | 143 def __init__(self, left: ASTNode, right: ASTNode): 145 self.right = right 148 return hash((self.left, self.right)) 152 yield from self.right 166 if self.right.op.is_temporal(): 181 return OrOp(self.left.negate(), self.right.negate()) 193 node.new | ({n.op.left, n.op.right} - node.old), 205 return AndOp(self.left.negate(), self.right.negate()) 221 node.new | ({n.op.right} [all...] |