Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 945) sorted by relevance

12345678910>>...38

/Linux-v5.4/scripts/kconfig/
Dexpr.c23 e->left.sym = sym; in expr_alloc_symbol()
31 e->left.expr = ce; in expr_alloc_one()
39 e->left.expr = e1; in expr_alloc_two()
48 e->left.sym = s1; in expr_alloc_comp()
78 e->left = org->left; in expr_copy()
81 e->left.expr = expr_copy(org->left.expr); in expr_copy()
89 e->left.sym = org->left.sym; in expr_copy()
95 e->left.expr = expr_copy(org->left.expr); in expr_copy()
117 expr_free(e->left.expr); in expr_free()
128 expr_free(e->left.expr); in expr_free()
[all …]
/Linux-v5.4/arch/parisc/math-emu/
Dsfsub.c42 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 …]
Dsfadd.c42 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 …]
Dsfcmp.c42 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-v5.4/net/sunrpc/
Dsysctl.c83 size_t left, len; in proc_dodebug() local
90 left = *lenp; in proc_dodebug()
93 if (!access_ok(buffer, left)) in proc_dodebug()
96 while (left && __get_user(c, p) >= 0 && isspace(c)) in proc_dodebug()
97 left--, p++; in proc_dodebug()
98 if (!left) in proc_dodebug()
101 if (left > sizeof(tmpbuf) - 1) in proc_dodebug()
103 if (copy_from_user(tmpbuf, p, left)) in proc_dodebug()
105 tmpbuf[left] = '\0'; in proc_dodebug()
109 left -= (s - tmpbuf); in proc_dodebug()
[all …]
/Linux-v5.4/include/media/
Dv4l2-rect.h62 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->width) in v4l2_rect_map_inside()
67 r->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-v5.4/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-v5.4/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); \
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-v5.4/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()
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-v5.4/Documentation/media/uapi/v4l/
Dpixfmt-y8i.rst25 word. E.g. the R200 RealSense camera stores pixel from the left sensor
39 - Y'\ :sub:`00left`
41 - Y'\ :sub:`01left`
43 - Y'\ :sub:`02left`
45 - Y'\ :sub:`03left`
48 - Y'\ :sub:`10left`
50 - Y'\ :sub:`11left`
52 - Y'\ :sub:`12left`
54 - Y'\ :sub:`13left`
57 - Y'\ :sub:`20left`
[all …]
/Linux-v5.4/drivers/media/pci/bt8xx/
Dbtcx-risc.c87 if (win->left < 0) { in btcx_screen_clips()
89 clips[n].c.left = 0; in btcx_screen_clips()
91 clips[n].c.width = -win->left; in btcx_screen_clips()
95 if (win->left + win->width > swidth) { in btcx_screen_clips()
97 clips[n].c.left = swidth - win->left; in btcx_screen_clips()
99 clips[n].c.width = win->width - clips[n].c.left; in btcx_screen_clips()
105 clips[n].c.left = 0; in btcx_screen_clips()
113 clips[n].c.left = 0; in btcx_screen_clips()
129 nx = (win->left + mask) & ~mask; in btcx_align()
131 if (nx + nw > win->left + win->width) in btcx_align()
[all …]
/Linux-v5.4/drivers/net/wireless/intersil/hostap/
Dhostap_info.c15 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-v5.4/drivers/video/fbdev/core/
Dsyscopyarea.c33 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 …]
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 …]
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-v5.4/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
84 uint32_t nr_left = le32_to_cpu(left->header.nr_entries); in node_copy()
85 uint32_t value_size = le32_to_cpu(left->header.value_size); in node_copy()
90 BUG_ON(nr_left + shift > le32_to_cpu(left->header.max_entries)); in node_copy()
91 memcpy(key_ptr(left, nr_left), in node_copy()
94 memcpy(value_ptr(left, nr_left), in node_copy()
100 key_ptr(left, nr_left - shift), in node_copy()
103 value_ptr(left, nr_left - shift), in node_copy()
173 static void shift(struct btree_node *left, struct btree_node *right, int count) in shift() argument
175 uint32_t nr_left = le32_to_cpu(left->header.nr_entries); in shift()
[all …]
/Linux-v5.4/drivers/firmware/
Dedd.c45 #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-v5.4/drivers/usb/core/
Dport.c315 static int link_peers(struct usb_port *left, struct usb_port *right) in link_peers() argument
320 if (left->peer == right && right->peer == left) in link_peers()
323 if (left->peer || right->peer) { in link_peers()
324 struct usb_port *lpeer = left->peer; in link_peers()
328 if (left->location && left->location == right->location) in link_peers()
334 dev_name(&left->dev), dev_name(&right->dev), method, in link_peers()
335 dev_name(&left->dev), in link_peers()
342 rc = sysfs_create_link(&left->dev.kobj, &right->dev.kobj, "peer"); in link_peers()
345 rc = sysfs_create_link(&right->dev.kobj, &left->dev.kobj, "peer"); in link_peers()
347 sysfs_remove_link(&left->dev.kobj, "peer"); in link_peers()
[all …]
/Linux-v5.4/drivers/misc/lkdtm/
Dstackleak.c16 unsigned long *sp, left, found, i; in lkdtm_STACKLEAK_ERASING() local
26 left = ((unsigned long)sp & (THREAD_SIZE - 1)) / sizeof(unsigned long); in lkdtm_STACKLEAK_ERASING()
33 if (left > 1) { in lkdtm_STACKLEAK_ERASING()
34 left--; in lkdtm_STACKLEAK_ERASING()
41 left * sizeof(unsigned long)); in lkdtm_STACKLEAK_ERASING()
47 for (i = 0, found = 0; i < left && found <= check_depth; i++) { in lkdtm_STACKLEAK_ERASING()
64 for (; i < left; i++) { in lkdtm_STACKLEAK_ERASING()
/Linux-v5.4/arch/arm/plat-samsung/
Dpm-check.c106 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-v5.4/drivers/infiniband/hw/usnic/
Dusnic_ib_sysfs.c73 unsigned left; in config_show() local
79 left = PAGE_SIZE; in config_show()
93 n = scnprintf(ptr, left, in config_show()
102 UPDATE_PTR_LEFT(n, ptr, left); in config_show()
109 n = scnprintf(ptr, left, " %d %s%s", in config_show()
114 UPDATE_PTR_LEFT(n, ptr, left); in config_show()
116 n = scnprintf(ptr, left, "\n"); in config_show()
117 UPDATE_PTR_LEFT(n, ptr, left); in config_show()
119 n = scnprintf(ptr, left, "%s: no VFs\n", in config_show()
121 UPDATE_PTR_LEFT(n, ptr, left); in config_show()
[all …]
Dusnic_debugfs.c74 int left; in flowinfo_read() local
80 left = count; in flowinfo_read()
86 n = scnprintf(ptr, left, in flowinfo_read()
90 UPDATE_PTR_LEFT(n, ptr, left); in flowinfo_read()
92 n = scnprintf(ptr, left, "Port_Num:%hu\n", in flowinfo_read()
94 UPDATE_PTR_LEFT(n, ptr, left); in flowinfo_read()
96 n = usnic_transport_sock_to_str(ptr, left, in flowinfo_read()
98 UPDATE_PTR_LEFT(n, ptr, left); in flowinfo_read()
99 n = scnprintf(ptr, left, "\n"); in flowinfo_read()
100 UPDATE_PTR_LEFT(n, ptr, left); in flowinfo_read()
/Linux-v5.4/arch/hexagon/include/asm/
Duaccess.h83 long left = raw_copy_from_user(dst, src, n); in hexagon_strncpy_from_user() local
84 if (unlikely(left)) in hexagon_strncpy_from_user()
85 memset(dst + (n - left), 0, left); in hexagon_strncpy_from_user()
88 long left = raw_copy_from_user(dst, src, res); in hexagon_strncpy_from_user() local
89 if (unlikely(left)) in hexagon_strncpy_from_user()
90 memset(dst + (res - left), 0, left); in hexagon_strncpy_from_user()
/Linux-v5.4/net/ceph/
Dpagevec.c67 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 …]
/Linux-v5.4/tools/perf/util/
Dsort.c92 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right) in sort__thread_cmp() argument
94 return right->thread->tid - left->thread->tid; in sort__thread_cmp()
133 sort__comm_cmp(struct hist_entry *left, struct hist_entry *right) in sort__comm_cmp() argument
135 return strcmp(comm__str(right->comm), comm__str(left->comm)); in sort__comm_cmp()
139 sort__comm_collapse(struct hist_entry *left, struct hist_entry *right) in sort__comm_collapse() argument
141 return strcmp(comm__str(right->comm), comm__str(left->comm)); in sort__comm_collapse()
145 sort__comm_sort(struct hist_entry *left, struct hist_entry *right) in sort__comm_sort() argument
147 return strcmp(comm__str(right->comm), comm__str(left->comm)); in sort__comm_sort()
189 sort__dso_cmp(struct hist_entry *left, struct hist_entry *right) in sort__dso_cmp() argument
191 return _sort__dso_cmp(right->ms.map, left->ms.map); in sort__dso_cmp()
[all …]

12345678910>>...38