Searched refs:reserve (Results 1 - 25 of 31) sorted by relevance

12

/fuchsia/zircon/third_party/ulib/ngunwind/include/ngunwind/private/
H A Dmempool.h60 unsigned int reserve; /* minimum (desired) size of the free-list */ member in struct:mempool
79 size_t obj_size, size_t reserve);
/fuchsia/zircon/third_party/ulib/ngunwind/src/mi/
H A Dmempool.c127 mempool_init (struct mempool *pool, size_t obj_size, size_t reserve) argument
139 if (!reserve)
141 reserve = pg_size / obj_size / 4;
142 if (!reserve)
143 reserve = 16;
147 pool->reserve = reserve;
148 pool->chunk_size = UNW_ALIGN(2*reserve*obj_size, pg_size);
161 if (pool->num_free <= pool->reserve)
/fuchsia/zircon/system/ulib/cobalt-client/
H A Devent_buffer.cpp13 metadata_.reserve(metadata.size() + 1);
H A Dcollector.cpp37 remote_counters_.reserve(options.max_counters);
38 remote_histograms_.reserve(options.max_histograms);
39 histogram_options_.reserve(options.max_histograms);
H A Dhistogram.cpp90 buckets_.reserve(num_buckets);
101 bucket_buffer_.reserve(num_buckets);
/fuchsia/zircon/system/dev/video/usb-video/
H A Dvideo-buffer.cpp73 free_frames_.reserve(num_frames, &ac);
77 locked_frames_.reserve(num_frames, &ac);
/fuchsia/zircon/system/utest/fbl/
H A Dvector_tests.cpp160 vector.reserve(size, &ac);
217 vector.reserve(size, &ac);
255 vector.reserve(size, &ac);
412 vector.reserve(0, &ac);
414 vector.reserve(1, &ac);
416 vector.reserve(size, &ac);
432 vector.reserve(0, &ac);
434 vector.reserve(1, &ac);
436 vector.reserve(size, &ac);
718 vector.reserve(siz
[all...]
/fuchsia/zircon/system/dev/bus/platform/
H A Ddevice-resources.cpp45 children_.reserve(pdev->child_count, &ac);
H A Dplatform-bus.cpp425 i2c_buses_.reserve(bus_count, &ac);
/fuchsia/zircon/system/utest/cobalt-client/
H A Dcounter_test.cpp123 thread_ids.reserve(kThreads);
187 thread_ids.reserve(kThreads);
316 thread_ids.reserve(kThreads);
411 thread_ids.reserve(kThreads);
H A Dhistogram_test.cpp161 thread_ids.reserve(kThreads);
229 buckets.reserve(kBuckets);
314 thread_ids.reserve(kThreads);
H A Dcollector_test.cpp410 thread_ids.reserve(kThreads);
/fuchsia/zircon/kernel/dev/iommu/intel/
H A Ddevice_context.cpp235 allocated_regions_.reserve(allocated_regions_.size() + 1, &ac);
318 allocated_regions_.reserve(allocated_regions_.size() + 1, &ac);
358 allocated_regions_.reserve(allocated_regions_.size() + 1, &ac);
/fuchsia/zircon/system/ulib/perftest/
H A Dresults.cpp55 copy.reserve(values.size());
H A Drunner.cpp244 results->values.reserve(run_count_);
/fuchsia/zircon/system/ulib/fbl/include/fbl/
H A Dvector.h109 void reserve(size_t capacity, AllocChecker* ac) { function in class:fbl::Vector
118 void reserve(size_t capacity) { function in class:fbl::Vector
/fuchsia/zircon/system/dev/audio/astro-tdm-output/
H A Daudio-stream-out.cpp221 supported_formats_.reserve(1, &ac);
/fuchsia/zircon/system/dev/audio/astro-pdm-input/
H A Daudio-stream-in.cpp182 supported_formats_.reserve(1, &ac);
/fuchsia/zircon/system/utest/fs-vnode/
H A Dlazy-dir-tests.cpp54 out_vector->reserve(contents_.size());
/fuchsia/zircon/system/dev/display/intel-i915/
H A Dgtt.cpp153 pmts_.reserve(num_pins, &ac);
176 ZX_DEBUG_ASSERT(ac.check()); // Shouldn't fail because of the reserve above.
/fuchsia/zircon/system/ulib/runtests-utils/
H A Druntests-utils.cpp193 resolved->reserve(resolved_glob.gl_pathc);
/fuchsia/zircon/system/host/fidl/lib/
H A Dc_generator.cpp498 members.reserve(union_members.size());
510 request->reserve(method_info.request->parameters.size());
517 response->reserve(method_info.request->parameters.size());
818 members.reserve(1 + named_message.parameters.size());
840 members.reserve(named_struct.struct_info.members.size());
/fuchsia/zircon/system/dev/block/fvm/
H A Dfvm.cpp44 new_extent->pslices_.reserve(end() - vslice, &ac);
60 pslices_.reserve(other.size(), &ac);
1108 txns.reserve(txn_count);
/fuchsia/zircon/system/dev/audio/usb-audio/
H A Dusb-audio-stream-interface.cpp184 // Now reserve our memory.
186 format_map_.reserve(worst_case_map_entries, &ac);
188 LOG(ERROR, "Out of memory attempting to reserve %zu format ranges\n",
/fuchsia/zircon/system/ulib/process-launcher/
H A Dlauncher.cpp32 target->reserve(target->size() + source.size());

Completed in 201 milliseconds

12