/linux-4.4.14/mm/ |
D | memtest.c | 68 phys_addr_t this_start, this_end; in do_one_pass() local 71 &this_end, NULL) { in do_one_pass() 73 this_end = clamp(this_end, start, end); in do_one_pass() 74 if (this_start < this_end) { in do_one_pass() 76 &this_start, &this_end, cpu_to_be64(pattern)); in do_one_pass() 77 memtest(pattern, this_start, this_end - this_start); in do_one_pass()
|
D | memblock.c | 128 phys_addr_t this_start, this_end, cand; in __memblock_find_range_bottom_up() local 131 for_each_free_mem_range(i, nid, flags, &this_start, &this_end, NULL) { in __memblock_find_range_bottom_up() 133 this_end = clamp(this_end, start, end); in __memblock_find_range_bottom_up() 136 if (cand < this_end && this_end - cand >= size) in __memblock_find_range_bottom_up() 162 phys_addr_t this_start, this_end, cand; in __memblock_find_range_top_down() local 165 for_each_free_mem_range_reverse(i, nid, flags, &this_start, &this_end, in __memblock_find_range_top_down() 168 this_end = clamp(this_end, start, end); in __memblock_find_range_top_down() 170 if (this_end < size) in __memblock_find_range_top_down() 173 cand = round_down(this_end - size, align); in __memblock_find_range_top_down()
|
/linux-4.4.14/drivers/block/drbd/ |
D | drbd_interval.c | 50 sector_t this_end = this->sector + (this->size >> 9); in drbd_insert_interval() local 59 if (here->end < this_end) in drbd_insert_interval() 60 here->end = this_end; in drbd_insert_interval() 73 this->end = this_end; in drbd_insert_interval()
|
/linux-4.4.14/arch/sparc/kernel/ |
D | chmc.c | 350 u64 this_end; in jbusmc_dimm_group_size() local 354 this_end = this_base + ent->reg_size; in jbusmc_dimm_group_size() 355 if (base < this_base || base >= this_end) in jbusmc_dimm_group_size() 357 if (this_end > max) in jbusmc_dimm_group_size() 358 this_end = max; in jbusmc_dimm_group_size() 359 if (this_end > max_seen) in jbusmc_dimm_group_size() 360 max_seen = this_end; in jbusmc_dimm_group_size()
|
/linux-4.4.14/drivers/of/ |
D | of_reserved_mem.c | 237 phys_addr_t this_end, next_end; in __rmem_check_for_overlap() local 239 this_end = this->base + this->size; in __rmem_check_for_overlap() 242 this->name, &this->base, &this_end, in __rmem_check_for_overlap()
|
/linux-4.4.14/arch/sparc/mm/ |
D | init_64.c | 1015 unsigned long this_end; in add_node_ranges() local 1018 this_end = memblock_nid_range(start, end, &nid); in add_node_ranges() 1022 nid, start, this_end); in add_node_ranges() 1024 memblock_set_node(start, this_end - start, in add_node_ranges() 1026 start = this_end; in add_node_ranges() 1576 unsigned long this_end, paddr = __pa(vstart); in kernel_map_range() local 1616 this_end = (vstart + PMD_SIZE) & PMD_MASK; in kernel_map_range() 1617 if (this_end > vend) in kernel_map_range() 1618 this_end = vend; in kernel_map_range() 1620 while (vstart < this_end) { in kernel_map_range()
|
/linux-4.4.14/kernel/ |
D | relay.c | 1254 unsigned int this_len, this_end, private; in subbuf_splice_actor() local 1266 this_end = cur_pos + this_len; in subbuf_splice_actor() 1267 if (this_end >= nonpad_end) { in subbuf_splice_actor() 1279 if (this_end >= nonpad_end) { in subbuf_splice_actor()
|
/linux-4.4.14/fs/btrfs/ |
D | extent_io.c | 993 u64 this_end; in __set_extent_bit() local 995 this_end = end; in __set_extent_bit() 997 this_end = last_start - 1; in __set_extent_bit() 1006 err = insert_state(tree, prealloc, start, this_end, in __set_extent_bit() 1013 start = this_end + 1; in __set_extent_bit() 1219 u64 this_end; in convert_extent_bit() local 1221 this_end = end; in convert_extent_bit() 1223 this_end = last_start - 1; in convert_extent_bit() 1235 err = insert_state(tree, prealloc, start, this_end, in convert_extent_bit() 1241 start = this_end + 1; in convert_extent_bit()
|