HomeSort by: relevance | last modified time | path
    Searched refs:new_size (Results 1 - 25 of 530) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/ov_tree_map_/
insert_fn_imps.hpp 53 reallocate_metadata(Node_Update_* , size_type new_size)
55 metadata_pointer a_new_metadata_vec =(new_size == 0) ? 0 : s_metadata_alloc.allocate(new_size);
erase_fn_imps.hpp 78 size_type new_size = 0; local
83 ++new_size;
87 if (new_size == 0)
93 value_vector a_new_values = s_value_alloc.allocate(new_size);
95 cond_dtor<size_type> cd(a_new_values, target_it, new_size);
109 reallocate_metadata((node_update*)this, new_size);
117 m_size = new_size;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/ov_tree_map_/
insert_fn_imps.hpp 53 reallocate_metadata(Node_Update_* , size_type new_size)
55 metadata_pointer a_new_metadata_vec =(new_size == 0) ? 0 : s_metadata_alloc.allocate(new_size);
erase_fn_imps.hpp 78 size_type new_size = 0; local
83 ++new_size;
87 if (new_size == 0)
93 value_vector a_new_values = s_value_alloc.allocate(new_size);
95 cond_dtor<size_type> cd(a_new_values, target_it, new_size);
109 reallocate_metadata((node_update*)this, new_size);
117 m_size = new_size;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/cc_hash_table_map_/
resize_fn_imps.hpp 81 resize_imp(size_type new_size)
84 if (new_size == m_num_e)
91 ranged_hash_fn_base::notify_resized(new_size);
96 a_p_entries_resized = s_entry_pointer_allocator.allocate(new_size);
97 m_num_e = new_size;
106 resize_imp_no_exceptions(new_size, a_p_entries_resized, old_size);
107 Resize_Policy::notify_resized(new_size);
114 resize_imp_no_exceptions(size_type new_size, entry_pointer_array a_p_entries_resized, size_type old_size)
126 m_num_e = new_size;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/cc_hash_table_map_/
resize_fn_imps.hpp 81 resize_imp(size_type new_size)
84 if (new_size == m_num_e)
91 ranged_hash_fn_base::notify_resized(new_size);
96 a_p_entries_resized = s_entry_pointer_allocator.allocate(new_size);
97 m_num_e = new_size;
106 resize_imp_no_exceptions(new_size, a_p_entries_resized, old_size);
107 Resize_Policy::notify_resized(new_size);
114 resize_imp_no_exceptions(size_type new_size, entry_pointer_array a_p_entries_resized, size_type old_size)
126 m_num_e = new_size;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_stack_trace.cc 26 void VarSizeStackTrace::ResizeBuffer(uptr new_size) {
31 (new_size > 0)
33 new_size * sizeof(trace_buffer[0]))
36 size = new_size;
tsan_stack_trace.h 35 void ResizeBuffer(uptr new_size);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/gp_hash_table_map_/
resize_fn_imps.hpp 81 resize_imp(size_type new_size)
87 if (new_size == m_num_e)
95 a_entries_resized = s_entry_allocator.allocate(new_size);
97 ranged_probe_fn_base::notify_resized(new_size);
98 m_num_e = new_size;
109 erase_all_valid_entries(a_entries_resized, new_size);
111 s_entry_allocator.deallocate(a_entries_resized, new_size);
121 Resize_Policy::notify_resized(new_size);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/gp_hash_table_map_/
resize_fn_imps.hpp 81 resize_imp(size_type new_size)
87 if (new_size == m_num_e)
95 a_entries_resized = s_entry_allocator.allocate(new_size);
97 ranged_probe_fn_base::notify_resized(new_size);
98 m_num_e = new_size;
109 erase_all_valid_entries(a_entries_resized, new_size);
111 s_entry_allocator.deallocate(a_entries_resized, new_size);
121 Resize_Policy::notify_resized(new_size);
  /src/external/bsd/tre/dist/lib/
