Searched refs:new_list (Results 1 - 8 of 8) sorted by relevance

/openjdk9/langtools/test/tools/javac/defaultMethods/
H A DPos01.java54 MyList<T> new_list = new MyList<T>();
56 new_list.add(mapper.map(el));
58 return new_list;
/openjdk9/jdk/src/java.desktop/unix/native/libawt_xawt/awt/
H A Dlist.c121 list_ptr new_list () function
151 list_ptr new_list; local
153 if ((new_list = (list_ptr) malloc( sizeof( list_item))) == NULL) {
157 new_list->next = start_at_curr ? lp->ptr.curr : lp->next;
158 new_list->ptr.curr = lp->ptr.curr;
160 return new_list;
222 with new_list(). If free_items is true, each item pointed to
H A Dlist.h103 list_ptr new_list (
H A DmultiVis.c142 extern list_ptr new_list();
801 image_regions = new_list();
/openjdk9/hotspot/src/os/aix/vm/
H A Dloadlib_aix.cpp192 entry_t* new_list = NULL; local
279 add_entry_to_list(e, &new_list);
293 g_first = new_list;
294 new_list = NULL;
300 if (new_list) {
301 free_entry_list(&new_list);
/openjdk9/jdk/src/java.desktop/share/native/libsplashscreen/libpng/
H A Dpngset.c1355 png_bytep new_list; local
1440 new_list = png_voidcast(png_bytep, png_malloc(png_ptr,
1444 memcpy(new_list, png_ptr->chunk_list, 5*old_num_chunks);
1448 new_list = png_ptr->chunk_list;
1451 new_list = NULL;
1458 if (new_list != NULL)
1466 old_num_chunks = add_one_chunk(new_list, old_num_chunks,
1472 for (i=0, inlist=outlist=new_list; i<old_num_chunks; ++i, inlist += 5)
1486 if (png_ptr->chunk_list != new_list)
1487 png_free(png_ptr, new_list);
[all...]
/openjdk9/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp164 BasicHashtableEntry<F>* new_list = NULL; local
168 p->set_next(new_list);
169 new_list = p;
172 *bucket_addr(i) = new_list;
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp1609 IntervalList* new_list = _new_intervals_from_allocation; local
1611 int new_len = new_list->length();
1620 new_list->sort(interval_cmp);
1629 if (new_idx >= new_len || (old_idx < old_len && old_list->at(old_idx)->from() <= new_list->at(new_idx)->from())) {
1633 combined_list->at_put(old_idx + new_idx, new_list->at(new_idx));

Completed in 129 milliseconds