Home
last modified time | relevance | path

Searched refs:alloc_list (Results 1 – 25 of 157) sorted by relevance

1234567

/dports/security/stunnel/stunnel-5.60/src/
H A Dstr.c253 for(alloc_list=tls_data->alloc_head; alloc_list; alloc_list=alloc_list->next) { in str_stats()
258 alloc_list->alloc_file, alloc_list->alloc_line); in str_stats()
348 alloc_list->tls->alloc_head=alloc_list; in str_realloc_internal_debug()
350 alloc_list->next->prev=alloc_list; in str_realloc_internal_debug()
352 alloc_list->prev->next=alloc_list; in str_realloc_internal_debug()
381 if(alloc_list->tls->alloc_head==alloc_list) in str_detach_debug()
382 alloc_list->tls->alloc_head=alloc_list->next; in str_detach_debug()
384 alloc_list->next->prev=alloc_list->prev; in str_detach_debug()
386 alloc_list->prev->next=alloc_list->next; in str_detach_debug()
388 alloc_list->tls->alloc_bytes-=alloc_list->size; in str_detach_debug()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/MINC/src/libminc/volume_io/Prog_utils/
H A Dalloc_check.c91 alloc_struct *alloc_list )
101 alloc_list->level = 1;
121 alloc_struct *alloc_list )
148 alloc_struct *alloc_list,
156 x = alloc_list->header;
158 i = alloc_list->level-1;
198 alloc_struct *alloc_list,
301 alloc_struct *alloc_list,
337 alloc_list->header->forward[alloc_list->level-1] ==
406 alloc_struct *alloc_list )
[all …]
/dports/science/minc2/minc-release-2.2.00/volume_io/Prog_utils/
H A Dalloc_check.c86 alloc_struct *alloc_list ) in initialize_alloc_list() argument
96 alloc_list->level = 1; in initialize_alloc_list()
116 alloc_struct *alloc_list ) in check_initialized_alloc_list() argument
143 alloc_struct *alloc_list, in find_pointer_position() argument
151 x = alloc_list->header; in find_pointer_position()
189 alloc_struct *alloc_list, in insert_ptr_in_alloc_list() argument
292 alloc_struct *alloc_list, in remove_ptr_from_alloc_list() argument
328 alloc_list->header->forward[alloc_list->level-1] == in remove_ptr_from_alloc_list()
397 alloc_struct *alloc_list ) in memory_still_alloced() argument
418 alloc_struct *alloc_list ) in output_alloc_list() argument
[all …]
/dports/dns/dnswall/google-dnswall-164174a/src/
H A Dquery_record.c59 static AllocListNode alloc_list[NUMBER_OF_QUERY_RECORDS]; variable
66 alloc_list[id].next_id = alloc_list_head; in RecordAllocId()
68 alloc_list[alloc_list_head].prev_id = id; in RecordAllocId()
73 int next_id = alloc_list[id].next_id; in RecordFreeId()
74 int prev_id = alloc_list[id].prev_id; in RecordFreeId()
76 alloc_list[next_id].prev_id = prev_id; in RecordFreeId()
78 alloc_list[prev_id].next_id = next_id; in RecordFreeId()
82 alloc_list[id].next_id = -1; in RecordFreeId()
83 alloc_list[id].prev_id = -1; in RecordFreeId()
100 id = alloc_list[id].next_id; in FreeOldRecordsIfNeeded()
[all …]
/dports/devel/pecl-swoole/swoole-4.8.5/core-tests/src/memory/
H A Dfixed_pool.cpp28 list<void *> alloc_list; in TEST() local
35 alloc_list.push_back(mem); in TEST()
36 } else if (!alloc_list.empty()) { in TEST()
37 void *mem = alloc_list.front(); in TEST()
/dports/multimedia/v4l_compat/linux-5.13-rc2/tools/perf/util/
H A Dparse-events.y303 list = alloc_list();
369 list = alloc_list();
387 list = alloc_list();
414 list = alloc_list();
431 list = alloc_list();
441 list = alloc_list();
455 list = alloc_list();
477 list = alloc_list();
498 list = alloc_list();
518 list = alloc_list();
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/tools/perf/util/
H A Dparse-events.y303 list = alloc_list();
369 list = alloc_list();
387 list = alloc_list();
414 list = alloc_list();
431 list = alloc_list();
441 list = alloc_list();
455 list = alloc_list();
477 list = alloc_list();
498 list = alloc_list();
518 list = alloc_list();
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/tools/perf/util/
H A Dparse-events.y303 list = alloc_list();
369 list = alloc_list();
387 list = alloc_list();
414 list = alloc_list();
431 list = alloc_list();
441 list = alloc_list();
455 list = alloc_list();
477 list = alloc_list();
498 list = alloc_list();
518 list = alloc_list();
[all …]
/dports/devel/directfb/DirectFB-1.4.17/lib/direct/
H A Dmem.c67 static MemDesc *alloc_list = NULL; variable
84 MemDesc *desc = &alloc_list[i]; in direct_print_memleaks()
119 direct_memcpy( new_list, alloc_list, sizeof(MemDesc) * alloc_count ); in allocate_mem_desc()
121 free( alloc_list ); in allocate_mem_desc()
124 alloc_list = new_list; in allocate_mem_desc()
127 return &alloc_list[alloc_count++]; in allocate_mem_desc()
221 MemDesc *desc = &alloc_list[i]; in direct_realloc()
282 MemDesc *desc = &alloc_list[i]; in direct_free()
H A Dinterface.c445 static InterfaceDesc *alloc_list = NULL; variable
461 InterfaceDesc *desc = &alloc_list[i]; in direct_print_interface_leaks()
488 alloc_list = realloc( alloc_list, sizeof(InterfaceDesc) * cap ); in allocate_interface_desc()
490 D_ASSERT( alloc_list != NULL ); in allocate_interface_desc()
493 return &alloc_list[alloc_count++]; in allocate_interface_desc()
551 InterfaceDesc *desc = &alloc_list[i]; in direct_dbg_interface_remove()
/dports/multimedia/libxine/xine-lib-1.2.11/src/xine-utils/
H A Dring_buffer.c79 xine_list_t *alloc_list; member
105 new_ring_buffer->alloc_list = xine_list_new(); in xine_ring_buffer_new()
140 xine_list_delete(ring_buffer->alloc_list); in xine_ring_buffer_delete()
214 xine_list_push_back(ring_buffer->alloc_list, chunk); in xine_ring_buffer_alloc()
231 for (ite = xine_list_front(ring_buffer->alloc_list); in xine_ring_buffer_put()
233 ite = xine_list_next(ring_buffer->alloc_list, ite)) { in xine_ring_buffer_put()
234 chunk = xine_list_get_value(ring_buffer->alloc_list, ite); in xine_ring_buffer_put()
258 xine_list_remove(ring_buffer->alloc_list, ite); in xine_ring_buffer_put()
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client/tests/pagesize/
H A Dpagesize_test.c113 struct MemInfo *alloc_list; member
146 self->alloc_list = NULL; in TestStateCtor()
147 self->alloc_list_end = &self->alloc_list; in TestStateCtor()
259 printf("head of list %p\n", (void *) self->alloc_list); in RunTest()
261 for (mipp = &self->alloc_list; NULL != (mip = *mipp); mipp = &mip->next) { in RunTest()
287 for (mip = self->alloc_list; NULL != mip; mip = tmp) { in RunTest()
/dports/textproc/bibtool/BibTool/regex-0.12/test/
H A Ddebugmalloc.c90 chunk alloc_list = NULL, free_list = NULL; variable
212 validate_list (&alloc_list);
234 chunk_insert (&alloc_list, c);
269 validate_list (&alloc_list);
271 chunk_delete (&alloc_list, c);
/dports/graphics/netpbm/netpbm-10.91.01/converter/other/fiasco/lib/
H A Dlist.h44 #define alloc_queue alloc_list
50 #define alloc_stack alloc_list
56 alloc_list (size_t size_of_element);
/dports/devel/jwasm/JWasm-f0a2fdd/src/
H A Dtrmem.c111 entry_ptr alloc_list; member
308 tr->next = hdl->alloc_list; in addToList()
309 hdl->alloc_list = tr; in addToList()
316 walk = hdl->alloc_list; in findOnList()
332 walk = &hdl->alloc_list; in removeFromList()
368 hdl->alloc_list = NULL; in _trmem_open()
382 walk = hdl->alloc_list; in _trmem_validate_all()
404 walk = hdl->alloc_list; in _trmem_close()
416 walk = hdl->alloc_list; in _trmem_close()
663 tr = hdl->alloc_list; in _trmem_chk_range()
[all …]
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/dialyzer/test/options1_SUITE_data/src/compiler/
H A Dbeam_flatten.erl72 [{test_heap,alloc_list(Nh, Nf),Regs}];
86 [{allocate_heap,Ns,alloc_list(Nh, Floats),Regs}|Inits];
88 [{allocate_heap_zero,Ns,alloc_list(Nh, Floats),Regs}|Inits].
99 Al = alloc_list(Ws+Nh, Nf),
111 alloc_list(Words, Floats) -> function
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/dialyzer/test/options1_SUITE_data/src/compiler/
H A Dbeam_flatten.erl72 [{test_heap,alloc_list(Nh, Nf),Regs}];
86 [{allocate_heap,Ns,alloc_list(Nh, Floats),Regs}|Inits];
88 [{allocate_heap_zero,Ns,alloc_list(Nh, Floats),Regs}|Inits].
99 Al = alloc_list(Ws+Nh, Nf),
111 alloc_list(Words, Floats) -> function
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/dialyzer/test/options1_SUITE_data/src/compiler/
H A Dbeam_flatten.erl72 [{test_heap,alloc_list(Nh, Nf),Regs}];
86 [{allocate_heap,Ns,alloc_list(Nh, Floats),Regs}|Inits];
88 [{allocate_heap_zero,Ns,alloc_list(Nh, Floats),Regs}|Inits].
99 Al = alloc_list(Ws+Nh, Nf),
111 alloc_list(Words, Floats) -> function
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/dialyzer/test/options1_SUITE_data/src/compiler/
H A Dbeam_flatten.erl72 [{test_heap,alloc_list(Nh, Nf),Regs}];
86 [{allocate_heap,Ns,alloc_list(Nh, Floats),Regs}|Inits];
88 [{allocate_heap_zero,Ns,alloc_list(Nh, Floats),Regs}|Inits].
99 Al = alloc_list(Ws+Nh, Nf),
111 alloc_list(Words, Floats) -> function
/dports/lang/erlang/otp-OTP-24.1.7/lib/dialyzer/test/options1_SUITE_data/src/compiler/
H A Dbeam_flatten.erl72 [{test_heap,alloc_list(Nh, Nf),Regs}];
86 [{allocate_heap,Ns,alloc_list(Nh, Floats),Regs}|Inits];
88 [{allocate_heap_zero,Ns,alloc_list(Nh, Floats),Regs}|Inits].
99 Al = alloc_list(Ws+Nh, Nf),
111 alloc_list(Words, Floats) -> function
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/dialyzer/test/options1_SUITE_data/src/compiler/
H A Dbeam_flatten.erl72 [{test_heap,alloc_list(Nh, Nf),Regs}];
86 [{allocate_heap,Ns,alloc_list(Nh, Floats),Regs}|Inits];
88 [{allocate_heap_zero,Ns,alloc_list(Nh, Floats),Regs}|Inits].
99 Al = alloc_list(Ws+Nh, Nf),
111 alloc_list(Words, Floats) -> function
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/dialyzer/test/options1_SUITE_data/src/compiler/
H A Dbeam_flatten.erl72 [{test_heap,alloc_list(Nh, Nf),Regs}];
86 [{allocate_heap,Ns,alloc_list(Nh, Floats),Regs}|Inits];
88 [{allocate_heap_zero,Ns,alloc_list(Nh, Floats),Regs}|Inits].
99 Al = alloc_list(Ws+Nh, Nf),
111 alloc_list(Words, Floats) -> function
/dports/databases/pgbouncer/pgbouncer-1.16.0/lib/usual/
H A Dcxextra.c273 struct List alloc_list; member
292 list_append(&tree->alloc_list, &item->node); in tree_alloc()
306 list_append(&t->alloc_list, &item2->node); in tree_realloc()
309 list_append(&t->alloc_list, &item->node); in tree_realloc()
334 list_for_each_safe(el, &tree->alloc_list, tmp) { in tree_destroy()
379 list_init(&t->alloc_list); in cx_new_tree()
/dports/databases/mysql55-client/mysql-5.5.62/storage/ndb/test/ndbapi/
H A DtestBitfield.cpp414 Vector<Alloc> alloc_list; in testRanges() local
444 for(j = 0; j<alloc_list.size(); j++) in testRanges()
446 min = alloc_list[j].pos; in testRanges()
447 max = min + alloc_list[j].size; in testRanges()
469 Alloc& a = alloc_list[j]; in testRanges()
474 if(!cmp(tmp.getBase(), alloc_list[j].data.getBase(), max - min)) in testRanges()
480 alloc_list.erase(j); in testRanges()
520 alloc_list.push_back(a); in testRanges()
/dports/multimedia/ppm2fli/ppm2fli-2.1/
H A Daoctree.c85 static OCTREE alloc_list=NULL; variable
343 tree->next_alloc=alloc_list; in add_to_large_octree()
344 alloc_list=tree; in add_to_large_octree()
416 while (alloc_list != NULL) in clear_octree()
418 next_node=alloc_list->next_alloc; in clear_octree()
419 free(alloc_list); in clear_octree()
420 alloc_list=next_node; in clear_octree()

1234567