tre-stack.c 86 int new_size; local
88 new_size = s->size + s->increment;
89 if (new_size > s->max_size)
90 new_size = s->max_size;
91 new_buffer = xrealloc(s->stack, sizeof(*new_buffer) * new_size);
98 assert(new_size > s->size);
99 s->size = new_size;
xmalloc.h 16 void *xrealloc_impl(void *ptr, size_t new_size, const char *file, int line,
51 #define xrealloc(ptr, new_size) xrealloc_impl(ptr, new_size, __FILE__, \
70 #define xrealloc(ptr, new_size) realloc(ptr, new_size)
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_dlsym.h 56 static void *Realloc(void *ptr, uptr new_size) {
58 return Allocate(new_size);
60 if (!new_size) {
65 uptr memcpy_size = Min(new_size, size);
66 void *new_ptr = Allocate(new_size);
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_dlsym.h 56 static void *Realloc(void *ptr, uptr new_size) {
58 return Allocate(new_size);
60 if (!new_size) {
65 uptr memcpy_size = Min(new_size, size);
66 void *new_ptr = Allocate(new_size);
  /src/external/gpl3/gcc.old/dist/libgomp/
allocator.c 214 size_t new_size, new_alignment; local
243 new_size = sizeof (struct omp_mem_header);
245 new_size += new_alignment - sizeof (void *);
246 if (__builtin_add_overflow (size, new_size, &new_size))
253 if (new_size > allocator_data->pool_size)
261 if (__builtin_add_overflow (used_pool_size, new_size,
274 if (__builtin_add_overflow (allocator_data->used_pool_size, new_size,
284 ptr = malloc (new_size);
288 __atomic_add_fetch (&allocator_data->used_pool_size, -new_size,
413 size_t new_size, size_temp, new_alignment; local
562 size_t new_size, old_size, new_alignment, old_alignment; local
    [all...]
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
pai.h 17 size_t old_size, size_t new_size, bool zero,
20 size_t old_size, size_t new_size, bool *deferred_work_generated);
40 size_t new_size, bool zero, bool *deferred_work_generated) {
41 return self->expand(tsdn, self, edata, old_size, new_size, zero,
47 size_t new_size, bool *deferred_work_generated) {
49 tsdn, self, edata, old_size, new_size, deferred_work_generated);
  /src/external/bsd/jemalloc/include/jemalloc/internal/
pai.h 17 size_t old_size, size_t new_size, bool zero,
20 size_t old_size, size_t new_size, bool *deferred_work_generated);
40 size_t new_size, bool zero, bool *deferred_work_generated) {
41 return self->expand(tsdn, self, edata, old_size, new_size, zero,
47 size_t new_size, bool *deferred_work_generated) {
49 tsdn, self, edata, old_size, new_size, deferred_work_generated);
  /src/external/bsd/libbind/dist/isc/
memcluster.c 188 size_t new_size = quantize(size); local
213 if (size >= max_size || new_size >= max_size) {
218 e = malloc(new_size);
245 * of memory and then break it up into "new_size"-sized blocks, adding
248 if (freelists[new_size] == NULL) {
280 if (new_size > mem_target_half)
291 frags = total_size / new_size;
292 stats[new_size].blocks++;
293 stats[new_size].freefrags += frags;
294 /* Set up a linked-list of blocks of size "new_size". *
371 size_t new_size = quantize(size); local
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/resize_policy/
sample_resize_trigger.hpp 116 notify_resized(size_type new_size);
120 notify_externally_resized(size_type new_size);
131 /// Resizes to new_size.
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/resize_policy/
sample_resize_trigger.hpp 116 notify_resized(size_type new_size);
120 notify_externally_resized(size_type new_size);
131 /// Resizes to new_size.
  /src/external/gpl3/gcc/dist/libgomp/
allocator.c 540 size_t new_size, new_alignment; local
590 new_size = sizeof (struct omp_mem_header);
592 new_size += new_alignment - sizeof (void *);
593 if (__builtin_add_overflow (size, new_size, &new_size))
604 if (new_size > allocator_data->pool_size)
612 if (__builtin_add_overflow (used_pool_size, new_size,
625 if (__builtin_add_overflow (allocator_data->used_pool_size, new_size,
637 ptr = libnuma_data->numa_alloc_local (new_size);
647 ptr = memkind_data->memkind_malloc (kind, new_size);
844 size_t new_size, size_temp, new_alignment; local
1055 size_t new_size, old_size, new_alignment, old_alignment; local
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_stack_trace.cpp 25 void VarSizeStackTrace::ResizeBuffer(uptr new_size) {
27 trace_buffer = (new_size > 0)
28 ? (uptr *)Alloc(new_size * sizeof(trace_buffer[0]))
31 size = new_size;
tsan_stack_trace.h 34 void ResizeBuffer(uptr new_size);
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_stack_trace.cpp 25 void VarSizeStackTrace::ResizeBuffer(uptr new_size) {
27 trace_buffer = (new_size > 0)
28 ? (uptr *)Alloc(new_size * sizeof(trace_buffer[0]))
31 size = new_size;
tsan_stack_trace.h 34 void ResizeBuffer(uptr new_size);

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 91011>>