Home
last modified time | relevance | path

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

/external/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()
/external/markdown/markdown/extensions/
Dtoc.py68 newlist = etree.Element("ul")
70 last_li.append(newlist)
72 list_stack[-1].append(newlist)
73 list_stack.append(newlist)
/external/libcups/man/
Dmantohtml.c628 const char *newlist = NULL; /* New list style */ in main() local
644 newlist = "ul"; in main()
652 newlist = "ol"; in main()
660 newlist = "ol"; in main()
669 newlist = "ol"; in main()
681 if (newlist && list && strcmp(newlist, list)) in main()
687 if (newlist && !list) in main()
690 fprintf(outfile, "<%s type=\"%s\">\n", newlist, newtype); in main()
692 fprintf(outfile, "<%s>\n", newlist); in main()
694 list = newlist; in main()
/external/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()
/external/e2fsprogs/lib/support/
Dprofile_helpers.c92 char **newlist; in add_to_list() local
97 newlist = realloc(list->list, newmax * sizeof(char *)); in add_to_list()
98 if (newlist == 0) in add_to_list()
101 list->list = newlist; in add_to_list()
/external/dnsmasq/src/
Doption.c1248 struct server *serv, *newlist = NULL; in one_opt() local
1264 serv->next = newlist; in one_opt()
1265 newlist = serv; in one_opt()
1270 if (!newlist) { in one_opt()
1276 newlist = opt_malloc(sizeof(struct server)); in one_opt()
1277 memset(newlist, 0, sizeof(struct server)); in one_opt()
1281 newlist->flags |= SERV_LITERAL_ADDRESS; in one_opt()
1282 if (!(newlist->flags & SERV_TYPE)) option = '?'; in one_opt()
1286 newlist->flags |= SERV_NO_ADDR; /* no server */ in one_opt()
1287 if (newlist->flags & SERV_LITERAL_ADDRESS) option = '?'; in one_opt()
[all …]
/external/javassist/src/main/javassist/bytecode/
DAnnotationsAttribute.java227 Annotation[] newlist = new Annotation[annotations.length + 1]; in addAnnotation() local
228 System.arraycopy(annotations, 0, newlist, 0, annotations.length); in addAnnotation()
229 newlist[annotations.length] = annotation; in addAnnotation()
230 setAnnotations(newlist); in addAnnotation()
246 Annotation[] newlist = new Annotation[annotations.length - 1]; in removeAnnotation() local
247 System.arraycopy(annotations, 0, newlist, 0, i); in removeAnnotation()
249 System.arraycopy(annotations, i + 1, newlist, i, in removeAnnotation()
252 setAnnotations(newlist); in removeAnnotation()
/external/curl/src/
Dtool_paramhlp.c472 struct curl_slist *newlist = curl_slist_append(*list, ptr); in add2list() local
473 if(newlist) in add2list()
474 *list = newlist; in add2list()
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c480 struct rc_constant * newlist; in add_constant() local
484 newlist = malloc(sizeof(struct rc_constant) * constants->_Reserved); in add_constant()
486 memcpy(newlist, constants->Constants, in add_constant()
492 constants->Constants = newlist; in add_constant()
/external/antlr/runtime/C/src/
Dantlr3tokenstream.c773 pANTLR3_LIST newlist; in getTokensList() local
777 newlist = tokenStream->getTokensSet(tokenStream, start, stop, bitSet); in getTokensList()
781 return newlist; in getTokensList()
789 pANTLR3_LIST newlist; in getTokensType() local
792 newlist = tokenStream->getTokensSet(tokenStream, start, stop, bitSet); in getTokensType()
796 return newlist; in getTokensType()
/external/python/cpython3/Modules/
D_asynciomodule.c979 PyObject *newlist; in _asyncio_Future_remove_done_callback() local
1024 newlist = PyList_New(len); in _asyncio_Future_remove_done_callback()
1025 if (newlist == NULL) { in _asyncio_Future_remove_done_callback()
1036 PyList_SET_ITEM(newlist, j, item); in _asyncio_Future_remove_done_callback()
1040 ret = PyList_Append(newlist, item); in _asyncio_Future_remove_done_callback()
1050 Py_DECREF(newlist); in _asyncio_Future_remove_done_callback()
1055 Py_SET_SIZE(newlist, j); in _asyncio_Future_remove_done_callback()
1057 j = PyList_GET_SIZE(newlist); in _asyncio_Future_remove_done_callback()
1060 if (PyList_SetSlice(self->fut_callbacks, 0, len, newlist) < 0) { in _asyncio_Future_remove_done_callback()
1064 Py_DECREF(newlist); in _asyncio_Future_remove_done_callback()
[all …]
/external/libwebsockets/plugins/
Dprotocol_esp32_lws_scan.c271 struct lws_wifi_scan *newlist, **pworst, *pp1; in lws_wifi_scan_insert_trim() local
311 newlist = NULL; in lws_wifi_scan_insert_trim()
330 pp1->next = newlist; in lws_wifi_scan_insert_trim()
331 newlist = pp1; in lws_wifi_scan_insert_trim()
335 *list = newlist; in lws_wifi_scan_insert_trim()
/external/python/cpython3/Python/
Dbltinmodule.c2220 PyObject *newlist, *v, *seq, *callable; in builtin_sorted() local
2227 newlist = PySequence_List(seq); in builtin_sorted()
2228 if (newlist == NULL) in builtin_sorted()
2231 callable = _PyObject_GetAttrId(newlist, &PyId_sort); in builtin_sorted()
2233 Py_DECREF(newlist); in builtin_sorted()
2241 Py_DECREF(newlist); in builtin_sorted()
2245 return newlist; in builtin_sorted()
/external/linux-kselftest/tools/testing/selftests/tc-testing/
Dtdc.py595 newlist = list()
600 newlist = list(filter(lambda x: x['id'] in target_ids, testlist))
601 return newlist
/external/python/cpython2/Python/
Dbltinmodule.c2230 PyObject *newlist, *v, *seq, *compare=NULL, *keyfunc=NULL, *newargs; in builtin_sorted() local
2240 newlist = PySequence_List(seq); in builtin_sorted()
2241 if (newlist == NULL) in builtin_sorted()
2244 callable = PyObject_GetAttrString(newlist, "sort"); in builtin_sorted()
2246 Py_DECREF(newlist); in builtin_sorted()
2252 Py_DECREF(newlist); in builtin_sorted()
2261 Py_DECREF(newlist); in builtin_sorted()
2265 return newlist; in builtin_sorted()
/external/python/cpython2/Lib/plat-mac/
DEasyDialogs.py557 newlist = []
575 newlist.append(item)
576 return newlist
/external/autotest/site_utils/
Dlab_inventory.py1190 newlist = []
1192 newlist.extend([email.strip() for email in arg.split(',')])
1193 return newlist
/external/antlr/runtime/Cpp/include/
Dantlr3tokenstream.inl717 const IntListType& list, TokensListType& newlist) argument
722 this->getTokensSet(start, stop, bitSet, newlist);
729 TokensListType& newlist ) argument
734 this->getTokensSet(start, stop, bitSet, newlist);
/external/arm-optimized-routines/math/tools/
Dremez.jl572 newlist = vcat(oldlist, [(x,y)])
573 candidate = (newscore, newlist)
/external/llvm-project/libc/AOR_v20.02/math/tools/
Dremez.jl573 newlist = vcat(oldlist, [(x,y)])
574 candidate = (newscore, newlist)