| /linux/arch/mips/include/asm/ |
| H A D | maar.h | 41 phys_addr_t upper, unsigned attrs) in write_maar_pair() argument 45 BUG_ON(((upper & 0xffff) != 0xffff) in write_maar_pair() 46 || ((upper & ~0xffffull) & ~(MIPS_MAAR_ADDR << 4))); in write_maar_pair() 57 write_c0_maar(((upper >> 4) & MIPS_MAAR_ADDR) | attrs); in write_maar_pair() 60 upper >>= MIPS_MAARX_ADDR_SHIFT; in write_maar_pair() 61 writex_c0_maar(((upper >> 4) & MIPS_MAARX_ADDR) | MIPS_MAARX_VH); in write_maar_pair() 101 phys_addr_t upper; member 122 write_maar_pair(i, cfg[i].lower, cfg[i].upper, cfg[i].attrs); in maar_config()
|
| /linux/drivers/power/supply/ |
| H A D | bq27xxx_battery_hdq.c | 45 int upper, lower; in bq27xxx_battery_hdq_read() local 53 upper = w1_bq27000_read(sl, reg + 1); in bq27xxx_battery_hdq_read() 55 temp = upper; in bq27xxx_battery_hdq_read() 56 if (upper < 0) in bq27xxx_battery_hdq_read() 57 return upper; in bq27xxx_battery_hdq_read() 63 upper = w1_bq27000_read(sl, reg + 1); in bq27xxx_battery_hdq_read() 64 } while (temp != upper && --timeout); in bq27xxx_battery_hdq_read() 69 return (upper << 8) | lower; in bq27xxx_battery_hdq_read()
|
| /linux/kernel/trace/ |
| H A D | pid_list.c | 145 upper_chunk = pid_list->upper[upper1]; in trace_pid_list_is_set() 185 upper_chunk = pid_list->upper[upper1]; in trace_pid_list_set() 192 pid_list->upper[upper1] = upper_chunk; in trace_pid_list_set() 239 upper_chunk = pid_list->upper[upper1]; in trace_pid_list_clear() 255 pid_list->upper[upper1] = NULL; in trace_pid_list_clear() 294 upper_chunk = pid_list->upper[upper1]; in trace_pid_list_next() 339 union upper_chunk *upper = NULL; in pid_list_refill_irq() local 341 union upper_chunk **upper_next = &upper; in pid_list_refill_irq() 383 if (upper) { in pid_list_refill_irq() 385 pid_list->upper_list = upper; in pid_list_refill_irq() [all …]
|
| /linux/net/tipc/ |
| H A D | subscr.c | 54 tipc_evt_write(evt, found_upper, p->sr.upper); in tipc_sub_send_event() 59 tipc_evt_write(evt, found_upper, s->seq.upper); in tipc_sub_send_event() 77 u32 found_upper = found->upper; in tipc_sub_check_overlap() 81 if (found_upper > subscribed->upper) in tipc_sub_check_overlap() 82 found_upper = subscribed->upper; in tipc_sub_check_overlap() 136 u32 upper = tipc_sub_read(s, seq.upper); in tipc_sub_subscribe() local 142 lower > upper) { in tipc_sub_subscribe() 159 sub->s.seq.upper = upper; in tipc_sub_subscribe()
|
| /linux/drivers/video/fbdev/ |
| H A D | arcfb.c | 248 static void arcfb_lcd_update_page(struct arcfb_par *par, unsigned int upper, in arcfb_lcd_update_page() argument 258 yindex = upper >> 6; in arcfb_lcd_update_page() 261 ks108_set_yaddr(par, chipindex, upper/8); in arcfb_lcd_update_page() 265 (upper * linesize); in arcfb_lcd_update_page() 303 unsigned int distance, upper, lower; in arcfb_lcd_update_vert() local 306 upper = top; in arcfb_lcd_update_vert() 311 arcfb_lcd_update_page(par, upper, left, right, 8); in arcfb_lcd_update_vert() 312 upper = lower + 1; in arcfb_lcd_update_vert() 313 lower = upper + 7; in arcfb_lcd_update_vert() 325 unsigned int distance, upper, lower; in arcfb_lcd_update_horiz() local [all …]
|
| /linux/arch/x86/kernel/ |
| H A D | probe_roms.c | 201 unsigned long start, length, upper; in probe_roms() local 207 upper = adapter_rom_resources[0].start; in probe_roms() 208 for (start = video_rom_resource.start; start < upper; start += 2048) { in probe_roms() 230 if (start < upper) in probe_roms() 231 start = upper; in probe_roms() 235 upper = system_rom_resource.start; in probe_roms() 243 upper = extension_rom_resource.start; in probe_roms() 248 for (i = 0; i < ARRAY_SIZE(adapter_rom_resources) && start < upper; start += 2048) { in probe_roms() 260 if (!length || start + length > upper || !romchecksum(rom, length)) in probe_roms()
|
| /linux/arch/x86/include/asm/ |
| H A D | div64.h | 49 u32 upper; in div_u64_rem() local 51 upper = d.v32[1]; in div_u64_rem() 53 if (upper >= divisor) { in div_u64_rem() 54 d.v32[1] = upper / divisor; in div_u64_rem() 55 upper %= divisor; in div_u64_rem() 58 "rm" (divisor), "0" (d.v32[0]), "1" (upper)); in div_u64_rem()
|
| /linux/fs/overlayfs/ |
| H A D | dir.c | 257 static int ovl_set_opaque_xerr(struct dentry *dentry, struct dentry *upper, in ovl_set_opaque_xerr() argument 263 err = ovl_check_setxattr(ofs, upper, OVL_XATTR_OPAQUE, "y", 1, xerr); in ovl_set_opaque_xerr() 392 struct dentry *upper; in ovl_clear_empty() local 409 upper = upperpath.dentry; in ovl_clear_empty() 420 err = start_renaming_two_dentries(&rd, opaquedir, upper); in ovl_clear_empty() 443 ovl_cleanup_whiteouts(ofs, upper, list); in ovl_clear_empty() 444 ovl_cleanup(ofs, workdir, upper); in ovl_clear_empty() 476 struct dentry *upper; in ovl_create_over_whiteout() local 492 upper = ovl_lookup_upper_unlocked(ofs, dentry->d_name.name, upperdir, in ovl_create_over_whiteout() 494 err = PTR_ERR(upper); in ovl_create_over_whiteout() [all …]
|
| H A D | copy_up.c | 487 struct dentry *upper) in ovl_set_origin_fh() argument 494 err = ovl_check_setxattr(ofs, upper, OVL_XATTR_ORIGIN, fh->buf, in ovl_set_origin_fh() 502 static int ovl_set_upper_fh(struct ovl_fs *ofs, struct dentry *upper, in ovl_set_upper_fh() argument 508 fh = ovl_encode_real_fh(ofs, d_inode(upper), true); in ovl_set_upper_fh() 522 struct dentry *upper) in ovl_create_index() argument 555 err = ovl_set_upper_fh(ofs, upper, temp); in ovl_create_index() 598 struct dentry *upper; in ovl_link_up() local 614 upper = ovl_start_creating_upper(ofs, upperdir, in ovl_link_up() 617 err = PTR_ERR(upper); in ovl_link_up() 618 if (!IS_ERR(upper)) { in ovl_link_up() [all …]
|
| /linux/arch/arm/kernel/ |
| H A D | module.c | 95 u32 upper, lower, sign, j1, j2; in apply_relocate() local 289 upper = __mem_to_opcode_thumb16(*(u16 *)loc); in apply_relocate() 305 sign = (upper >> 10) & 1; in apply_relocate() 310 ((upper & 0x03ff) << 12) | in apply_relocate() 338 upper = (u16)((upper & 0xf800) | (sign << 10) | in apply_relocate() 344 *(u16 *)loc = __opcode_to_mem_thumb16(upper); in apply_relocate() 352 upper = __mem_to_opcode_thumb16(*(u16 *)loc); in apply_relocate() 365 offset = ((upper & 0x000f) << 12) | in apply_relocate() 366 ((upper & 0x0400) << 1) | in apply_relocate() 378 upper = (u16)((upper & 0xfbf0) | in apply_relocate() [all …]
|
| /linux/Documentation/filesystems/ |
| H A D | overlayfs.rst | 27 upper filesystem that is providing the object. Similarly st_ino will 86 An overlay filesystem combines two filesystems - an 'upper' filesystem 88 object in the 'upper' filesystem is visible while the object in the 90 merged with the 'upper' object. 92 It would be more correct to refer to an upper and lower 'directory 95 requirement that the root of a filesystem be given for either upper or 101 writable. The lower filesystem can even be another overlayfs. The upper 113 upper and lower filesystems and refers to a non-directory in either, 114 then the lower object is hidden - the name refers only to the upper 117 Where both upper and lower objects are directories, a merged directory [all …]
|
| /linux/arch/microblaze/kernel/ |
| H A D | ftrace.c | 169 unsigned int upper = (unsigned int)func; in ftrace_update_ftrace_func() local 174 upper = 0xb0000000 + (upper >> 16); /* imm func_upper */ in ftrace_update_ftrace_func() 178 __func__, (unsigned int)func, (unsigned int)ip, upper, lower); in ftrace_update_ftrace_func() 181 ret = ftrace_modify_code(ip, upper); in ftrace_update_ftrace_func()
|
| /linux/arch/x86/boot/ |
| H A D | string.c | 199 u32 upper; in __div_u64_rem() local 201 upper = d.v32[1]; in __div_u64_rem() 203 if (upper >= divisor) { in __div_u64_rem() 204 d.v32[1] = upper / divisor; in __div_u64_rem() 205 upper %= divisor; in __div_u64_rem() 208 "rm" (divisor), "0" (d.v32[0]), "1" (upper)); in __div_u64_rem()
|
| /linux/rust/kernel/ |
| H A D | configfs.rs | 956 [< $data:upper _ATTRS >] 957 .add::<N, $attr, _>(&[< $data:upper _ $name:upper _ATTR >]) 1000 static [< $data:upper _ $name:upper _ATTR >]: 1012 static [< $data:upper _ATTRS >]: 1019 const [<$no_child:upper>]: bool = true; 1021 static [< $data:upper _TPE >] : $crate::configfs::ItemType<$container, $data> = 1023 &THIS_MODULE, &[<$ data:upper _ATTRS >] 1028 static [< $data:upper _TPE >]: 1032 &THIS_MODULE, &[<$ data:upper _ATTRS >] 1036 & [< $data:upper _TPE >]
|
| /linux/arch/powerpc/mm/ptdump/ |
| H A D | bats.c | 15 static void bat_show_603(struct seq_file *m, int idx, u32 lower, u32 upper, bool is_d) in bat_show_603() argument 17 u32 bepi = upper & 0xfffe0000; in bat_show_603() 18 u32 bl = (upper >> 2) & 0x7ff; in bat_show_603() 19 u32 k = upper & 3; in bat_show_603()
|
| /linux/tools/testing/selftests/powerpc/pmu/ebb/ |
| H A D | ebb.c | 73 u64 count, upper, lower; in ebb_check_count() local 85 upper = ebb_state.stats.ebb_count * (sample_period + fudge); in ebb_check_count() 87 if (count > upper) { in ebb_check_count() 89 pmc, count, upper, count - upper); in ebb_check_count() 94 pmc, count, lower, upper, count - lower, upper - count); in ebb_check_count()
|
| /linux/arch/m68k/fpsp040/ |
| H A D | binstr.S | 23 | to force the first byte formed to have a 0 in the upper 4 bits. 40 | upper word of d0. If it is the ls digit, write the word 51 | d2: upper 32-bits of fraction for mul by 8 53 | d4: upper 32-bits of fraction for mul by 2 106 addxl %d4,%d2 |add with extend upper 32 bits 109 swap %d6 |with d6 = 0; put 0 in upper word 117 aslw #4,%d7 |first digit in upper 4 bits d7b 131 lslw #4,%d7 |move it to upper 4 bits
|
| /linux/drivers/acpi/acpica/ |
| H A D | utprint.c | 34 static char *acpi_ut_put_number(char *string, u64 number, u8 base, u8 upper); 104 static char *acpi_ut_put_number(char *string, u64 number, u8 base, u8 upper) in acpi_ut_put_number() argument 111 digits = upper ? acpi_gbl_upper_hex_digits : acpi_gbl_lower_hex_digits; in acpi_ut_put_number() 210 u8 upper; in acpi_ut_format_number() local 226 upper = (type & ACPI_FORMAT_UPPER) ? TRUE : FALSE; in acpi_ut_format_number() 254 pos = acpi_ut_put_number(reversed_string, number, base, upper); in acpi_ut_format_number() 280 upper ? 'X' : 'x'); in acpi_ut_format_number()
|
| /linux/drivers/clocksource/ |
| H A D | arm_global_timer.c | 70 u32 upper, old_upper; in _gt_counter_read() local 72 upper = readl_relaxed(gt_base + GT_COUNTER1); in _gt_counter_read() 74 old_upper = upper; in _gt_counter_read() 76 upper = readl_relaxed(gt_base + GT_COUNTER1); in _gt_counter_read() 77 } while (upper != old_upper); in _gt_counter_read() 79 counter = upper; in _gt_counter_read()
|
| /linux/scripts/coccinelle/misc/ |
| H A D | do_div.cocci | 29 elif (str.upper().endswith('ULL')): 32 elif (str.upper().endswith('LL')): 35 elif (str.upper().endswith('UL')): 38 elif (str.upper().endswith('L')): 41 elif (str.upper().endswith('U')):
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | ext-ctrls-colorimetry.rst | 26 The Content Light Level defines upper bounds for the nominal target 40 - The upper bound for the maximum light level among all individual 42 When equal to 0 no such upper bound is present. 45 - The upper bound for the maximum average light level among the 47 cd/m\ :sup:`2`. When equal to 0 no such upper bound is present.
|
| /linux/arch/s390/tools/ |
| H A D | gen_opcode_table.c | 26 char upper[STRING_SIZE_MAX]; member 166 insn.upper[i] = toupper((unsigned char)insn.name[i]); in read_instructions() 227 printf("\tLONG_INSN_%s,\n", insn->upper); in print_long_insn() 237 printf("\t[LONG_INSN_%s] = ", insn->upper); in print_long_insn() 256 printf(".offset = LONG_INSN_%s", insn->upper); in print_opcode()
|
| /linux/include/media/i2c/ |
| H A D | ov772x.h | 25 unsigned char upper; member 37 .upper = (u & OV772X_EDGE_UPPER_MASK), \
|
| /linux/drivers/net/dsa/mv88e6xxx/ |
| H A D | global1_atu.c | 179 u16 val = 0, upper = 0, op = 0; in mv88e6xxx_g1_atu_fid_read() local 194 &upper); in mv88e6xxx_g1_atu_fid_read() 198 upper = (upper >> 8) & 0x00f0; in mv88e6xxx_g1_atu_fid_read() 201 upper = (op >> 4) & 0x30; in mv88e6xxx_g1_atu_fid_read() 205 val = (op & 0xf) | upper; in mv88e6xxx_g1_atu_fid_read()
|
| /linux/fs/btrfs/ |
| H A D | relocation.c | 208 while (!list_empty(&node->upper)) { in walk_up_backref() 209 edge = list_first_entry(&node->upper, struct btrfs_backref_edge, in walk_up_backref() 232 if (list_is_last(&edge->list[LOWER], &lower->upper)) { in walk_down_backref() 351 ASSERT(list_empty(&cur->upper)); in handle_useless_nodes() 369 if (list_empty(&lower->upper)) in handle_useless_nodes() 2121 if (list_empty(&next->upper)) in calcu_metadata_size() 2124 edge = list_first_entry(&next->upper, struct btrfs_backref_edge, in calcu_metadata_size() 2193 struct btrfs_backref_node *upper; in do_relocation() local 2211 list_for_each_entry(edge, &node->upper, list[LOWER]) { in do_relocation() 2214 upper = edge->node[UPPER]; in do_relocation() [all …]
|