Home
last modified time | relevance | path

Searched refs:newlist (Results 1 – 11 of 11) sorted by relevance

/third_party/ltp/tools/sparse/sparse-src/
Dptrlist.c238 struct ptr_list *newlist = __alloc_ptrlist(0); in split_ptr_list_head() local
243 newlist->next = next; in split_ptr_list_head()
244 next->prev = newlist; in split_ptr_list_head()
245 newlist->prev = head; in split_ptr_list_head()
246 head->next = newlist; in split_ptr_list_head()
247 newlist->nr = nr; in split_ptr_list_head()
248 memcpy(newlist->list, head->list + old, nr * sizeof(void *)); in split_ptr_list_head()
268 struct ptr_list *newlist = __alloc_ptrlist(0); in __add_ptr_list() local
270 newlist->next = newlist; in __add_ptr_list()
271 newlist->prev = newlist; in __add_ptr_list()
[all …]
/third_party/openssl/Configurations/
Dgentemplate.pm91 my @newlist = ();
102 push @newlist, $item, @resolved;
104 print STDERR "DEBUG[collectdepends] $thing < ", join(' ', @newlist), "\n"
106 @newlist;
159 my @newlist = ();
172 push @newlist, $item;
175 @newlist = map { $replace{$_} // $_; } @newlist;
176 print STDERR "DEBUG[reducedepends]< ", join(' ', @newlist), "\n"
178 @newlist;
/third_party/elfutils/libdw/
Ddwarf_entry_breakpoints.c41 Dwarf_Addr *newlist = realloc (*bkpts, ++(*pnbkpts) * sizeof newlist[0]); in add_bkpt() local
42 if (newlist == NULL) in add_bkpt()
49 newlist[*pnbkpts - 1] = pc; in add_bkpt()
50 *bkpts = newlist; in add_bkpt()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_code.c64 struct rc_constant * newlist; in rc_constants_add() local
70 newlist = malloc(sizeof(struct rc_constant) * c->_Reserved); in rc_constants_add()
71 memcpy(newlist, c->Constants, sizeof(struct rc_constant) * c->Count); in rc_constants_add()
74 c->Constants = newlist; in rc_constants_add()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c481 struct rc_constant * newlist; in add_constant() local
485 newlist = malloc(sizeof(struct rc_constant) * constants->_Reserved); in add_constant()
487 memcpy(newlist, constants->Constants, in add_constant()
493 constants->Constants = newlist; in add_constant()
/third_party/python/Modules/
D_asynciomodule.c981 PyObject *newlist; in _asyncio_Future_remove_done_callback() local
1026 newlist = PyList_New(len); in _asyncio_Future_remove_done_callback()
1027 if (newlist == NULL) { in _asyncio_Future_remove_done_callback()
1038 PyList_SET_ITEM(newlist, j, item); in _asyncio_Future_remove_done_callback()
1042 ret = PyList_Append(newlist, item); in _asyncio_Future_remove_done_callback()
1052 Py_DECREF(newlist); in _asyncio_Future_remove_done_callback()
1057 Py_SET_SIZE(newlist, j); in _asyncio_Future_remove_done_callback()
1059 j = PyList_GET_SIZE(newlist); in _asyncio_Future_remove_done_callback()
1062 if (PyList_SetSlice(self->fut_callbacks, 0, len, newlist) < 0) { in _asyncio_Future_remove_done_callback()
1066 Py_DECREF(newlist); in _asyncio_Future_remove_done_callback()
[all …]
/third_party/node/lib/
Ddgram.js496 const newlist = new Array(list.length);
501 newlist[i] = Buffer.from(buf);
505 newlist[i] = Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength);
508 return newlist;
/third_party/FreeBSD/sys/kern/
Dsubr_bus.c948 device_t *newlist, *oldlist; in devclass_alloc_unit() local
953 newlist = bsd_malloc(sizeof(device_t) * newsize, M_BUS, M_NOWAIT); in devclass_alloc_unit()
954 PDEBUG(("oldlist %p, newlist %p, newsize %d", oldlist, newlist, newsize)); in devclass_alloc_unit()
955 if (!newlist) in devclass_alloc_unit()
959 … (void)memcpy_s(newlist, sizeof(device_t) * dc->maxunit, oldlist, sizeof(device_t) * dc->maxunit); in devclass_alloc_unit()
961 (void)memset_s(newlist + dc->maxunit, sizeof(device_t) * (newsize - dc->maxunit), 0, in devclass_alloc_unit()
963 dc->devices = newlist; in devclass_alloc_unit()
/third_party/python/Python/
Dbltinmodule.c2338 PyObject *newlist, *v, *seq, *callable; in builtin_sorted() local
2345 newlist = PySequence_List(seq); in builtin_sorted()
2346 if (newlist == NULL) in builtin_sorted()
2349 callable = _PyObject_GetAttrId(newlist, &PyId_sort); in builtin_sorted()
2351 Py_DECREF(newlist); in builtin_sorted()
2359 Py_DECREF(newlist); in builtin_sorted()
2363 return newlist; in builtin_sorted()
/third_party/optimized-routines/math/tools/
Dremez.jl572 newlist = vcat(oldlist, [(x,y)])
573 candidate = (newscore, newlist)
/third_party/gstreamer/gstplugins_good/gst/avi/
Dgstavimux.c328 GSList *node, *newlist = NULL; in gst_avi_mux_reset() local
340 newlist = g_slist_append (newlist, avipad); in gst_avi_mux_reset()
349 avimux->sinkpads = newlist; in gst_avi_mux_reset()