Home
last modified time | relevance | path

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

/external/elfutils/0.153/libdw/
Ddwarf_entry_breakpoints.c69 Dwarf_Addr *newlist = realloc (*bkpts, ++nbkpts * sizeof newlist[0]); local
70 if (newlist == NULL)
77 newlist[nbkpts - 1] = pc;
78 *bkpts = newlist;
/external/libmtp/src/
Dplaylist-spl.c263 LIBMTP_playlist_t * const newlist) in update_spl_playlist() argument
265 IF_DEBUG() printf("pl->name='%s'\n",newlist->name); in update_spl_playlist()
268 LIBMTP_playlist_t * old = LIBMTP_Get_Playlist(device, newlist->playlist_id); in update_spl_playlist()
277 if(old->no_tracks != newlist->no_tracks) in update_spl_playlist()
279 for(i=0;i<newlist->no_tracks && delta==0;i++) { in update_spl_playlist()
280 if(old->tracks[i] != newlist->tracks[i]) in update_spl_playlist()
293 if(strcmp(old->name,newlist->name) == 0) in update_spl_playlist()
296 printf("name is changing too -> %s\n",newlist->name); in update_spl_playlist()
299 return LIBMTP_Create_New_Playlist(device, newlist); in update_spl_playlist()
304 if(strcmp(old->name,newlist->name) != 0) { in update_spl_playlist()
[all …]
Dplaylist-spl.h33 LIBMTP_playlist_t * const newlist);
Dlibmtp.c2684 LIBMTP_devicestorage_t *oldhead, *ptr1, *ptr2, *newlist; in sort_storage_by() local
2693 newlist = NULL; in sort_storage_by()
2727 if(newlist == NULL) { in sort_storage_by()
2728 newlist = ptr2; in sort_storage_by()
2729 newlist->prev = NULL; in sort_storage_by()
2731 ptr2->prev = newlist; in sort_storage_by()
2732 newlist->next = ptr2; in sort_storage_by()
2733 newlist = newlist->next; in sort_storage_by()
2737 if (newlist != NULL) { in sort_storage_by()
2738 newlist->next = NULL; in sort_storage_by()
[all …]
/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/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/chromium_org/third_party/mesa/src/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/e2fsck/
Dprofile_helpers.c90 char **newlist; in add_to_list() local
95 newlist = realloc(list->list, newmax * sizeof(char *)); in add_to_list()
96 if (newlist == 0) in add_to_list()
99 list->list = newlist; in add_to_list()
/external/dnsmasq/src/
Doption.c1388 struct server *serv, *newlist = NULL; in one_opt() local
1406 serv->next = newlist; in one_opt()
1407 newlist = serv; in one_opt()
1412 if (!newlist) in one_opt()
1421 newlist = opt_malloc(sizeof(struct server)); in one_opt()
1422 memset(newlist, 0, sizeof(struct server)); in one_opt()
1427 newlist->flags |= SERV_LITERAL_ADDRESS; in one_opt()
1428 if (!(newlist->flags & SERV_TYPE)) in one_opt()
1434 newlist->flags |= SERV_NO_ADDR; /* no server */ in one_opt()
1435 if (newlist->flags & SERV_LITERAL_ADDRESS) in one_opt()
[all …]
/external/dhcpcd/
Dif-options.c134 char **newlist; in add_environ() local
165 newlist = xrealloc(lst, sizeof(char *) * (i + 2)); in add_environ()
166 newlist[i] = xstrdup(value); in add_environ()
167 newlist[i + 1] = NULL; in add_environ()
168 ifo->environ = newlist; in add_environ()
170 return newlist[i]; in add_environ()
/external/javassist/src/main/javassist/bytecode/
DAnnotationsAttribute.java209 Annotation[] newlist = new Annotation[annotations.length + 1]; in addAnnotation() local
210 System.arraycopy(annotations, 0, newlist, 0, annotations.length); in addAnnotation()
211 newlist[annotations.length] = annotation; in addAnnotation()
212 setAnnotations(newlist); in addAnnotation()
/external/antlr/antlr-3.4/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/chromium_org/third_party/cython/src/Cython/Compiler/
DVisitor.py244 newlist = []
248 newlist += x
250 newlist.append(x)
251 setattr(parent, attr, newlist)
/external/valgrind/main/coregrind/m_debuginfo/
DUNUSED_STABS.txt712 Variable **newlist, Variable **newlistend) {
743 if (*newlist == NULL)
744 *newlist = *newlistend = v;
841 Variable *newlist = NULL, *newlistend = NULL;
888 (f->size + 7) / 8, var, &numvars, &created, &newlist,
945 &numvars, &created, &newlist, &newlistend))
958 -1, var, &numvars, &created, &newlist, &newlistend))
992 freed += free_varlist(newlist);
993 newlist = newlistend = NULL;
996 list = newlist;
/external/chromium_org/third_party/libxslt/libxslt/
Dpattern.c545 xmlXPathObjectPtr newlist; in xsltTestCompMatchDirect() local
560 newlist = xmlXPathEval(comp->pattern, ctxt->xpathCtxt); in xsltTestCompMatchDirect()
565 if (newlist == NULL) in xsltTestCompMatchDirect()
567 if (newlist->type != XPATH_NODESET) { in xsltTestCompMatchDirect()
568 xmlXPathFreeObject(newlist); in xsltTestCompMatchDirect()
579 list = newlist; in xsltTestCompMatchDirect()
590 list = newlist; in xsltTestCompMatchDirect()
/external/libmtp/
DChangeLog34 changed to "priv" and "newlist" making C++ happy.