Searched refs:actual_size (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Dsplit_join_fn_imps.hpp71 const size_type actual_size = local
82 a_entries = s_entry_allocator.allocate(actual_size);
89 s_entry_allocator.deallocate(a_entries, actual_size);
100 _GLIBCXX_DEBUG_ASSERT(actual_size >= left);
107 m_actual_size = actual_size;
135 const size_type actual_size = resize_policy::get_new_size_for_arbitrary(len); local
142 a_entries = s_entry_allocator.allocate(actual_size);
148 s_entry_allocator.deallocate(a_entries, actual_size);
162 m_actual_size = actual_size;
164 resize_policy::notify_arbitrary(actual_size);
[all...]
H A Derase_fn_imps.hpp57 const size_type actual_size = resize_policy::get_new_size_for_arbitrary(0); local
59 entry_pointer a_entries = s_entry_allocator.allocate(actual_size);
61 resize_policy::notify_arbitrary(actual_size);
65 m_actual_size = actual_size;
140 const size_type actual_size = local
143 entry_pointer a_entries = s_entry_allocator.allocate(actual_size);
149 m_actual_size = actual_size;
H A Dresize_policy.hpp107 notify_arbitrary(size_type actual_size);
222 notify_arbitrary(size_type actual_size) argument
224 m_next_grow_size = actual_size;
/freebsd-11-stable/lib/libnv/tests/
H A Ddnv_tests.cc213 size_t value_size, actual_size; local
221 actual_value = dnvlist_get_binary(nvl, k, &actual_size, "g", 1);
222 ATF_REQUIRE_EQ(value_size, actual_size);
223 ATF_REQUIRE_EQ(memcmp(actual_value, value, actual_size), 0);
234 size_t default_size, actual_size; local
240 actual_value = dnvlist_get_binary(nvl, key, &actual_size, default_value,
242 ATF_REQUIRE_EQ(default_size, actual_size);
243 ATF_REQUIRE_EQ(memcmp(actual_value, default_value, actual_size), 0);
246 actual_value = dnvlist_get_binary(nvl, key, &actual_size, default_value,
248 ATF_REQUIRE_EQ(default_size, actual_size);
482 size_t value_size, default_size, actual_size; local
507 size_t default_size, actual_size; local
526 size_t default_size, actual_size; local
[all...]
H A Dnv_tests.cc525 size_t actual_size; local
528 actual_value = nvlist_get_binary(nvl, name, &actual_size);
529 ATF_REQUIRE_EQ(size, actual_size);
736 size_t size, actual_size; local
747 ATF_REQUIRE_EQ(nvlist_get_binary(nvl, key, &actual_size), value);
748 ATF_REQUIRE_EQ(size, actual_size);
973 size_t testsize, actual_size; local
984 actual_val = nvlist_take_binary(nvl, testkey, &actual_size);
985 ATF_REQUIRE_EQ(testsize, actual_size);
1000 size_t testsize, othersize, actual_size; local
[all...]
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/resize_policy/
H A Dhash_standard_resize_policy_imp.hpp197 size_type actual_size = size_policy_base::get_nearest_larger_size(1); local
198 while (actual_size < new_size)
200 const size_type pot = size_policy_base::get_nearest_larger_size(actual_size);
202 if (pot == actual_size && pot < new_size)
204 actual_size = pot;
207 if (actual_size > 0)
208 --actual_size;
213 do_resize(actual_size - 1);
/freebsd-11-stable/sys/dev/mlx5/mlx5_fpga/
H A Dmlx5fpga_sdk.c137 u8 actual_size; local
147 actual_size = min(max_size, (size - bytes_done));
149 err = mlx5_fpga_access_reg(fdev->mdev, actual_size,
158 bytes_done += actual_size;
169 u8 actual_size; local
179 actual_size = min(max_size, (size - bytes_done));
181 err = mlx5_fpga_access_reg(fdev->mdev, actual_size,
189 bytes_done += actual_size;
/freebsd-11-stable/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_rx.c268 ring->actual_size);
270 if (ring->actual_size == 0) {
276 rounddown_pow_of_two(ring->actual_size);
279 ring->actual_size, new_size);
283 ring->actual_size++;
292 while (ring->actual_size > new_size) {
293 ring->actual_size--;
296 ring->mbuf + ring->actual_size);
312 BUG_ON((u32) (ring->prod - ring->cons) > ring->actual_size);
477 ring->actual_size
[all...]
H A Dmlx4_en_cq.c155 cq->size = priv->rx_ring[cq->ring]->actual_size;
H A Den.h330 u32 actual_size; member in struct:mlx4_en_rx_ring
H A Dmlx4_en_netdev.c2367 priv->rx_ring[0]->actual_size : priv->rx_ring[0]->size) &&
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp308 size_t actual_size = 8 + process_sp->GetAddressByteSize(); local
311 process_sp->ReadMemory(m_header_addr, memory_buffer, actual_size, error);
312 if (bytes_read != actual_size) {
/freebsd-11-stable/sys/dev/fxp/
H A Dif_fxpreg.h356 uint16_t actual_size; member in struct:fxp_rfa
H A Dif_fxp.c1968 * actual_size are flags set by the controller
1972 total_len = le16toh(rfa->actual_size) & 0x3fff;
2665 rfa->actual_size = 0;
2749 rfa->actual_size = 0;

Completed in 203 milliseconds