Home
last modified time | relevance | path

Searched refs:next_size (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/sys/vm/
Dvm_object.c2083 vm_size_t prev_size, vm_size_t next_size, boolean_t reserved) in vm_object_coalesce() argument
2113 next_size >>= PAGE_SHIFT; in vm_object_coalesce()
2138 if (!reserved && !swap_reserve_by_cred(ptoa(next_size), in vm_object_coalesce()
2143 prev_object->charge += ptoa(next_size); in vm_object_coalesce()
2152 next_size, 0); in vm_object_coalesce()
2155 next_pindex, next_size); in vm_object_coalesce()
2161 (uintmax_t)next_pindex, (uintmax_t)next_size)); in vm_object_coalesce()
2171 if (next_pindex + next_size > prev_object->size) in vm_object_coalesce()
2172 prev_object->size = next_pindex + next_size; in vm_object_coalesce()
/freebsd-12-stable/sys/ofed/drivers/infiniband/core/
Dib_uverbs_cmd.c2540 size_t next_size; in ib_uverbs_post_send() local
2585 next_size = sizeof(*ud); in ib_uverbs_post_send()
2586 ud = alloc_wr(next_size, user_wr->num_sge); in ib_uverbs_post_send()
2607 next_size = sizeof(*rdma); in ib_uverbs_post_send()
2608 rdma = alloc_wr(next_size, user_wr->num_sge); in ib_uverbs_post_send()
2622 next_size = sizeof(*atomic); in ib_uverbs_post_send()
2623 atomic = alloc_wr(next_size, user_wr->num_sge); in ib_uverbs_post_send()
2638 next_size = sizeof(*next); in ib_uverbs_post_send()
2639 next = alloc_wr(next_size, user_wr->num_sge); in ib_uverbs_post_send()
2671 ALIGN(next_size, sizeof(struct ib_sge))); in ib_uverbs_post_send()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/
DEditline.cpp962 size_t next_size = all ? remaining : std::min(page_size, remaining); in DisplayCompletions() local
964 PrintCompletion(output_file, results.slice(cur_pos, next_size), max_len); in DisplayCompletions()
966 cur_pos += next_size; in DisplayCompletions()