Home
last modified time | relevance | path

Searched refs:wp (Results 1 – 25 of 451) sorted by relevance

12345678910>>...19

/freebsd-13-stable/sys/geom/bde/
HDg_bde_work.c92 static void g_bde_delete_sector(struct g_bde_softc *wp, struct g_bde_sector *sp);
93 static struct g_bde_sector * g_bde_new_sector(struct g_bde_work *wp, u_int len);
94 static void g_bde_release_keysector(struct g_bde_work *wp);
95 static struct g_bde_sector *g_bde_get_keysector(struct g_bde_work *wp);
112 struct g_bde_work *wp; in g_bde_new_work() local
114 wp = malloc(sizeof *wp, M_GBDE, M_NOWAIT | M_ZERO); in g_bde_new_work()
115 if (wp == NULL) in g_bde_new_work()
116 return (wp); in g_bde_new_work()
117 wp->state = SETUP; in g_bde_new_work()
118 wp->softc = sc; in g_bde_new_work()
[all …]
HDg_bde_crypt.c116 g_bde_crypt_read(struct g_bde_work *wp) in g_bde_crypt_read() argument
127 sc = wp->softc; in g_bde_crypt_read()
129 for (n = 0; o < wp->length; n++, o += sc->sectorsize) { in g_bde_crypt_read()
130 d = (u_char *)wp->ksp->data + wp->ko + n * G_BDE_SKEYLEN; in g_bde_crypt_read()
131 g_bde_kkey(sc, &ki, DIR_DECRYPT, wp->offset + o); in g_bde_crypt_read()
133 d = (u_char *)wp->data + o; in g_bde_crypt_read()
150 g_bde_crypt_write(struct g_bde_work *wp) in g_bde_crypt_write() argument
160 sc = wp->softc; in g_bde_crypt_write()
163 for (n = 0; o < wp->length; n++, o += sc->sectorsize) { in g_bde_crypt_write()
164 s = (u_char *)wp->data + o; in g_bde_crypt_write()
[all …]
/freebsd-13-stable/contrib/tcsh/
HDtc.who.c205 struct who *wp, *wpnew; local
279 for (wp = whohead.who_next; wp->who_next != NULL; wp = wp->who_next)
280 wp->who_status = OFFLINE | CLEARED;
310 wp = whohead.who_next;
311 while (wp->who_next && (comp = strncmp(wp->who_tty, utmp.ut_line, UTLINLEN)) < 0)
312 wp = wp->who_next;/* find that tty! */
314 if (wp->who_next && comp == 0) { /* found the tty... */
315 if (utmp.ut_time < wp->who_time)
319 wp->who_time = utmp.ut_time;
320 wp->who_status = OFFLINE;
[all …]
HDsh.func.c428 struct whyle *wp; in gotolab() local
434 for (wp = whyles; wp; wp = wp->w_next) in gotolab()
435 if (wp->w_end.type == TCSH_F_SEEK && wp->w_end.f_seek == 0) { in gotolab()
437 btell(&wp->w_end); in gotolab()
440 bseek(&wp->w_end); in gotolab()
753 struct whyle *wp; in search() local
828 wp = whyles; in search()
829 if (wp) { in search()
830 whyles = wp->w_next; in search()
831 wpfree(wp); in search()
[all …]
/freebsd-13-stable/sys/geom/vinum/
HDgeom_vinum_raid5.c58 struct gv_raid5_packet *wp, *wp2; in gv_raid5_start() local
63 wp = g_malloc(sizeof(*wp), M_WAITOK | M_ZERO); in gv_raid5_start()
64 wp->bio = bp; in gv_raid5_start()
65 wp->waiting = NULL; in gv_raid5_start()
66 wp->parity = NULL; in gv_raid5_start()
67 TAILQ_INIT(&wp->bits); in gv_raid5_start()
70 err = gv_raid5_rebuild(p, wp, bp, addr, boff, bcount); in gv_raid5_start()
72 err = gv_raid5_check(p, wp, bp, addr, boff, bcount); in gv_raid5_start()
74 err = gv_raid5_request(p, wp, bp, addr, boff, bcount, &delay); in gv_raid5_start()
78 g_free(wp); in gv_raid5_start()
[all …]
HDgeom_vinum_plex.c59 struct gv_raid5_packet *wp; in gv_plex_start() local
69 wp = NULL; in gv_plex_start()
76 wp = gv_raid5_start(p, bp, addr, boff, bcount); in gv_plex_start()
77 if (wp == NULL) in gv_plex_start()
80 len = wp->length; in gv_plex_start()
82 if (TAILQ_EMPTY(&wp->bits)) in gv_plex_start()
83 g_free(wp); in gv_plex_start()
84 else if (wp->lockbase != -1) in gv_plex_start()
85 TAILQ_INSERT_TAIL(&p->packets, wp, list); in gv_plex_start()
334 struct gv_raid5_packet *wp; in gv_plex_raid5_done() local
[all …]
/freebsd-13-stable/sys/contrib/openzfs/lib/libuutil/
HDuu_avl.c309 _avl_walk_init(uu_avl_walk_t *wp, uu_avl_t *ap, uint32_t flags) in _avl_walk_init() argument
316 (void) memset(wp, 0, sizeof (*wp)); in _avl_walk_init()
317 wp->uaw_avl = ap; in _avl_walk_init()
318 wp->uaw_robust = robust; in _avl_walk_init()
319 wp->uaw_dir = direction; in _avl_walk_init()
322 wp->uaw_next_result = avl_first(&ap->ua_tree); in _avl_walk_init()
324 wp->uaw_next_result = avl_last(&ap->ua_tree); in _avl_walk_init()
327 wp->uaw_next = next = &ap->ua_null_walk; in _avl_walk_init()
328 wp->uaw_prev = prev = next->uaw_prev; in _avl_walk_init()
329 next->uaw_prev = wp; in _avl_walk_init()
[all …]
HDuu_list.c397 list_walk_init(uu_list_walk_t *wp, uu_list_t *lp, uint32_t flags) in list_walk_init() argument
404 (void) memset(wp, 0, sizeof (*wp)); in list_walk_init()
405 wp->ulw_list = lp; in list_walk_init()
406 wp->ulw_robust = robust; in list_walk_init()
407 wp->ulw_dir = direction; in list_walk_init()
409 wp->ulw_next_result = lp->ul_null_node.uln_next; in list_walk_init()
411 wp->ulw_next_result = lp->ul_null_node.uln_prev; in list_walk_init()
419 wp->ulw_next = next = &lp->ul_null_walk; in list_walk_init()
420 wp->ulw_prev = prev = next->ulw_prev; in list_walk_init()
421 next->ulw_prev = wp; in list_walk_init()
[all …]
/freebsd-13-stable/contrib/ncurses/ncurses/base/
HDlib_window.c99 WINDOW *wp; in wsyncup() local
103 for (wp = win; wp->_parent; wp = wp->_parent) { in wsyncup()
105 WINDOW *pp = wp->_parent; in wsyncup()
107 assert((wp->_pary <= pp->_maxy) && in wsyncup()
108 ((wp->_pary + wp->_maxy) <= pp->_maxy)); in wsyncup()
110 for (y = 0; y <= wp->_maxy; y++) { in wsyncup()
111 int left = wp->_line[y].firstchar; in wsyncup()
113 struct ldat *line = &(pp->_line[wp->_pary + y]); in wsyncup()
115 int right = wp->_line[y].lastchar + wp->_parx; in wsyncup()
116 left += wp->_parx; in wsyncup()
[all …]
HDresizeterm.c77 WINDOWLIST *wp; in show_window_sizes() local
85 for (each_window(sp, wp)) { in show_window_sizes()
87 (void *) &(wp->win), in show_window_sizes()
88 (long) wp->win._maxy + 1, in show_window_sizes()
89 (long) wp->win._maxx + 1, in show_window_sizes()
90 (long) wp->win._begy, in show_window_sizes()
91 (long) wp->win._begx); in show_window_sizes()
181 WINDOWLIST *wp; in child_depth() local
183 for (each_window(sp, wp)) { in child_depth()
184 WINDOW *tst = &(wp->win); in child_depth()
[all …]
/freebsd-13-stable/sbin/dump/
HDtape.c110 static struct worker *wp; variable
154 wp = &workers[0]; in alloctape()
155 wp->count = 1; in alloctape()
156 wp->tapea = 0; in alloctape()
157 wp->firstrec = 0; in alloctape()
158 nextblock = wp->tblock; in alloctape()
166 wp->req[trecno].dblk = (ufs2_daddr_t)0; in writerec()
167 wp->req[trecno].count = 1; in writerec()
187 wp->req[trecno].dblk = dblkno; in dumpblock()
188 wp->req[trecno].count = avail; in dumpblock()
[all …]
/freebsd-13-stable/usr.sbin/ppp/
HDpred.c179 u_char *cp, *wp, *hp; in Pred1Output() local
186 hp = wp = MBUF_CTOP(mwp); in Pred1Output()
188 *wp++ = *cp++ = orglen >> 8; in Pred1Output()
189 *wp++ = *cp++ = orglen & 0377; in Pred1Output()
196 len = compress(state, bufp + 2, wp, orglen); in Pred1Output()
201 wp += len; in Pred1Output()
204 memcpy(wp, bufp + 2, orglen); in Pred1Output()
205 wp += orglen; in Pred1Output()
209 *wp++ = fcs & 0377; in Pred1Output()
210 *wp++ = fcs >> 8; in Pred1Output()
[all …]
HDasync.c86 u_char *wp; in async_Encode() local
88 wp = *cp; in async_Encode()
91 *wp++ = HDLC_ESC; in async_Encode()
95 *wp++ = HDLC_ESC; in async_Encode()
98 *wp++ = c; in async_Encode()
99 *cp = wp; in async_Encode()
108 struct mbuf *wp; in async_LayerPush() local
121 wp = bp; in async_LayerPush()
123 while (wp) { in async_LayerPush()
124 sp = MBUF_CTOP(wp); in async_LayerPush()
[all …]
HDdeflate.c73 u_char *wp, *rp; in DeflateOutput() local
97 wp = MBUF_CTOP(mo); in DeflateOutput()
98 *wp++ = state->seqno >> 8; in DeflateOutput()
99 *wp++ = state->seqno & 0377; in DeflateOutput()
104 state->cx.next_out = wp; in DeflateOutput()
203 u_char *wp; in DeflateInput() local
238 wp = MBUF_CTOP(mo); in DeflateInput()
239 wp[0] = '\0'; in DeflateInput()
248 state->cx.next_out = wp + 1; in DeflateInput()
282 if (!(wp[1] & 1)) { in DeflateInput()
[all …]
/freebsd-13-stable/contrib/libarchive/libarchive/
HDarchive_acl.c68 static void next_field_w(const wchar_t **wp, const wchar_t **start,
70 static void append_entry_w(wchar_t **wp, const wchar_t *prefix, int type,
72 static void append_id_w(wchar_t **wp, int id);
674 wchar_t *wp, *ws; in archive_acl_to_text_w() local
696 wp = ws = malloc(length * sizeof(*wp)); in archive_acl_to_text_w()
697 if (wp == NULL) { in archive_acl_to_text_w()
705 append_entry_w(&wp, NULL, ARCHIVE_ENTRY_ACL_TYPE_ACCESS, in archive_acl_to_text_w()
708 *wp++ = separator; in archive_acl_to_text_w()
709 append_entry_w(&wp, NULL, ARCHIVE_ENTRY_ACL_TYPE_ACCESS, in archive_acl_to_text_w()
712 *wp++ = separator; in archive_acl_to_text_w()
[all …]
/freebsd-13-stable/contrib/nvi/cl/
HDcl_term.c93 CHAR_T *wp; in cl_term_init() local
100 CHAR2INT(sp, tkp->name, strlen(tkp->name), wp, wlen); in cl_term_init()
101 MEMCPY(name, wp, wlen); in cl_term_init()
102 CHAR2INT(sp, t, strlen(t), wp, wlen); in cl_term_init()
103 MEMCPY(ts, wp, wlen); in cl_term_init()
104 CHAR2INT(sp, tkp->output, strlen(tkp->output), wp, wlen); in cl_term_init()
105 MEMCPY(output, wp, wlen); in cl_term_init()
121 CHAR2INT(sp, tkp->name, strlen(tkp->name), wp, wlen); in cl_term_init()
122 MEMCPY(name, wp, wlen); in cl_term_init()
123 CHAR2INT(sp, t, strlen(t), wp, wlen); in cl_term_init()
[all …]
/freebsd-13-stable/crypto/openssh/
HDutf8.c104 vasnmprintf(char **str, size_t maxsz, int *wp, const char *fmt, va_list ap) in vasnmprintf() argument
137 max_width = wp == NULL ? INT_MAX : *wp; in vasnmprintf()
147 } else if (wp == NULL && in vasnmprintf()
212 if (wp != NULL) in vasnmprintf()
213 *wp = total_width; in vasnmprintf()
228 if (wp != NULL) in vasnmprintf()
229 *wp = 0; in vasnmprintf()
240 snmprintf(char *str, size_t sz, int *wp, const char *fmt, ...) in snmprintf() argument
247 ret = vasnmprintf(&cp, sz, wp, fmt, ap); in snmprintf()
258 asmprintf(char **outp, size_t sz, int *wp, const char *fmt, ...) in asmprintf() argument
[all …]
/freebsd-13-stable/crypto/openssl/crypto/whrlpool/
HDbuild.info4 GENERATE[wp-mmx.s]=asm/wp-mmx.pl \
6 DEPEND[wp-mmx.s]=../perlasm/x86asm.pl
8 GENERATE[wp-x86_64.s]=asm/wp-x86_64.pl $(PERLASM_SCHEME)
/freebsd-13-stable/usr.bin/mail/
HDhead.c250 nextword(char *wp, char *wbuf) in nextword() argument
254 if (wp == NULL) { in nextword()
258 while ((c = *wp++) != '\0' && c != ' ' && c != '\t') { in nextword()
261 while ((c = *wp++) != '\0' && c != '"') in nextword()
266 wp--; in nextword()
270 for (; c == ' ' || c == '\t'; c = *wp++) in nextword()
274 return (wp - 1); in nextword()
/freebsd-13-stable/contrib/libarchive/libarchive/test/
HDtest_archive_string_conversion.c133 unicode_to_wc(wchar_t *wp, uint32_t uc) in unicode_to_wc() argument
136 *wp = (wchar_t)uc; in unicode_to_wc()
143 *wp++ = (wchar_t)(((uc >> 10) & 0x3ff) + 0xD800); in unicode_to_wc()
144 *wp = (wchar_t)((uc & 0x3ff) + 0xDC00); in unicode_to_wc()
147 *wp = (wchar_t)uc; in unicode_to_wc()
317 const wchar_t *wp; in test_archive_string_normalization_nfc() local
413 archive_mstring_get_wcs(a, &mstr, &wp)); in test_archive_string_normalization_nfc()
416 assertEqualWString(wc_nfc, wp); in test_archive_string_normalization_nfc()
424 archive_mstring_get_wcs(a, &mstr, &wp)); in test_archive_string_normalization_nfc()
427 assertEqualWString(wc_nfc, wp); in test_archive_string_normalization_nfc()
[all …]
/freebsd-13-stable/contrib/nvi/ex/
HDex_script.c202 CHAR_T *wp; in sscr_getprompt() local
244 if (CHAR2INT5(sp, exp->ibcw, t, p - t, wp, wlen)) in sscr_getprompt()
247 db_append(sp, 0, lline, wp, wlen)) in sscr_getprompt()
277 if (CHAR2INT5(sp, exp->ibcw, buf, llen, wp, wlen)) in sscr_getprompt()
279 if (db_last(sp, &lline) || db_append(sp, 0, lline, wp, wlen)) { in sscr_getprompt()
303 CHAR_T *wp; in sscr_exec() local
309 if (db_get(sp, last_lno, DBG_FATAL, &wp, &wlen)) in sscr_exec()
311 INT2CHAR(sp, wp, wlen, p, last_len); in sscr_exec()
320 if (db_eget(sp, lno, &wp, &wlen, &isempty)) { in sscr_exec()
329 INT2CHAR(sp, wp, wlen, p, len); in sscr_exec()
[all …]
/freebsd-13-stable/lib/libc/db/test/hash.tests/
HDtseq.c54 char wp[8192]; variable
77 bcopy ( res.data, wp, res.size );
78 wp[res.size] = 0;
82 printf ( "%s %s\n", wp, cp );
/freebsd-13-stable/tools/build/cross-build/
HDfgetwln_fallback.c66 wchar_t *wp; in fgetwln() local
73 wp = reallocarray(fb->wbuf, fb->len, sizeof(wchar_t)); in fgetwln()
74 if (wp == NULL) { in fgetwln()
78 fb->wbuf = wp; in fgetwln()
/freebsd-13-stable/contrib/nvi/common/
HDmsg.c147 CHAR_T *wp; in msgq() local
150 CHAR2INT(sp, gp->if_name, strlen(gp->if_name) + 1, wp, wlen); in msgq()
151 for (; *wp != '\0'; ++wp) { in msgq()
152 len = snprintf(mp, REM, "%s", KEY_NAME(sp, *wp)); in msgq()
530 CHAR_T *wp; in msgq_status() local
540 CHAR2INT(sp, sp->frp->name, len + 1, wp, wlen); in msgq_status()
543 for (; *wp != '\0'; ++wp) { in msgq_status()
544 len = KEY_LEN(sp, *wp); in msgq_status()
545 memcpy(p, KEY_NAME(sp, *wp), len); in msgq_status()
849 CHAR_T *wp, *cp; in msg_print() local
[all …]
/freebsd-13-stable/contrib/nvi/vi/
HDv_at.c40 CHAR_T *wp; in v_at() local
103 CHAR2INT(sp, nbuf, len, wp, wlen); in v_at()
104 MEMCPY(wbuf, wp, wlen); in v_at()
105 if (v_event_push(sp, NULL, wp, wlen, 0)) in v_at()

12345678910>>...19