| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
| D | slist | 39 /** @file ext/slist 287 class slist : private _Slist_base<_Tp,_Alloc> 358 slist(const allocator_type& __a = allocator_type()) 361 slist(size_type __n, const value_type& __x, 367 slist(size_type __n) 374 slist(_InputIterator __first, _InputIterator __last, 379 slist(const slist& __x) 383 slist& 384 operator= (const slist& __x); 386 ~slist() {} [all …]
|
| /netbsd/src/crypto/external/bsd/openssl/dist/crypto/ |
| D | mem_sec.c | 614 ossl_ssize_t list, slist; in sh_malloc() local 628 for (slist = list; slist >= 0; slist--) in sh_malloc() 629 if (sh.freelist[slist] != NULL) in sh_malloc() 631 if (slist < 0) in sh_malloc() 635 while (slist != list) { in sh_malloc() 636 char *temp = sh.freelist[slist]; in sh_malloc() 639 OPENSSL_assert(!sh_testbit(temp, slist, sh.bitmalloc)); in sh_malloc() 640 sh_clearbit(temp, slist, sh.bittable); in sh_malloc() 642 OPENSSL_assert(temp != sh.freelist[slist]); in sh_malloc() 645 slist++; in sh_malloc() [all …]
|
| /netbsd/src/tests/lib/libc/sys/ |
| D | t_connect.c | 50 int sd, val, slist; in ATF_TC_BODY() local 53 slist = socket(AF_INET, SOCK_STREAM, 0); in ATF_TC_BODY() 57 ATF_REQUIRE(slist > 0); in ATF_TC_BODY() 65 ATF_REQUIRE_EQ(bind(slist, in ATF_TC_BODY() 67 ATF_REQUIRE_EQ(listen(slist, 1), 0); in ATF_TC_BODY() 95 close(slist); in ATF_TC_BODY()
|
| /netbsd/src/external/bsd/libpcap/dist/ |
| D | gencode.h | 219 struct slist; 226 struct slist *jt; /* only for relative jump in block */ 227 struct slist *jf; /* only for relative jump in block */ 231 struct slist { struct 233 struct slist *next; argument 276 struct slist *stmts; /* side effect stmts */ 305 struct slist *s; /* stmt list */ 410 void sappend(struct slist *, struct slist *);
|
| D | gencode.c | 483 static inline struct slist *new_stmt(compiler_state_t *cstate, int); 505 static struct slist *gen_load_absoffsetrel(compiler_state_t *, bpf_abs_offset *, 507 static struct slist *gen_load_a(compiler_state_t *, enum e_offrel, u_int, 509 static struct slist *gen_loadx_iphdrlen(compiler_state_t *); 516 static struct slist *gen_load_pflog_llprefixlen(compiler_state_t *); 517 static struct slist *gen_load_prism_llprefixlen(compiler_state_t *); 518 static struct slist *gen_load_avs_llprefixlen(compiler_state_t *); 519 static struct slist *gen_load_radiotap_llprefixlen(compiler_state_t *); 520 static struct slist *gen_load_ppi_llprefixlen(compiler_state_t *); 522 static struct slist *gen_abs_offset_varpart(compiler_state_t *, [all …]
|
| D | optimize.c | 629 struct slist *s; in compute_local_ud() 877 static inline struct slist * 878 this_op(struct slist *s) in this_op() 897 struct slist *s; in opt_peep() 898 struct slist *next, *last; in opt_peep() 956 struct slist *add, *tax, *ild; in opt_peep() 1460 register struct slist *s; in opt_deadstores() 1490 struct slist *s; in opt_blk() 2178 struct slist *tmp, *s; in opt_root() 2344 eq_slist(struct slist *x, struct slist *y) in eq_slist() [all …]
|
| /netbsd/src/external/bsd/openldap/dist/libraries/liblunicode/ure/ |
| D | ure.c | 155 ucs2_t *slist; member 334 s->slist = (ucs2_t *) malloc(sizeof(ucs2_t) << 3); in _ure_push() 336 s->slist = (ucs2_t *) realloc((char *) s->slist, in _ure_push() 340 s->slist[s->slist_used++] = v; in _ure_push() 356 return b->stack.slist[b->stack.slist_used - 1]; in _ure_peek() 367 v = b->stack.slist[--b->stack.slist_used]; in _ure_pop() 1292 for (i = 0, stp = sp->states.slist; in _ure_add_symstate() 1301 sp->states.slist = (ucs2_t *) malloc(sizeof(ucs2_t) << 3); in _ure_add_symstate() 1303 sp->states.slist = (ucs2_t *) in _ure_add_symstate() 1304 realloc((char *) sp->states.slist, in _ure_add_symstate() [all …]
|
| /netbsd/src/libexec/ftpd/ |
| D | conf.c | 516 static StringList *slist = NULL; in show_chdir_messages() local 527 if (slist != NULL) in show_chdir_messages() 528 sl_free(slist, 1); in show_chdir_messages() 529 slist = NULL; in show_chdir_messages() 537 if (slist == NULL) in show_chdir_messages() 538 slist = sl_init(); in show_chdir_messages() 539 if (slist == NULL) { in show_chdir_messages() 549 if (sl_find(slist, curwd) != NULL) in show_chdir_messages() 553 if (sl_add(slist, cp) == -1) in show_chdir_messages()
|
| /netbsd/src/external/bsd/tmux/dist/ |
| D | cmd-find.c | 152 cmd_find_best_session(struct session **slist, u_int ssize, int flags) in cmd_find_best_session() argument 160 if (slist != NULL) { in cmd_find_best_session() 162 if (cmd_find_session_better(slist[i], s, flags)) in cmd_find_best_session() 163 s = slist[i]; in cmd_find_best_session() 178 struct session **slist = NULL; in cmd_find_best_session_with_window() local 188 slist = xreallocarray(slist, ssize + 1, sizeof *slist); in cmd_find_best_session_with_window() 189 slist[ssize++] = s; in cmd_find_best_session_with_window() 193 fs->s = cmd_find_best_session(slist, ssize, fs->flags); in cmd_find_best_session_with_window() 196 free(slist); in cmd_find_best_session_with_window() 200 free(slist); in cmd_find_best_session_with_window()
|
| /netbsd/src/sys/arch/pmax/tc/ |
| D | dt.c | 229 SLIST_INSERT_HEAD(&sc->sc_free, msg, chain.slist); in dt_attach() 303 SLIST_REMOVE_HEAD(&sc->sc_free, chain.slist); in dt_intr() 328 SLIST_INSERT_HEAD(&sc->sc_free, msg, chain.slist); in dt_dispatch()
|
| D | dtvar.h | 47 SLIST_ENTRY(dt_msg) slist;
|
| /netbsd/src/sys/dev/ |
| D | lockstat.c | 203 SLIST_INSERT_HEAD(&lc->lc_free, lb, lb_chain.slist); in lockstat_init_tables() 207 SLIST_INSERT_HEAD(&lc->lc_free, lb, lb_chain.slist); in lockstat_init_tables() 438 SLIST_REMOVE_HEAD(&lc->lc_free, lb_chain.slist); in lockstat_event()
|
| D | lockstat.h | 129 SLIST_ENTRY(lsbuf) slist;
|
| /netbsd/src/sys/dev/pci/ |
| D | amrvar.h | 113 SLIST_ENTRY(amr_ccb) slist;
|
| D | twevar.h | 93 SLIST_ENTRY(twe_ccb) slist;
|
| D | mlyvar.h | 123 SLIST_ENTRY(mly_ccb) slist;
|
| D | twe.c | 428 ccb_chain.slist); in twe_attach() 1420 SLIST_REMOVE_HEAD(&sc->sc_ccb_freelist, ccb_chain.slist); in twe_ccb_alloc() 1450 SLIST_REMOVE_HEAD(&sc->sc_ccb_freelist, ccb_chain.slist); in twe_ccb_alloc_wait() 1473 SLIST_INSERT_HEAD(&sc->sc_ccb_freelist, ccb, ccb_chain.slist); in twe_ccb_free()
|
| D | amr.c | 563 SLIST_FOREACH(ac, &amr->amr_ccb_freelist, ac_chain.slist) { in amr_teardown() 1061 SLIST_REMOVE_HEAD(&amr->amr_ccb_freelist, ac_chain.slist); in amr_ccb_alloc() 1080 SLIST_INSERT_HEAD(&amr->amr_ccb_freelist, ac, ac_chain.slist); in amr_ccb_free()
|
| D | mly.c | 1563 SLIST_REMOVE_HEAD(&mly->mly_ccb_free, mc_link.slist); in mly_ccb_alloc() 1598 SLIST_INSERT_HEAD(&mly->mly_ccb_free, mc, mc_link.slist); in mly_ccb_free()
|
| /netbsd/src/sys/dev/ic/ |
| D | mlxvar.h | 97 SLIST_ENTRY(mlx_ccb) slist;
|
| D | mlx.c | 1859 SLIST_REMOVE_HEAD(&mlx->mlx_ccb_freelist, mc_chain.slist); in mlx_ccb_alloc() 1878 SLIST_INSERT_HEAD(&mlx->mlx_ccb_freelist, mc, mc_chain.slist); in mlx_ccb_free()
|
| /netbsd/src/external/gpl3/binutils/dist/ld/emultempl/ |
| D | xtensaelf.em | 1345 xtensa_strip_inconsistent_linkonce_sections (lang_statement_list_type *slist) 1347 lang_statement_union_type **s_p = &slist->head; 1405 if (s_p != slist->tail) 1406 slist->tail = s_p;
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/ |
| D | ChangeLog-2001 | 34 * include/ext/slist: Move into __gnu_cxx, 871 * include/ext/slist: Likewise. 1093 * include/ext/slist: Likewise. 1212 * include/ext/slist: Same. 2647 * include/ext/slist (_Slist_base::_M_erase_after>): Likewise. 2649 (slist::_M_create_node): Replace construct by _Construct. 2650 (slist::pop_front): Replace destroy by _Destroy. 2760 * include/backward/slist.h: Likewise. 2814 * include/ext/slist: Likewise. 2984 * include/backward/slist.h: Likewise. [all …]
|
| D | ChangeLog-2005 | 365 * include/backward/slist.h: Same. 443 * include/ext/slist: Same. 1576 * include/ext/slist (_Slist_iterator<>::_Slist_iterator(_Node*)): 1578 (slist<>::erase(iterator), slist<>::erase(iterator, iterator)): 1587 * testsuite/ext/slist/23781.cc: Likewise. 4897 * include/ext/slist (assign(_InputIterator, _InputIterator)): Likewise.
|
| /netbsd/src/external/gpl3/gcc/lib/libstdc++-v3/arch/ia64/ |
| D | defs.mk | 49 …cator.h ext/rb_tree ext/random ext/random.tcc ext/rope ext/ropeimpl.h ext/slist ext/string_convers…
|