Searched refs:listp (Results 1 - 25 of 106) sorted by relevance

12345

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dlists.c45 free_list (rtx *listp, rtx *unused_listp) argument
49 prev_link = *listp;
65 *unused_listp = *listp;
66 *listp = 0;
72 find_list_elem (rtx elem, rtx *listp) argument
74 while (XEXP (*listp, 0) != elem)
75 listp = &XEXP (*listp, 1);
76 return listp;
81 remove_list_node (rtx *listp) argument
93 remove_list_elem(rtx elem, rtx *listp) argument
151 free_EXPR_LIST_list(rtx *listp) argument
160 free_INSN_LIST_list(rtx *listp) argument
187 remove_free_INSN_LIST_elem(rtx elem, rtx *listp) argument
194 remove_free_INSN_LIST_node(rtx *listp) argument
207 remove_free_EXPR_LIST_node(rtx *listp) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dlists.c46 free_list (rtx *listp, rtx *unused_listp) argument
50 prev_link = *listp;
60 *unused_listp = *listp;
61 *listp = 0;
110 free_EXPR_LIST_list (rtx *listp) argument
112 if (*listp == 0)
114 free_list (listp, &unused_expr_list);
119 free_INSN_LIST_list (rtx *listp) argument
121 if (*listp == 0)
123 free_list (listp,
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/contrib/zkt/
H A Drollover.h58 extern int ksk5011status (dki_t **listp, const char *dir, const char *domain, const zconf_t *z);
60 extern int zskstatus (dki_t **listp, const char *dir, const char *domain, const zconf_t *z);
H A Dzone.h59 extern void zone_freelist (zone_t **listp);
64 extern int zone_readdir (const char *dir, const char *zone, const char *zfile, zone_t **listp, const zconf_t *conf, int dyn_zone);
H A Drollover.c67 static dki_t *genkey (dki_t **listp, const char *dir, const char *domain, int ksk, const zconf_t *conf, int status) argument
71 if ( listp == NULL || domain == NULL )
78 dki_add (listp, dkp);
84 static dki_t *genkey2 (dki_t **listp, const char *dir, const char *domain, int ksk, const zconf_t *conf, int status) argument
88 if ( listp == NULL || domain == NULL )
95 dki_add (listp, dkp);
366 int ksk5011status (dki_t **listp, const char *dir, const char *domain, const zconf_t *z) argument
376 assert ( listp != NULL );
391 for ( dkp = *listp; dkp && dki_isksk (dkp); dkp = dkp->next )
406 *listp
534 zskstatus(dki_t **listp, const char *dir, const char *domain, const zconf_t *z) argument
[all...]
H A Dzone.c120 void zone_freelist (zone_t **listp) argument
125 assert (listp != NULL);
127 curr = *listp;
134 if ( *listp )
135 *listp = NULL;
197 int zone_readdir (const char *dir, const char *zone, const char *zfile, zone_t **listp, const zconf_t *conf, int dyn_zone) argument
263 zone_new (listp, zone, dir, zfile, signed_ext, conf);
H A Dzkt-ls.c128 static int parsedirectory (const char *dir, dki_t **listp, int sub_before);
129 static void parsefile (const char *file, dki_t **listp, int sub_before);
366 static int parsedirectory (const char *dir, dki_t **listp, int sub_before) argument
390 parsedirectory (path, listp, sub_before);
397 dki_tadd (listp, dkp, sub_before);
399 dki_add (listp, dkp);
407 static void parsefile (const char *file, dki_t **listp, int sub_before) argument
419 dki_tadd (listp, dkp, sub_before); /* ... and add to tree */
421 dki_add (listp, dkp); /* ... and add to list */
/netbsd-6-1-5-RELEASE/sys/dev/raidframe/
H A Drf_sstf.h51 RF_AllocListElem_t * cl_list, RF_ShutdownList_t ** listp);
54 RF_AllocListElem_t * cl_list, RF_ShutdownList_t ** listp);
57 RF_AllocListElem_t * cl_list, RF_ShutdownList_t ** listp);
H A Drf_callback.c61 rf_ConfigureCallback(RF_ShutdownList_t **listp) argument
66 rf_ShutdownCreate(listp, rf_ShutdownCallback, NULL);
H A Drf_callback.h57 int rf_ConfigureCallback(RF_ShutdownList_t ** listp);
H A Drf_shutdown.c60 _rf_ShutdownCreate(RF_ShutdownList_t **listp, void (*cleanup)(void *arg), argument
64 _rf_ShutdownCreate(RF_ShutdownList_t **listp, void (*cleanup)(void *arg),
84 ent->next = *listp;
85 *listp = ent;
H A Drf_mcpair.c62 rf_ConfigureMCPair(RF_ShutdownList_t **listp) argument
67 rf_ShutdownCreate(listp, rf_ShutdownMCPair, NULL);
H A Drf_alloclist.h51 int rf_ConfigureAllocList(RF_ShutdownList_t ** listp);
H A Drf_copyback.h54 int rf_ConfigureCopyback(RF_ShutdownList_t ** listp);
H A Drf_fifo.h52 RF_AllocListElem_t * clList, RF_ShutdownList_t ** listp);
H A Drf_mcpair.h48 int rf_ConfigureMCPair(RF_ShutdownList_t ** listp);
H A Drf_cvscan.h75 RF_AllocListElem_t * cl_list, RF_ShutdownList_t ** listp);
H A Drf_declusterPQ.h35 rf_ConfigureDeclusteredPQ(RF_ShutdownList_t ** listp, RF_Raid_t * raidPtr,
H A Drf_raid5_rotatedspare.h35 rf_ConfigureRAID5_RS(RF_ShutdownList_t ** listp, RF_Raid_t * raidPtr,
H A Drf_chaindecluster.h38 rf_ConfigureChainDecluster(RF_ShutdownList_t ** listp, RF_Raid_t * raidPtr,
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/named/include/named/
H A Dlwsearch.h63 ns_lwsearchlist_create(isc_mem_t *mctx, ns_lwsearchlist_t **listp);
75 ns_lwsearchlist_detach(ns_lwsearchlist_t **listp);
H A Dlistenlist.h91 ns_listenlist_detach(ns_listenlist_t **listp);
93 * Detach 'listp'.
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/contrib/idn/idnkit-1.0-src/include/idn/
H A Daliaslist.h65 idn__aliaslist_create(idn__aliaslist_t *listp);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/named/
H A Dlwsearch.c43 ns_lwsearchlist_create(isc_mem_t *mctx, ns_lwsearchlist_t **listp) { argument
48 REQUIRE(listp != NULL && *listp == NULL);
65 *listp = list;
84 ns_lwsearchlist_detach(ns_lwsearchlist_t **listp) { argument
88 REQUIRE(listp != NULL);
89 list = *listp;
97 *listp = NULL;
H A Dlistenlist.c95 ns_listenlist_detach(ns_listenlist_t **listp) { argument
96 ns_listenlist_t *list = *listp;
101 *listp = NULL;

Completed in 216 milliseconds

12345