Home
last modified time | relevance | path

Searched refs:new_heap (Results 1 – 25 of 179) sorted by relevance

12345678

/dports/math/vtk9/VTK-9.1.0/ThirdParty/hdf5/vtkhdf5/src/
H A DH5HP.c348 new_heap->type = heap_type; in H5HP_create()
349 new_heap->nobjs = 0; in H5HP_create()
358 new_heap->heap[0].obj = NULL; in H5HP_create()
365 new_heap->heap[0].obj = NULL; in H5HP_create()
369 ret_value = new_heap; in H5HP_create()
374 if (NULL != new_heap) { in H5HP_create()
375 if (NULL != new_heap->heap) in H5HP_create()
376 new_heap->heap = H5FL_SEQ_FREE(H5HP_ent_t, new_heap->heap); in H5HP_create()
377 new_heap = H5FL_FREE(H5HP_t, new_heap); in H5HP_create()
475 if (!new_heap) in H5HP_insert()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/HDF5/src/itkhdf5/src/
H A DH5HP.c354 new_heap->type=heap_type; in H5HP_create()
355 new_heap->nobjs=0; in H5HP_create()
363 new_heap->heap[0].val=INT_MIN; in H5HP_create()
364 new_heap->heap[0].obj=NULL; in H5HP_create()
371 new_heap->heap[0].obj=NULL; in H5HP_create()
375 ret_value=new_heap; in H5HP_create()
380 if(NULL != new_heap) { in H5HP_create()
382 new_heap->heap = H5FL_SEQ_FREE(H5HP_ent_t, new_heap->heap); in H5HP_create()
383 new_heap = H5FL_FREE(H5HP_t, new_heap); in H5HP_create()
483 if (!new_heap) in H5HP_insert()
[all …]
/dports/science/hdf5-18/hdf5-1.8.21/src/
H A DH5HP.c354 new_heap->type=heap_type; in H5HP_create()
355 new_heap->nobjs=0; in H5HP_create()
363 new_heap->heap[0].val=INT_MIN; in H5HP_create()
364 new_heap->heap[0].obj=NULL; in H5HP_create()
371 new_heap->heap[0].obj=NULL; in H5HP_create()
375 ret_value=new_heap; in H5HP_create()
380 if(NULL != new_heap) { in H5HP_create()
382 new_heap->heap = H5FL_SEQ_FREE(H5HP_ent_t, new_heap->heap); in H5HP_create()
383 new_heap = H5FL_FREE(H5HP_t, new_heap); in H5HP_create()
483 if (!new_heap) in H5HP_insert()
[all …]
/dports/science/hdf5/hdf5-1.10.6/src/
H A DH5HP.c354 new_heap->type=heap_type; in H5HP_create()
355 new_heap->nobjs=0; in H5HP_create()
363 new_heap->heap[0].val=INT_MIN; in H5HP_create()
364 new_heap->heap[0].obj=NULL; in H5HP_create()
371 new_heap->heap[0].obj=NULL; in H5HP_create()
375 ret_value=new_heap; in H5HP_create()
380 if(NULL != new_heap) { in H5HP_create()
382 new_heap->heap = H5FL_SEQ_FREE(H5HP_ent_t, new_heap->heap); in H5HP_create()
383 new_heap = H5FL_FREE(H5HP_t, new_heap); in H5HP_create()
483 if (!new_heap) in H5HP_insert()
[all …]
/dports/math/vtk8/VTK-8.2.0/ThirdParty/hdf5/vtkhdf5/src/
H A DH5HP.c354 new_heap->type=heap_type; in H5HP_create()
355 new_heap->nobjs=0; in H5HP_create()
363 new_heap->heap[0].val=INT_MIN; in H5HP_create()
364 new_heap->heap[0].obj=NULL; in H5HP_create()
371 new_heap->heap[0].obj=NULL; in H5HP_create()
375 ret_value=new_heap; in H5HP_create()
380 if(NULL != new_heap) { in H5HP_create()
382 new_heap->heap = H5FL_SEQ_FREE(H5HP_ent_t, new_heap->heap); in H5HP_create()
383 new_heap = H5FL_FREE(H5HP_t, new_heap); in H5HP_create()
483 if (!new_heap) in H5HP_insert()
[all …]
/dports/math/vtk6/VTK-6.2.0/ThirdParty/hdf5/vtkhdf5/src/
H A DH5HP.c356 new_heap->type=heap_type; in H5HP_create()
357 new_heap->nobjs=0; in H5HP_create()
365 new_heap->heap[0].val=INT_MIN; in H5HP_create()
366 new_heap->heap[0].obj=NULL; in H5HP_create()
373 new_heap->heap[0].obj=NULL; in H5HP_create()
377 ret_value=new_heap; in H5HP_create()
382 if(NULL != new_heap) { in H5HP_create()
384 new_heap->heap = H5FL_SEQ_FREE(H5HP_ent_t, new_heap->heap); in H5HP_create()
385 new_heap = H5FL_FREE(H5HP_t, new_heap); in H5HP_create()
485 if (!new_heap) in H5HP_insert()
[all …]
/dports/devel/arm-none-eabi-newlib/newlib-2.4.0/libgloss/m68k/
H A Dcf-sbrk.c35 char *new_heap = heap + nbytes; in sbrk() local
43 if (nbytes < 0 || (long)(end - new_heap) < 0) in sbrk()
48 heap = new_heap; in sbrk()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/libjava/java/util/
H A DTimer.java115 TimerTask new_heap[] = new TimerTask[heap.length * 2]; in add() local
116 System.arraycopy(heap, 0, new_heap, 0, heap.length); in add()
117 heap = new_heap; in add()
134 TimerTask new_heap[] = new TimerTask[heap.length / 2]; in remove() local
135 System.arraycopy(heap, 0, new_heap, 0, elements + 1); in remove()
136 heap = new_heap; in remove()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/libjava/java/util/
H A DTimer.java115 TimerTask new_heap[] = new TimerTask[heap.length * 2];
116 System.arraycopy(heap, 0, new_heap, 0, heap.length);
117 heap = new_heap;
134 TimerTask new_heap[] = new TimerTask[heap.length / 2];
135 System.arraycopy(heap, 0, new_heap, 0, elements + 1);
136 heap = new_heap;
/dports/devel/systemc/systemc-2.3.4_pub_rev_20190614/src/sysc/utils/
H A Dsc_pq.cpp80 void** new_heap = new void*[m_size_alloc + 1]; in insert() local
82 new_heap[j] = m_heap[j]; in insert()
85 m_heap = new_heap; in insert()
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/java/util/
H A DTimer.java115 TimerTask new_heap[] = new TimerTask[heap.length * 2]; in add() local
116 System.arraycopy(heap, 0, new_heap, 0, heap.length); in add()
117 heap = new_heap; in add()
134 TimerTask new_heap[] = new TimerTask[heap.length / 2]; in remove() local
135 System.arraycopy(heap, 0, new_heap, 0, elements + 1); in remove()
136 heap = new_heap; in remove()
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/java/util/
H A DTimer.java115 TimerTask new_heap[] = new TimerTask[heap.length * 2]; in add() local
116 System.arraycopy(heap, 0, new_heap, 0, heap.length); in add()
117 heap = new_heap; in add()
134 TimerTask new_heap[] = new TimerTask[heap.length / 2]; in remove() local
135 System.arraycopy(heap, 0, new_heap, 0, elements + 1); in remove()
136 heap = new_heap; in remove()
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/java/util/
H A DTimer.java115 TimerTask new_heap[] = new TimerTask[heap.length * 2]; in add() local
116 System.arraycopy(heap, 0, new_heap, 0, heap.length); in add()
117 heap = new_heap; in add()
134 TimerTask new_heap[] = new TimerTask[heap.length / 2]; in remove() local
135 System.arraycopy(heap, 0, new_heap, 0, elements + 1); in remove()
136 heap = new_heap; in remove()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/java/util/
H A DTimer.java115 TimerTask new_heap[] = new TimerTask[heap.length * 2]; in add() local
116 System.arraycopy(heap, 0, new_heap, 0, heap.length); in add()
117 heap = new_heap; in add()
134 TimerTask new_heap[] = new TimerTask[heap.length / 2]; in remove() local
135 System.arraycopy(heap, 0, new_heap, 0, elements + 1); in remove()
136 heap = new_heap; in remove()
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/java/util/
H A DTimer.java115 TimerTask new_heap[] = new TimerTask[heap.length * 2]; in add() local
116 System.arraycopy(heap, 0, new_heap, 0, heap.length); in add()
117 heap = new_heap; in add()
134 TimerTask new_heap[] = new TimerTask[heap.length / 2]; in remove() local
135 System.arraycopy(heap, 0, new_heap, 0, elements + 1); in remove()
136 heap = new_heap; in remove()
/dports/java/sablevm-classpath/sablevm-classpath-1.13/java/util/
H A DTimer.java115 TimerTask new_heap[] = new TimerTask[heap.length * 2]; in add() local
116 System.arraycopy(heap, 0, new_heap, 0, heap.length); in add()
117 heap = new_heap; in add()
134 TimerTask new_heap[] = new TimerTask[heap.length / 2]; in remove() local
135 System.arraycopy(heap, 0, new_heap, 0, elements + 1); in remove()
136 heap = new_heap; in remove()
/dports/editors/emacs-devel/emacs-4d1968b/src/
H A Dralloc.c244 heap_ptr new_heap = (heap_ptr) MEM_ROUNDUP (new); in obtain() local
250 new_heap->start = new; in obtain()
251 new_heap->end = bloc_start; in obtain()
252 new_heap->bloc_start = bloc_start; in obtain()
253 new_heap->free = bloc_start; in obtain()
254 new_heap->next = NIL_HEAP; in obtain()
255 new_heap->prev = last_heap; in obtain()
256 new_heap->first_bloc = NIL_BLOC; in obtain()
257 new_heap->last_bloc = NIL_BLOC; in obtain()
258 last_heap->next = new_heap; in obtain()
[all …]
/dports/editors/emacs/emacs-27.2/src/
H A Dralloc.c244 heap_ptr new_heap = (heap_ptr) MEM_ROUNDUP (new); in obtain() local
250 new_heap->start = new; in obtain()
251 new_heap->end = bloc_start; in obtain()
252 new_heap->bloc_start = bloc_start; in obtain()
253 new_heap->free = bloc_start; in obtain()
254 new_heap->next = NIL_HEAP; in obtain()
255 new_heap->prev = last_heap; in obtain()
256 new_heap->first_bloc = NIL_BLOC; in obtain()
257 new_heap->last_bloc = NIL_BLOC; in obtain()
258 last_heap->next = new_heap; in obtain()
[all …]
/dports/textproc/bibtool/BibTool/
H A Drecord.c73 register Symbol *new_heap, /* */ local
78 || (new_heap=(Symbol*)malloc(sizeof(Symbol)*(size_t)RecordFree(rec)))/* */
93 RecordHeap(new) = new_heap; /* */
98 { *(new_heap++) = *(old_heap++); } /* */
116 register Symbol *new_heap; /* */ local
121 || (new_heap=(Symbol*)malloc(sizeof(Symbol)*(size_t)(size)))/* */
134 RecordHeap(new) = new_heap; /* */
136 { *(new_heap++) = NO_SYMBOL; } /* */
/dports/lang/mosml/mosml-ver-2.10.1/src/runtime/
H A Dminor_gc.c27 char *new_heap; in set_minor_heap_size() local
35 new_heap = (char *) stat_alloc (size); in set_minor_heap_size()
39 young_start = new_heap; in set_minor_heap_size()
40 young_end = new_heap + size; in set_minor_heap_size()
/dports/german/BBBike/BBBike-3.18/ext/Strassen-Inline/
H A Dheap.c93 void **new_heap; in heap_resize() local
96 new_heap = (void **)realloc(ctx->heap, in heap_resize()
98 if (new_heap == NULL) { in heap_resize()
102 ctx->heap = new_heap; in heap_resize()
/dports/comms/sms_client/sms_client-3.0.2/src/parser/
H A Dgs_token.c805 *new_heap, in dup_heap() local
823 new_heap = generate_new_heap(); in dup_heap()
832 identifier = add_token(new_heap, token->str, token->type, TP_NULL, NULL); in dup_heap()
838 new_token = add_token(new_heap, str, T_STRING, TP_NULL, NULL); in dup_heap()
839 str = get_token_strvalue(new_heap, new_token); in dup_heap()
841 token_assign_strvalue(new_heap, identifier, str); in dup_heap()
849 token_assign_list(new_heap, identifier, list); in dup_heap()
857 return new_heap; in dup_heap()
/dports/dns/libbind/libbind-6.0/isc/
H A Dheap.c92 void **new_heap; in heap_resize() local
95 new_heap = (void **)realloc(ctx->heap, in heap_resize()
97 if (new_heap == NULL) { in heap_resize()
101 ctx->heap = new_heap; in heap_resize()
/dports/lang/ocaml/ocaml-4.05.0/byterun/
H A Dminor_gc.c133 char *new_heap; in caml_set_minor_heap_size() local
147 new_heap = caml_aligned_malloc(bsz, 0, &new_heap_base); in caml_set_minor_heap_size()
148 if (new_heap == NULL) caml_raise_out_of_memory(); in caml_set_minor_heap_size()
149 if (caml_page_table_add(In_young, new_heap, new_heap + bsz) != 0) in caml_set_minor_heap_size()
157 caml_young_start = (value *) new_heap; in caml_set_minor_heap_size()
158 caml_young_end = (value *) (new_heap + bsz); in caml_set_minor_heap_size()
/dports/lang/ocaml-nox11/ocaml-4.05.0/byterun/
H A Dminor_gc.c133 char *new_heap; in caml_set_minor_heap_size() local
147 new_heap = caml_aligned_malloc(bsz, 0, &new_heap_base); in caml_set_minor_heap_size()
148 if (new_heap == NULL) caml_raise_out_of_memory(); in caml_set_minor_heap_size()
149 if (caml_page_table_add(In_young, new_heap, new_heap + bsz) != 0) in caml_set_minor_heap_size()
157 caml_young_start = (value *) new_heap; in caml_set_minor_heap_size()
158 caml_young_end = (value *) (new_heap + bsz); in caml_set_minor_heap_size()

12345678