Searched refs:upper (Results 1 - 25 of 212) sorted by relevance

123456789

/linux-master/arch/mips/include/asm/
H A Dmaar.h32 * @upper: The highest address that the MAAR pair will affect. Must be
41 phys_addr_t upper, unsigned attrs)
45 BUG_ON(((upper & 0xffff) != 0xffff)
46 || ((upper & ~0xffffull) & ~(MIPS_MAAR_ADDR << 4)));
52 * Write the upper address & attributes (both MIPS_MAAR_VL and
57 write_c0_maar(((upper >> 4) & MIPS_MAAR_ADDR) | attrs);
60 upper >>= MIPS_MAARX_ADDR_SHIFT;
61 writex_c0_maar(((upper >> 4) & MIPS_MAARX_ADDR) | MIPS_MAARX_VH);
90 * @upper: The highest address that the MAAR pair will affect. Must be
97 * addresses from lower to upper inclusiv
40 write_maar_pair(unsigned idx, phys_addr_t lower, phys_addr_t upper, unsigned attrs) argument
101 phys_addr_t upper; member in struct:maar_config
[all...]
/linux-master/arch/x86/include/asm/
H A Ddiv64.h49 u32 upper; local
51 upper = d.v32[1];
53 if (upper >= divisor) {
54 d.v32[1] = upper / divisor;
55 upper %= divisor;
58 "rm" (divisor), "0" (d.v32[0]), "1" (upper));
/linux-master/drivers/power/supply/
H A Dbq27xxx_battery_hdq.c45 int upper, lower; local
51 * lower and the upper part
53 upper = w1_bq27000_read(sl, reg + 1);
55 temp = upper;
56 if (upper < 0)
57 return upper;
63 upper = w1_bq27000_read(sl, reg + 1);
64 } while (temp != upper && --timeout);
69 return (upper << 8) | lower;
/linux-master/include/media/i2c/
H A Dov772x.h25 unsigned char upper; member in struct:ov772x_edge_ctrl
37 .upper = (u & OV772X_EDGE_UPPER_MASK), \
/linux-master/arch/powerpc/include/asm/vdso/
H A Dtimebase.h66 static inline void set_tb(unsigned int upper, unsigned int lower) argument
69 mtspr(SPRN_TBWU, upper);
/linux-master/tools/perf/tests/shell/
H A Dstat_bpf_counters.sh13 # upper bound is first_num * 120%
14 upper=$(expr $first_num + $first_num / 5 )
18 if [ $second_num -gt $upper ] || [ $second_num -lt $lower ]; then
/linux-master/net/tipc/
H A Dtopsrv.h51 u32 upper, u32 filter, int *conid);
H A Daddr.h65 u32 type, u32 lower, u32 upper)
72 ua->sr.upper = upper;
87 return ua->sr.upper >= ua->sr.lower;
64 tipc_uaddr(struct tipc_uaddr *ua, u32 atype, u32 scope, u32 type, u32 lower, u32 upper) argument
H A Dsubscr.c54 tipc_evt_write(evt, found_upper, p->sr.upper);
59 tipc_evt_write(evt, found_upper, s->seq.upper);
77 u32 found_upper = found->upper;
81 if (found_upper > subscribed->upper)
82 found_upper = subscribed->upper;
136 u32 upper = tipc_sub_read(s, seq.upper); local
142 lower > upper) {
159 sub->s.seq.upper = upper;
[all...]
H A Dname_distr.h48 * @upper: name sequence upper bound
65 __be32 upper; member in struct:distr_item
/linux-master/kernel/trace/
H A Dpid_list.c146 upper_chunk = pid_list->upper[upper1];
185 upper_chunk = pid_list->upper[upper1];
192 pid_list->upper[upper1] = upper_chunk;
237 upper_chunk = pid_list->upper[upper1];
253 pid_list->upper[upper1] = NULL;
291 upper_chunk = pid_list->upper[upper1];
336 union upper_chunk *upper = NULL; local
338 union upper_chunk **upper_next = &upper;
377 if (upper) {
379 pid_list->upper_list = upper;
459 union upper_chunk *upper; local
[all...]
H A Dpid_list.h23 * of the upper1 unions. Then a "cache" of upper and lower is allocated
28 * pid_list to find the next upper union. If the element is NULL,
39 * When the second upper section or the lower section has their last
62 /* Just keep 6 chunks of both upper and lower in the cache on alloc */
81 union upper_chunk *upper[UPPER1_SIZE]; // 1 or 2K in size member in struct:trace_pid_list
/linux-master/arch/microblaze/kernel/
H A Dftrace.c169 unsigned int upper = (unsigned int)func; local
174 upper = 0xb0000000 + (upper >> 16); /* imm func_upper */
177 pr_debug("%s: func=0x%x, ip=0x%x, upper=0x%x, lower=0x%x\n",
178 __func__, (unsigned int)func, (unsigned int)ip, upper, lower);
180 /* save upper and lower code */
181 ret = ftrace_modify_code(ip, upper);
/linux-master/drivers/base/regmap/
H A Dregcache-maple.c43 unsigned long *entry, *upper, *lower; local
68 upper = mas_find(&mas, reg + 1);
69 if (upper) {
84 if (upper)
85 memcpy(&entry[reg - index + 1], upper, upper_sz);
101 kfree(upper);
112 unsigned long *entry, *lower, *upper; local
118 upper = NULL;
148 upper = kmemdup(&entry[max - mas.index + 1],
152 if (!upper) {
[all...]
/linux-master/fs/overlayfs/
H A Dexport.c36 * Before encoding a non-upper directory file handle from real layer N, we need
48 * copied up and renamed, upper dir /a will be indexed by lower dir /a from
88 /* We can get upper/overlay path from indexed/lower dentry */
154 * encoding also after copy up. If non-pure upper is not indexed, then it was
156 * about staying consistent with pre copy up encoding and we encode an upper
157 * file handle. Overlay root dentry is a private case of non-indexed upper.
164 * Pure upper | U
165 * Non-indexed upper | U
166 * Indexed upper | L (*)
167 * Non-upper |
291 struct dentry *upper = upper_alias ?: index; local
450 struct dentry *upper = ovl_index_upper(ofs, index, true); local
637 ovl_get_dentry(struct super_block *sb, struct dentry *upper, struct ovl_path *lowerpath, struct dentry *index) argument
669 struct dentry *upper; local
726 struct dentry *upper = ovl_index_upper(ofs, index, true); local
[all...]
H A Ddir.c234 static int ovl_set_opaque_xerr(struct dentry *dentry, struct dentry *upper, argument
240 err = ovl_check_setxattr(ofs, upper, OVL_XATTR_OPAQUE, "y", 1, xerr);
250 * Fail with -EIO when trying to create opaque dir and upper doesn't
258 * Common operations required to be done after creation of file on upper.
304 /* Force lookup of new upper hardlink to find its lower */
370 struct dentry *upper; local
391 upper = upperpath.dentry;
392 if (upper->d_parent->d_inode != udir)
414 err = ovl_do_rename(ofs, wdir, opaquedir, udir, upper, RENAME_EXCHANGE);
418 ovl_cleanup_whiteouts(ofs, upper, lis
453 struct dentry *upper; local
736 ovl_matches_upper(struct dentry *dentry, struct dentry *upper) argument
747 struct dentry *upper; local
801 struct dentry *upper; local
[all...]
H A Dparams.h28 struct path upper; member in struct:ovl_fs_context
/linux-master/drivers/gpu/drm/xe/compat-i915-headers/
H A Dintel_uncore.h50 u32 upper, lower, old_upper; local
53 upper = xe_mmio_read32(__compat_uncore_to_gt(uncore), upper_reg);
55 old_upper = upper;
57 upper = xe_mmio_read32(__compat_uncore_to_gt(uncore), upper_reg);
58 } while (upper != old_upper && loop++ < 2);
60 return (u64)upper << 32 | lower;
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H A Dramgm107.c36 .upper = 0x1000000000ULL,
H A Dramgf108.c46 .upper = 0x0200000000ULL,
/linux-master/arch/powerpc/mm/ptdump/
H A Dbats.c15 static void bat_show_603(struct seq_file *m, int idx, u32 lower, u32 upper, bool is_d) argument
17 u32 bepi = upper & 0xfffe0000;
18 u32 bl = (upper >> 2) & 0x7ff;
19 u32 k = upper & 3;
/linux-master/arch/x86/kernel/
H A Dprobe_roms.c201 unsigned long start, length, upper; local
207 upper = adapter_rom_resources[0].start;
208 for (start = video_rom_resource.start; start < upper; start += 2048) {
230 if (start < upper)
231 start = upper;
235 upper = system_rom_resource.start;
243 upper = extension_rom_resource.start;
248 for (i = 0; i < ARRAY_SIZE(adapter_rom_resources) && start < upper; start += 2048) {
260 if (!length || start + length > upper || !romchecksum(rom, length))
/linux-master/arch/arm/kernel/
H A Dmodule.c129 u32 upper, lower, sign, j1, j2; local
323 upper = __mem_to_opcode_thumb16(*(u16 *)loc);
331 * S = upper[10] = offset[24]
334 * imm10 = upper[9:0] = offset[21:12]
339 sign = (upper >> 10) & 1;
344 ((upper & 0x03ff) << 12) |
372 upper = (u16)((upper & 0xf800) | (sign << 10) |
378 *(u16 *)loc = __opcode_to_mem_thumb16(upper);
386 upper
[all...]
/linux-master/drivers/video/fbdev/
H A Darcfb.c248 static void arcfb_lcd_update_page(struct arcfb_par *par, unsigned int upper, argument
258 yindex = upper >> 6;
261 ks108_set_yaddr(par, chipindex, upper/8);
265 (upper * linesize);
296 * lcd chips. update_page uses the upper/left values to decide which
297 * chip to select for the right. upper is needed for setting the page
303 unsigned int distance, upper, lower; local
306 upper = top;
311 arcfb_lcd_update_page(par, upper, left, right, 8);
312 upper
325 unsigned int distance, upper, lower; local
[all...]
/linux-master/drivers/thermal/
H A Dgov_step_wise.c48 next_target = clamp((cur_state + 1), instance->lower, instance->upper);
58 next_target = clamp((cur_state + 1), instance->lower, instance->upper);
64 next_target = clamp((cur_state - 1), instance->lower, instance->upper);

Completed in 217 milliseconds

123456789