Home
last modified time | relevance | path

Searched refs:spp (Results 1 – 22 of 22) sorted by relevance

/freebsd/sys/kern/
H A Dsubr_devstat.c504 struct statspage *spp; in devstat_mmap() local
540 if (spp->nfree > 0) in devstat_alloc()
543 if (spp != NULL) in devstat_alloc()
556 if (spp->nfree > 0) in devstat_alloc()
558 if (spp == NULL) { in devstat_alloc()
559 spp = spp2; in devstat_alloc()
571 dsp = spp->stat; in devstat_alloc()
577 spp->nfree--; in devstat_alloc()
590 struct statspage *spp; in devstat_free() local
595 if (dsp >= spp->stat && dsp < (spp->stat + statsperpage)) { in devstat_free()
[all …]
/freebsd/contrib/nvi/common/
H A Dscreen.c34 screen_init(GS *gp, SCR *orig, SCR **spp) in screen_init() argument
39 *spp = NULL; in screen_init()
41 *spp = sp; in screen_init()
113 *spp = sp; in screen_init()
/freebsd/sys/netipsec/
H A Dipsec_pcb.c289 struct secpolicy **spp, *newsp; in ipsec_set_pcbpolicy() local
350 spp = &inp->inp_sp->sp_in; in ipsec_set_pcbpolicy()
353 spp = &inp->inp_sp->sp_out; in ipsec_set_pcbpolicy()
357 if (*spp != NULL) { in ipsec_set_pcbpolicy()
358 ipsec_accel_spddel(*spp); in ipsec_set_pcbpolicy()
359 key_freesp(spp); in ipsec_set_pcbpolicy()
361 *spp = newsp; in ipsec_set_pcbpolicy()
H A Dkey.c1243 key_freesp(struct secpolicy **spp) in key_freesp() argument
1245 struct secpolicy *sp = *spp; in key_freesp()
1255 *spp = NULL; in key_freesp()
1357 spp[i], chain); in key_register_ifnet()
1364 LIST_INSERT_HEAD(SPHASH_HASH(spp[i]->id), spp[i], idhash); in key_register_ifnet()
1365 spp[i]->state = IPSEC_SPSTATE_IFNET; in key_register_ifnet()
1366 ipsec_accel_spdadd(spp[i], NULL); in key_register_ifnet()
1394 spp[i]->state = IPSEC_SPSTATE_DEAD; in key_unregister_ifnet()
1395 ipsec_accel_spddel(spp[i]); in key_unregister_ifnet()
1397 spp[i], chain); in key_unregister_ifnet()
[all …]
/freebsd/lib/libgeom/
H A Dgeom_stats.c48 static uint npages, spp; variable
97 spp = pagesize / sizeof(struct devstat); in geom_stats_open()
131 sp->perpage = spp; in geom_stats_snapshot_get()
/freebsd/contrib/mandoc/
H A Dtbl_term.c570 tbl_hrule(struct termp *tp, const struct tbl_span *spp, in tbl_hrule() argument
584 cpp = spp == NULL ? NULL : spp->layout->first; in tbl_hrule()
608 (spp == NULL ? 0 : BUP * bw) + in tbl_hrule()
610 (spp == NULL || cpn == NULL || in tbl_hrule()
644 } else if (spp != NULL && opts & TBL_OPT_ALLBOX) in tbl_hrule()
704 (spp == NULL ? 0 : BUP * bw) + in tbl_hrule()
706 (spp == NULL || spn == NULL || in tbl_hrule()
/freebsd/share/doc/psd/21.ipc/
H A Dspell.ok307 spp
308 spp.sp
/freebsd/contrib/nvi/vi/
H A Dvs_split.c333 vs_discard(SCR *sp, SCR **spp) in vs_discard() argument
358 if (spp != NULL) in vs_discard()
359 *spp = NULL; in vs_discard()
436 if (spp != NULL) in vs_discard()
437 *spp = tsp; in vs_discard()
H A Dvi.c60 vi(SCR **spp) in vi() argument
70 sp = *spp; in vi()
250 *spp = next; in vi()
397 *spp = sp; in vi()
/freebsd/contrib/tcpdump/
H A Dprint-nfs.c1512 const struct nfsv3_pathconf *spp; in parsepathconf() local
1525 spp = (const struct nfsv3_pathconf *)dp; in parsepathconf()
1526 ND_TCHECK_SIZE(spp); in parsepathconf()
1529 GET_BE_U_4(spp->pc_linkmax), in parsepathconf()
1530 GET_BE_U_4(spp->pc_namemax), in parsepathconf()
1531 GET_BE_U_4(spp->pc_notrunc) ? "notrunc" : "", in parsepathconf()
1532 GET_BE_U_4(spp->pc_chownrestricted) ? "chownres" : "", in parsepathconf()
1533 GET_BE_U_4(spp->pc_caseinsensitive) ? "igncase" : "", in parsepathconf()
1534 GET_BE_U_4(spp->pc_casepreserving) ? "keepcase" : ""); in parsepathconf()
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_set_term.c313 SCREEN **spp, in NCURSES_SP_NAME()
337 assert(spp != 0); in NCURSES_SP_NAME()
338 sp = *spp; in NCURSES_SP_NAME()
343 *spp = sp; in NCURSES_SP_NAME()
/freebsd/contrib/ntp/ntpd/
H A Drefclock_gpsdjson.c2151 char ** spp, in myasprintf() argument
2158 *spp = NULL; in myasprintf()
2163 free(*spp); in myasprintf()
2164 *spp = (char*)malloc(alen); in myasprintf()
2165 if (NULL == *spp) in myasprintf()
2169 plen = (size_t)vsnprintf(*spp, alen, fmt, va); in myasprintf()
H A Dntp_request.c1589 RestrictStackT **spp, in pushRestriction() argument
1595 if (NULL == (sp = *spp) || 0 == sp->fcnt) { in pushRestriction()
1598 sp->link = *spp; in pushRestriction()
1600 *spp = sp; in pushRestriction()
1608 RestrictStackT **spp, in popRestriction() argument
1614 if (NULL == (sp = *spp) || sp->fcnt >= getStackSheetSize(sp)) in popRestriction()
1620 *spp = sp->link; in popRestriction()
1628 RestrictStackT **spp in flushRestrictionStack() argument
1633 while (NULL != (sp = *spp)) { in flushRestrictionStack()
1634 *spp = sp->link; in flushRestrictionStack()
/freebsd/contrib/nvi/ex/
H A Dex.c46 ex(SCR **spp) in ex() argument
55 sp = *spp; in ex()
140 *spp = sp; in ex()
156 *spp = screen_next(sp); in ex()
157 if (*spp) { in ex()
158 F_CLR(*spp, SC_SCR_VI); in ex()
159 F_SET(*spp, SC_SCR_EX); in ex()
/freebsd/contrib/wpa/hs20/client/
H A Dosu_client.c2602 int spp; in cmd_sub_rem() local
2681 spp = 0; in cmd_sub_rem()
2683 spp = 1; in cmd_sub_rem()
2686 spp = 1; in cmd_sub_rem()
2730 if (spp) in cmd_sub_rem()
2761 int spp; in cmd_pol_upd() local
2846 spp = 0; in cmd_pol_upd()
2848 spp = 1; in cmd_pol_upd()
2851 spp = 1; in cmd_pol_upd()
2885 if (spp) in cmd_pol_upd()
/freebsd/contrib/less/
H A Dscreen.c264 char **outstr, char *def_instr, char *def_outstr, char **spp);
1497 …r *incap, char *outcap, char **instr, char **outstr, char *def_instr, char *def_outstr, char **spp) in tmodes() argument
1499 *instr = ltgetstr(incap, spp); in tmodes()
1508 *outstr = ltgetstr(outcap, spp); in tmodes()
1511 *outstr = ltgetstr("me", spp); in tmodes()
/freebsd/crypto/heimdal/kdc/
H A Dkrb5tgs.c747 krb5_principals spp, in tgs_make_reply() argument
959 spp, in tgs_make_reply()
1497 krb5_principals spp = NULL; in tgs_build_reply() local
1857 &spp, in tgs_build_reply()
2260 spp, in tgs_build_reply()
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/
H A Dpinctrl_spear.txt138 "clcd", "emi", "fsmc", "spp", "sdhci", "i2s", "uart1", "uart1_modem",
/freebsd/contrib/ncurses/ncurses/
H A Dllib-lncurses2031 SCREEN **spp,
H A Dllib-lncursest2040 SCREEN **spp,
H A Dllib-lncursestw2621 SCREEN **spp,
H A Dllib-lncursesw2612 SCREEN **spp,