/linux-6.1.9/include/kunit/ |
D | test.h | 572 left, \ argument 578 const typeof(left) __left = (left); \ 582 .left_text = #left, \ 602 left, \ argument 611 left, op, right, \ 617 left, \ argument 626 left, op, right, \ 632 left, \ argument 638 const char *__left = (left); \ 642 .left_text = #left, \ [all …]
|
/linux-6.1.9/scripts/kconfig/ |
D | expr.c | 22 e->left.sym = sym; in expr_alloc_symbol() 30 e->left.expr = ce; in expr_alloc_one() 38 e->left.expr = e1; in expr_alloc_two() 47 e->left.sym = s1; in expr_alloc_comp() 77 e->left = org->left; in expr_copy() 80 e->left.expr = expr_copy(org->left.expr); in expr_copy() 88 e->left.sym = org->left.sym; in expr_copy() 94 e->left.expr = expr_copy(org->left.expr); in expr_copy() 116 expr_free(e->left.expr); in expr_free() 127 expr_free(e->left.expr); in expr_free() [all …]
|
/linux-6.1.9/include/media/ |
D | v4l2-rect.h | 62 if (r->left < boundary->left) in v4l2_rect_map_inside() 63 r->left = boundary->left; in v4l2_rect_map_inside() 66 if (r->left + r->width > boundary->left + boundary->width) in v4l2_rect_map_inside() 67 r->left = boundary->left + boundary->width - r->width; in v4l2_rect_map_inside() 95 return r1->top == r2->top && r1->left == r2->left; in v4l2_rect_same_position() 124 r->left = max(r1->left, r2->left); in v4l2_rect_intersect() 126 right = min(r1->left + r1->width, r2->left + r2->width); in v4l2_rect_intersect() 128 r->width = max(0, right - r->left); in v4l2_rect_intersect() 149 r->left = r->top = r->width = r->height = 0; in v4l2_rect_scale() 152 r->left = (((r->left - from->left) * to->width) / from->width) & ~1; in v4l2_rect_scale() [all …]
|
/linux-6.1.9/arch/parisc/math-emu/ |
D | sfsub.c | 42 register unsigned int left, right, result, extent; in sgl_fsub() local 50 left = *leftptr; in sgl_fsub() 55 Sgl_xortointp1(left,right,/*to*/save); in sgl_fsub() 60 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT) in sgl_fsub() 62 if (Sgl_iszero_mantissa(left)) in sgl_fsub() 80 *dstptr = left; in sgl_fsub() 89 if (Sgl_isone_signaling(left)) in sgl_fsub() 95 Sgl_set_quiet(left); in sgl_fsub() 113 *dstptr = left; in sgl_fsub() 150 Sgl_copytoint_exponentmantissa(left,signless_upper_left); in sgl_fsub() [all …]
|
D | sfadd.c | 42 register unsigned int left, right, result, extent; in sgl_fadd() local 52 left = *leftptr; in sgl_fadd() 57 Sgl_xortointp1(left,right,/*to*/save); in sgl_fadd() 62 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT) in sgl_fadd() 64 if (Sgl_iszero_mantissa(left)) in sgl_fadd() 82 *dstptr = left; in sgl_fadd() 91 if (Sgl_isone_signaling(left)) in sgl_fadd() 97 Sgl_set_quiet(left); in sgl_fadd() 115 *dstptr = left; in sgl_fadd() 151 Sgl_copytoint_exponentmantissa(left,signless_upper_left); in sgl_fadd() [all …]
|
D | sfcmp.c | 42 register unsigned int left, right; in sgl_fcmp() local 46 left = *leftptr; in sgl_fcmp() 52 if( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT) in sgl_fcmp() 58 if( ( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT) in sgl_fcmp() 59 && Sgl_isnotzero_mantissa(left) in sgl_fcmp() 60 && (Exception(cond) || Sgl_isone_signaling(left))) in sgl_fcmp() 76 else if( ((Sgl_exponent(left) == SGL_INFINITY_EXPONENT) in sgl_fcmp() 77 && Sgl_isnotzero_mantissa(left)) in sgl_fcmp() 90 Sgl_xortointp1(left,right,xorresult); in sgl_fcmp() 95 if( Sgl_iszero_exponentmantissa(left) in sgl_fcmp() [all …]
|
/linux-6.1.9/net/sunrpc/ |
D | sysctl.c | 90 size_t left, len; in proc_dodebug() local 97 left = *lenp; in proc_dodebug() 101 while (left && isspace(*p)) { in proc_dodebug() 102 left--; in proc_dodebug() 105 if (!left) in proc_dodebug() 108 if (left > sizeof(tmpbuf) - 1) in proc_dodebug() 110 memcpy(tmpbuf, p, left); in proc_dodebug() 111 tmpbuf[left] = '\0'; in proc_dodebug() 115 left -= (s - tmpbuf); in proc_dodebug() 116 if (left && !isspace(*s)) in proc_dodebug() [all …]
|
/linux-6.1.9/Documentation/userspace-api/media/v4l/ |
D | pixfmt-y8i.rst | 18 word. E.g. the R200 RealSense camera stores pixel from the left sensor 32 - Y'\ :sub:`00left` 34 - Y'\ :sub:`01left` 36 - Y'\ :sub:`02left` 38 - Y'\ :sub:`03left` 41 - Y'\ :sub:`10left` 43 - Y'\ :sub:`11left` 45 - Y'\ :sub:`12left` 47 - Y'\ :sub:`13left` 50 - Y'\ :sub:`20left` [all …]
|
/linux-6.1.9/include/linux/ |
D | uidgid.h | 61 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 …]
|
D | regset.h | 22 size_t left; member 27 if (s->left) { in membuf_zero() 28 if (size > s->left) in membuf_zero() 29 size = s->left; in membuf_zero() 32 s->left -= size; in membuf_zero() 34 return s->left; in membuf_zero() 39 if (s->left) { in membuf_write() 40 if (size > s->left) in membuf_write() 41 size = s->left; in membuf_write() 44 s->left -= size; in membuf_write() [all …]
|
/linux-6.1.9/arch/x86/crypto/ |
D | des3_ede-asm_64.S | 92 #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); \ 98 movl left##d, RW0d; \ 102 xorl RW0d, left##d; \ 104 roll $1, left##d; \ 106 expand_to_64bits(left, RT3); 108 #define final_permutation(left, right) \ argument [all …]
|
/linux-6.1.9/fs/quota/ |
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() 17 switch(left.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() 43 switch (left.type) { in qid_lt() [all …]
|
/linux-6.1.9/drivers/media/pci/bt8xx/ |
D | btcx-risc.c | 86 if (win->left < 0) { in btcx_screen_clips() 88 clips[n].c.left = 0; in btcx_screen_clips() 90 clips[n].c.width = -win->left; in btcx_screen_clips() 94 if (win->left + win->width > swidth) { in btcx_screen_clips() 96 clips[n].c.left = swidth - win->left; in btcx_screen_clips() 98 clips[n].c.width = win->width - clips[n].c.left; in btcx_screen_clips() 104 clips[n].c.left = 0; in btcx_screen_clips() 112 clips[n].c.left = 0; in btcx_screen_clips() 128 nx = (win->left + mask) & ~mask; in btcx_align() 130 if (nx + nw > win->left + win->width) in btcx_align() [all …]
|
/linux-6.1.9/drivers/net/wireless/intersil/hostap/ |
D | hostap_info.c | 15 int left) in prism2_info_commtallies16() argument 19 if (left < sizeof(struct hfa384x_comm_tallies)) { in prism2_info_commtallies16() 21 "info frame\n", local->dev->name, left); in prism2_info_commtallies16() 55 int left) in prism2_info_commtallies32() argument 59 if (left < sizeof(struct hfa384x_comm_tallies32)) { in prism2_info_commtallies32() 61 "info frame\n", local->dev->name, left); in prism2_info_commtallies32() 95 int left) in prism2_info_commtallies() argument 98 prism2_info_commtallies32(local, buf, left); in prism2_info_commtallies() 100 prism2_info_commtallies16(local, buf, left); in prism2_info_commtallies() 130 int left) in prism2_info_linkstatus() argument [all …]
|
/linux-6.1.9/drivers/video/fbdev/core/ |
D | syscopyarea.c | 33 int left, right; in bitcpy() local 81 left = -shift & (bits - 1); in bitcpy() 89 *dst = comp(*src << left, *dst, first); in bitcpy() 97 *dst = comp(d0 >> right | d1 << left, *dst, in bitcpy() 112 *dst = comp(d0 << left, *dst, first); 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() [all …]
|
D | sysfillrect.c | 72 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 …]
|
D | cfbfillrect.c | 93 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.1.9/drivers/md/persistent-data/ |
D | dm-btree-remove.c | 85 static int node_copy(struct btree_node *left, struct btree_node *right, int shift) in node_copy() argument 87 uint32_t nr_left = le32_to_cpu(left->header.nr_entries); in node_copy() 88 uint32_t value_size = le32_to_cpu(left->header.value_size); in node_copy() 97 if (nr_left + shift > le32_to_cpu(left->header.max_entries)) { in node_copy() 102 memcpy(key_ptr(left, nr_left), in node_copy() 105 memcpy(value_ptr(left, nr_left), in node_copy() 115 key_ptr(left, nr_left - shift), in node_copy() 118 value_ptr(left, nr_left - shift), in node_copy() 189 static int shift(struct btree_node *left, struct btree_node *right, int count) in shift() argument 192 uint32_t nr_left = le32_to_cpu(left->header.nr_entries); in shift() [all …]
|
/linux-6.1.9/tools/lib/perf/ |
D | lib.c | 13 size_t left = n; in ion() local 15 while (left) { in ion() 17 ssize_t ret = is_read ? read(fd, buf, left) : in ion() 18 write(fd, buf, left); in ion() 25 left -= ret; in ion() 43 size_t left = n; in preadn() local 45 while (left) { in preadn() 46 ssize_t ret = pread(fd, buf, left, offs); in preadn() 53 left -= ret; in preadn()
|
/linux-6.1.9/drivers/firmware/ |
D | edd.c | 45 #define left (PAGE_SIZE - (p - buf) - 1) macro 135 p += scnprintf(p, left, "%c", info->params.host_bus_type[i]); in edd_show_host_bus() 137 p += scnprintf(p, left, " "); in edd_show_host_bus() 142 p += scnprintf(p, left, "\tbase_address: %x\n", in edd_show_host_bus() 147 p += scnprintf(p, left, in edd_show_host_bus() 155 p += scnprintf(p, left, in edd_show_host_bus() 160 p += scnprintf(p, left, "\tunknown: %llx\n", in edd_show_host_bus() 181 p += scnprintf(p, left, "%c", info->params.interface_type[i]); in edd_show_interface() 183 p += scnprintf(p, left, " "); in edd_show_interface() 187 p += scnprintf(p, left, "\tdevice: %u lun: %u\n", in edd_show_interface() [all …]
|
/linux-6.1.9/tools/perf/util/ |
D | sort.c | 98 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right) in sort__thread_cmp() argument 100 return right->thread->tid - left->thread->tid; in sort__thread_cmp() 139 sort__comm_cmp(struct hist_entry *left, struct hist_entry *right) in sort__comm_cmp() argument 141 return strcmp(comm__str(right->comm), comm__str(left->comm)); in sort__comm_cmp() 145 sort__comm_collapse(struct hist_entry *left, struct hist_entry *right) in sort__comm_collapse() argument 147 return strcmp(comm__str(right->comm), comm__str(left->comm)); in sort__comm_collapse() 151 sort__comm_sort(struct hist_entry *left, struct hist_entry *right) in sort__comm_sort() argument 153 return strcmp(comm__str(right->comm), comm__str(left->comm)); in sort__comm_sort() 195 sort__dso_cmp(struct hist_entry *left, struct hist_entry *right) in sort__dso_cmp() argument 197 return _sort__dso_cmp(right->ms.map, left->ms.map); in sort__dso_cmp() [all …]
|
/linux-6.1.9/drivers/soc/samsung/ |
D | s3c-pm-check.c | 106 unsigned long addr, left; in s3c_pm_makecheck() local 110 left = res->end - addr; in s3c_pm_makecheck() 112 if (left > CHECK_CHUNKSIZE) in s3c_pm_makecheck() 113 left = CHECK_CHUNKSIZE; in s3c_pm_makecheck() 115 *val = crc32_le(~0, phys_to_virt(addr), left); in s3c_pm_makecheck() 164 unsigned long left; in s3c_pm_runcheck() local 173 left = res->end - addr; in s3c_pm_runcheck() 175 if (left > CHECK_CHUNKSIZE) in s3c_pm_runcheck() 176 left = CHECK_CHUNKSIZE; in s3c_pm_runcheck() 180 if (in_region(ptr, left, stkpage, 4096)) { in s3c_pm_runcheck() [all …]
|
/linux-6.1.9/drivers/infiniband/hw/usnic/ |
D | usnic_debugfs.c | 73 int left; in flowinfo_read() local 79 left = count; in flowinfo_read() 85 n = scnprintf(ptr, left, in flowinfo_read() 89 UPDATE_PTR_LEFT(n, ptr, left); in flowinfo_read() 91 n = scnprintf(ptr, left, "Port_Num:%hu\n", in flowinfo_read() 93 UPDATE_PTR_LEFT(n, ptr, left); in flowinfo_read() 95 n = usnic_transport_sock_to_str(ptr, left, in flowinfo_read() 97 UPDATE_PTR_LEFT(n, ptr, left); in flowinfo_read() 98 n = scnprintf(ptr, left, "\n"); in flowinfo_read() 99 UPDATE_PTR_LEFT(n, ptr, left); in flowinfo_read()
|
/linux-6.1.9/kernel/ |
D | sysctl.c | 495 size_t left; in __do_proc_dointvec() local 505 left = *lenp; in __do_proc_dointvec() 514 if (left > PAGE_SIZE - 1) in __do_proc_dointvec() 515 left = PAGE_SIZE - 1; in __do_proc_dointvec() 519 for (; left && vleft--; i++, first=0) { in __do_proc_dointvec() 524 proc_skip_spaces(&p, &left); in __do_proc_dointvec() 526 if (!left) in __do_proc_dointvec() 528 err = proc_get_long(&p, &left, &lval, &neg, in __do_proc_dointvec() 543 proc_put_char(&buffer, &left, '\t'); in __do_proc_dointvec() 544 proc_put_long(&buffer, &left, lval, neg); in __do_proc_dointvec() [all …]
|
/linux-6.1.9/net/ceph/ |
D | pagevec.c | 67 int left = len; in ceph_copy_user_to_page_vector() local 70 while (left > 0) { in ceph_copy_user_to_page_vector() 71 l = min_t(int, PAGE_SIZE-po, left); in ceph_copy_user_to_page_vector() 76 left -= l - bad; in ceph_copy_user_to_page_vector() 93 size_t left = len; in ceph_copy_to_page_vector() local 95 while (left > 0) { in ceph_copy_to_page_vector() 96 size_t l = min_t(size_t, PAGE_SIZE-po, left); in ceph_copy_to_page_vector() 100 left -= l; in ceph_copy_to_page_vector() 116 size_t left = len; in ceph_copy_from_page_vector() local 118 while (left > 0) { in ceph_copy_from_page_vector() [all …]
|