Searched refs:tp (Results 101 - 125 of 652) sorted by relevance

1234567891011>>

/freebsd-9.3-release/usr.bin/xlint/lint2/
H A Demit2.c54 outtype(type_t *tp) argument
60 while (tp != NULL) {
61 if ((ts = tp->t_tspec) == INT && tp->t_isenum)
85 if (tp->t_args != NULL && !tp->t_proto) {
95 if (tp->t_const)
97 if (tp->t_volatile)
103 outint(tp->t_dim);
105 if (tp
[all...]
/freebsd-9.3-release/sys/ia64/ia64/
H A Dssc.c117 struct tty *tp; local
119 tp = tty_alloc(&ssc_class, NULL);
120 tty_makedev(tp, NULL, "ssccons");
142 ssc_open(struct tty *tp) argument
148 ssc_timeouthandle = timeout(ssc_timeout, tp, polltime);
154 ssc_close(struct tty *tp) argument
157 untimeout(ssc_timeout, tp, ssc_timeouthandle);
161 ssc_outwakeup(struct tty *tp) argument
167 len = ttydisc_getc(tp, buf, sizeof buf);
180 struct tty *tp local
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dinet_ntop.c123 char tmp[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")], *tp; local
163 tp = tmp;
169 *tp++ = ':';
174 *tp++ = ':';
179 if (!inet_ntop4(src+12, tp,
180 sizeof(tmp) - (tp - tmp)))
182 tp += strlen(tp);
185 tp += snprintf(tp, sizeo
[all...]
/freebsd-9.3-release/contrib/less/
H A Dtags.c76 #define TAG_INS(tp) \
77 (tp)->next = TAG_END; \
78 (tp)->prev = taglist.tl_last; \
79 taglist.tl_last->next = (tp); \
80 taglist.tl_last = (tp);
82 #define TAG_RM(tp) \
83 (tp)->next->prev = (tp)->prev; \
84 (tp)->prev->next = (tp)
92 register struct tag *tp; local
119 register struct tag *tp; local
280 struct tag *tp; local
478 struct tag *tp; local
609 struct tag *tp; local
639 struct tag *tp; local
[all...]
/freebsd-9.3-release/sys/powerpc/mambo/
H A Dmambo_console.c59 static struct tty *tp = NULL; variable in typeref:struct:tty
86 tp = tty_alloc(&mambo_ttydevsw, NULL);
87 tty_init_console(tp, 0);
88 tty_makedev(tp, NULL, "%s", "mambocons");
100 mambotty_outwakeup(struct tty *tp) argument
106 len = ttydisc_getc(tp, buf, sizeof buf);
118 tty_lock(tp);
120 ttydisc_rint(tp, c, 0);
121 ttydisc_rint_done(tp);
122 tty_unlock(tp);
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/common/ctf/
H A Dctf_types.c33 ctf_get_ctt_size(const ctf_file_t *fp, const ctf_type_t *tp, ssize_t *sizep, argument
39 tp->ctt_size == CTF_LSIZE_SENT) {
40 size = CTF_TYPE_LSIZE(tp);
43 size = tp->ctt_size;
63 const ctf_type_t *tp; local
71 if ((tp = ctf_lookup_by_id(&fp, type)) == NULL)
74 (void) ctf_get_ctt_size(fp, tp, &size, &increment);
75 kind = LCTF_INFO_KIND(fp, tp->ctt_info);
82 ((uintptr_t)tp + increment);
84 for (n = LCTF_INFO_VLEN(fp, tp
114 const ctf_type_t *tp; local
153 const ctf_type_t *tp = LCTF_INDEX_TO_TYPEPTR(fp, id); local
174 const ctf_type_t *tp; local
242 const ctf_type_t *tp = local
322 const ctf_type_t *tp; local
371 const ctf_type_t *tp; local
435 const ctf_type_t *tp; local
451 const ctf_type_t *tp; local
506 const ctf_type_t *tp; local
630 const ctf_type_t *tp; local
680 const ctf_type_t *tp; local
708 const ctf_type_t *tp; local
745 const ctf_type_t *tp; local
789 const ctf_type_t *tp; local
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_qmops.c35 struct xfs_trans *tp,
50 xfs_trans_t *tp; local
73 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
74 if ((error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
76 xfs_trans_cancel(tp, 0);
81 xfs_mod_sb(tp, XFS_SB_QFLAGS);
82 error = xfs_trans_commit(tp, 0, NULL);
34 xfs_dqvopchown_default( struct xfs_trans *tp, struct xfs_inode *ip, struct xfs_dquot **dqp, struct xfs_dquot *dq) argument
H A Dxfs_rtalloc.c112 xfs_trans_t *tp; /* transaction pointer */ local
118 tp = xfs_trans_alloc(mp, XFS_TRANS_GROWFSRT_ALLOC);
124 if ((error = xfs_trans_reserve(tp, resblks,
133 if ((error = xfs_trans_iget(mp, tp, ino, 0,
142 error = xfs_bmapi(tp, ip, oblocks, nblocks - oblocks,
152 error = xfs_bmap_finish(&tp, &flist, firstblock, &committed);
155 xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
164 tp = xfs_trans_alloc(mp, XFS_TRANS_GROWFSRT_ZERO);
168 if ((error = xfs_trans_reserve(tp, 0,
174 if ((error = xfs_trans_iget(mp, tp, in
212 xfs_rtallocate_extent_block( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t bbno, xfs_extlen_t minlen, xfs_extlen_t maxlen, xfs_extlen_t *len, xfs_rtblock_t *nextp, xfs_buf_t **rbpp, xfs_fsblock_t *rsb, xfs_extlen_t prod, xfs_rtblock_t *rtblock) argument
325 xfs_rtallocate_extent_exact( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t bno, xfs_extlen_t minlen, xfs_extlen_t maxlen, xfs_extlen_t *len, xfs_buf_t **rbpp, xfs_fsblock_t *rsb, xfs_extlen_t prod, xfs_rtblock_t *rtblock) argument
404 xfs_rtallocate_extent_near( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t bno, xfs_extlen_t minlen, xfs_extlen_t maxlen, xfs_extlen_t *len, xfs_buf_t **rbpp, xfs_fsblock_t *rsb, xfs_extlen_t prod, xfs_rtblock_t *rtblock) argument
598 xfs_rtallocate_extent_size( xfs_mount_t *mp, xfs_trans_t *tp, xfs_extlen_t minlen, xfs_extlen_t maxlen, xfs_extlen_t *len, xfs_buf_t **rbpp, xfs_fsblock_t *rsb, xfs_extlen_t prod, xfs_rtblock_t *rtblock) argument
738 xfs_rtallocate_range( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t start, xfs_extlen_t len, xfs_buf_t **rbpp, xfs_fsblock_t *rsb) argument
815 xfs_rtany_summary( xfs_mount_t *mp, xfs_trans_t *tp, int low, int high, xfs_rtblock_t bbno, xfs_buf_t **rbpp, xfs_fsblock_t *rsb, int *stat) argument
860 xfs_rtbuf_get( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t block, int issum, xfs_buf_t **bpp) argument
905 xfs_rtcheck_alloc_range( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t bno, xfs_extlen_t len, int *stat) argument
923 xfs_rtcheck_bit( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t start, int val) argument
974 xfs_rtcheck_range( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t start, xfs_extlen_t len, int val, xfs_rtblock_t *new, int *stat) argument
1150 xfs_rtcopy_summary( xfs_mount_t *omp, xfs_mount_t *nmp, xfs_trans_t *tp) argument
1192 xfs_rtfind_back( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t start, xfs_rtblock_t limit, xfs_rtblock_t *rtblock) argument
1367 xfs_rtfind_forw( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t start, xfs_rtblock_t limit, xfs_rtblock_t *rtblock) argument
1537 xfs_rtfree_range( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t start, xfs_extlen_t len, xfs_buf_t **rbpp, xfs_fsblock_t *rsb) argument
1613 xfs_rtget_summary( xfs_mount_t *mp, xfs_trans_t *tp, int log, xfs_rtblock_t bbno, xfs_buf_t **rbpp, xfs_fsblock_t *rsb, xfs_suminfo_t *sum) argument
1680 xfs_rtmodify_range( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t start, xfs_extlen_t len, int val) argument
1839 xfs_rtmodify_summary( xfs_mount_t *mp, xfs_trans_t *tp, int log, xfs_rtblock_t bbno, int delta, xfs_buf_t **rbpp, xfs_fsblock_t *rsb) argument
1928 xfs_trans_t *tp; /* transaction pointer */ local
2124 xfs_rtallocate_extent( xfs_trans_t *tp, xfs_rtblock_t bno, xfs_extlen_t minlen, xfs_extlen_t maxlen, xfs_extlen_t *len, xfs_alloctype_t type, int wasdel, xfs_extlen_t prod, xfs_rtblock_t *rtblock) argument
2209 xfs_rtfree_extent( xfs_trans_t *tp, xfs_rtblock_t bno, xfs_extlen_t len) argument
2353 xfs_rtpick_extent( xfs_mount_t *mp, xfs_trans_t *tp, xfs_extlen_t len, xfs_rtblock_t *pick) argument
2399 xfs_rtprint_range( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t start, xfs_extlen_t len) argument
2417 xfs_rtprint_summary( xfs_mount_t *mp, xfs_trans_t *tp) argument
[all...]
H A Dxfs_ialloc.h89 struct xfs_trans *tp, /* transaction pointer */
106 struct xfs_trans *tp, /* transaction pointer */
119 struct xfs_trans *tp, /* transaction pointer */
138 struct xfs_trans *tp, /* transaction pointer */
148 struct xfs_trans *tp, /* transaction pointer */
H A Dxfs_trans_priv.h41 void xfs_trans_free_busy(xfs_trans_t *tp);
43 xfs_log_busy_slot_t *xfs_trans_add_busy(xfs_trans_t *tp,
/freebsd-9.3-release/sys/netinet/
H A Dtcp_subr.c482 tcp_respond(struct tcpcb *tp, void *ipgen, struct tcphdr *th, struct mbuf *m, argument
496 KASSERT(tp != NULL || m != NULL, ("tcp_respond: tp and m both NULL"));
504 if (tp != NULL) {
505 inp = tp->t_inpcb;
511 if (tp != NULL) {
514 if (win > (long)TCP_MAXWIN << tp->rcv_scale)
515 win = (long)TCP_MAXWIN << tp->rcv_scale;
618 if (tp != NULL)
619 nth->th_win = htons((u_short) (win >> tp
670 struct tcpcb *tp; local
765 struct tcpcb *tp; local
820 tcp_drop(struct tcpcb *tp, int errno) argument
840 tcp_discardcb(struct tcpcb *tp) argument
955 tcp_close(struct tcpcb *tp) argument
1036 struct tcpcb *tp; local
1335 struct tcpcb *tp; local
1580 tcp_new_isn(struct tcpcb *tp) argument
1642 struct tcpcb *tp; local
1678 struct tcpcb *tp; local
1798 ipsec_hdrsiz_tcp(struct tcpcb *tp) argument
2101 struct tcpcb *tp; local
[all...]
/freebsd-9.3-release/contrib/ncurses/ncurses/tinfo/
H A Dlib_termcap.c212 TERMTYPE *tp = &(cur_term->type); local
213 for_each_boolean(i, tp) {
214 const char *capname = ExtBoolname(tp, i, boolcodes);
217 returnCode(tp->Booleans[i]);
240 TERMTYPE *tp = &(cur_term->type); local
241 for_each_number(i, tp) {
242 const char *capname = ExtNumname(tp, i, numcodes);
244 if (!VALID_NUMERIC(tp->Numbers[i]))
246 returnCode(tp->Numbers[i]);
270 TERMTYPE *tp local
[all...]
/freebsd-9.3-release/contrib/tcpdump/missing/
H A Dinet_ntop.c113 char *tp; local
153 tp = tmp;
161 *tp++ = ':';
168 *tp++ = ':';
175 if (!inet_ntop_v4(src+12, tp, sizeof(tmp) - (tp - tmp)))
180 tp += strlen(tp);
183 tp += sprintf (tp, "
[all...]
/freebsd-9.3-release/lib/libc/inet/
H A Dinet_ntop.c115 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp; local
156 tp = tmp;
162 *tp++ = ':';
167 *tp++ = ':';
172 if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp)))
174 tp += strlen(tp);
177 tp += sprintf(tp, "
[all...]
/freebsd-9.3-release/sys/libkern/
H A Dinet_ntop.c102 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp; local
145 tp = tmp;
151 *tp++ = ':';
156 *tp++ = ':';
161 if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp)))
163 tp += strlen(tp);
166 tp += sprintf(tp, "
[all...]
/freebsd-9.3-release/sys/dev/cxgb/ulp/tom/
H A Dcxgb_cpl_io.c163 struct tcpcb *tp; local
168 tp = intotcpcb(inp);
169 toep = tp->t_toe;
174 CTR6(KTR_CXGB, "%s: %s %u, toep %p, inp %p, tp %p", __func__,
175 tp->t_state == TCPS_SYN_SENT ? "atid" : "tid", toep->tp_tid,
176 toep, inp, tp);
178 tp->t_toe = NULL;
179 tp->t_flags &= ~TF_TOE;
187 t3_pcb_detach(struct toedev *tod __unused, struct tcpcb *tp) argument
190 toepcb_detach(tp
353 struct tcpcb *tp = so_sototcpcb(so); local
426 struct tcpcb *tp = so_sototcpcb(so); local
587 t3_rcvd(struct toedev *tod, struct tcpcb *tp) argument
632 t3_send_fin(struct toedev *tod, struct tcpcb *tp) argument
654 t3_tod_output(struct toedev *tod, struct tcpcb *tp) argument
772 struct tcpcb *tp = intotcpcb(inp); local
805 struct tcpcb *tp = intotcpcb(inp); local
841 struct tcpcb *tp = intotcpcb(inp); local
958 struct tcpcb *tp = intotcpcb(inp); local
1058 struct tcpcb *tp = intotcpcb(inp); local
1096 t3_send_rst(struct toedev *tod __unused, struct tcpcb *tp) argument
1115 struct tcpcb *tp; local
1221 struct tcpcb *tp; local
1284 struct tcpcb *tp; local
1417 abort_status_to_errno(struct tcpcb *tp, int abort_reason) argument
1476 struct tcpcb *tp; local
1533 assign_rxopt(struct tcpcb *tp, uint16_t tcpopt) argument
1572 struct tcpcb *tp = intotcpcb(inp); local
1656 struct tcpcb *tp; local
1707 struct tcpcb *tp; local
[all...]
/freebsd-9.3-release/sys/dev/cy/
H A Dcy.c205 struct tty *tp; /* cross reference */ member in struct:com_s
240 static int cyparam(struct tty *tp, struct termios *t);
245 static void cystart(struct tty *tp);
246 static void comstop(struct tty *tp, int rw);
248 static void disc_optim(struct tty *tp, struct termios *t,
351 struct tty *tp; local
411 tp = com->tp = ttyalloc();
412 tp->t_open = cyopen;
413 tp
448 cyopen(struct tty *tp, struct cdev *dev) argument
488 cyclose(struct tty *tp) argument
557 struct tty *tp; local
1118 cybreak(struct tty *tp, int sig) argument
1143 struct tty *tp; local
1230 cyparam(struct tty *tp, struct termios *t) argument
1588 struct tty *tp; local
1653 cystart(struct tty *tp) argument
1800 comstop(struct tty *tp, int rw) argument
1841 cymodem(struct tty *tp, int sigon, int sigoff) argument
1972 disc_optim(struct tty *tp, struct termios *t, struct com_s *com) argument
1996 cyinput(int c, struct tty *tp) argument
2192 struct tty *tp; local
[all...]
/freebsd-9.3-release/sys/sparc64/sparc64/
H A Dpmap.c149 static void pmap_bootstrap_set_tte(struct tte *tp, u_long vpn, u_long data);
152 struct tte *tp, vm_offset_t va);
313 struct tte *tp; local
553 tp = tsb_kvtotte(va + off);
557 pmap_bootstrap_set_tte(tp, vpn, data);
597 tp = tsb_kvtotte(va);
601 pmap_bootstrap_set_tte(tp, vpn, data);
641 tp = tsb_kvtotte(va);
651 pmap_bootstrap_set_tte(tp, vpn, data);
754 pmap_bootstrap_set_tte(struct tte *tp, u_lon argument
813 struct tte *tp; local
836 struct tte *tp; local
877 struct tte *tp; local
890 struct tte *tp; local
965 struct tte *tp; local
1039 struct tte *tp; local
1087 struct tte *tp; local
1102 struct tte *tp; local
1124 struct tte *tp; local
1327 pmap_remove_tte(struct pmap *pm, struct pmap *pm2, struct tte *tp, vm_offset_t va) argument
1363 struct tte *tp; local
1391 struct tte *tp; local
1423 pmap_protect_tte(struct pmap *pm, struct pmap *pm2, struct tte *tp, vm_offset_t va) argument
1445 struct tte *tp; local
1499 struct tte *tp; local
1687 struct tte *tp; local
1706 pmap_copy_tte(pmap_t src_pmap, pmap_t dst_pmap, struct tte *tp, vm_offset_t va) argument
1727 struct tte *tp; local
1758 struct tte *tp; local
1789 struct tte *tp; local
1821 struct tte *tp; local
1854 struct tte *tp; local
1951 struct tte *tp; local
1981 struct tte *tp; local
2012 struct tte *tp; local
2043 struct tte *tp; local
2071 struct tte *tp; local
2124 struct tte *tp; local
2146 struct tte *tp; local
2176 struct tte *tp; local
2195 struct tte *tp; local
[all...]
/freebsd-9.3-release/contrib/amd/amd/
H A Dinfo_hesiod.c65 int amu_hesiod_init(mnt_map *m, char *map, time_t *tp);
66 int hesiod_search(mnt_map *m, char *map, char *key, char **pval, time_t *tp);
75 amu_hesiod_init(mnt_map *m, char *map, time_t *tp) argument
78 *tp = 0;
94 hesiod_search(mnt_map *m, char *map, char *key, char **pval, time_t *tp) argument
102 dlog("hesiod_search(m=%lx, map=%s, key=%s, pval=%lx tp=%lx)",
103 (unsigned long) m, map, key, (unsigned long) pval, (unsigned long) tp);
/freebsd-9.3-release/contrib/ntp/libntp/
H A Ddofptoa.c87 register u_char *tp; local
91 tp = cpend;
92 *(--tp) += 1;
93 while (*tp >= 10) {
94 *tp = 0;
95 *(--tp) += 1;
/freebsd-9.3-release/contrib/bind9/lib/isc/nothreads/include/isc/
H A Dcondition.h47 #define isc_condition_waituntil(cp, mp, tp) \
48 ((void)(cp), (void)(mp), (void)(tp), ISC_R_NOTIMPLEMENTED)
/freebsd-9.3-release/sys/geom/
H A Dgeom_int.h73 void g_io_schedule_down(struct thread *tp);
74 void g_io_schedule_up(struct thread *tp);
/freebsd-9.3-release/contrib/ntp/lib/isc/nothreads/include/isc/
H A Dcondition.h47 #define isc_condition_waituntil(cp, mp, tp) \
48 ((void)(cp), (void)(mp), (void)(tp), ISC_R_NOTIMPLEMENTED)
/freebsd-9.3-release/contrib/cvs/lib/
H A Dgetdate.y732 register const TABLE *tp;
760 for (tp = MonthDayTable; tp->name; tp++) {
762 if (strncmp(buff, tp->name, 3) == 0) {
763 yylval.Number = tp->value;
764 return tp->type;
767 else if (strcmp(buff, tp->name) == 0) {
768 yylval.Number = tp->value;
769 return tp
[all...]
/freebsd-9.3-release/usr.bin/find/
H A Dgetdate.y675 const TABLE *tp;
703 for (tp = MonthDayTable; tp->name; tp++) {
705 if (strncmp(buff, tp->name, 3) == 0) {
706 yylval.Number = tp->value;
707 return tp->type;
710 else if (strcmp(buff, tp->name) == 0) {
711 yylval.Number = tp->value;
712 return tp
[all...]

Completed in 287 milliseconds

1234567891011>>