Searched refs:tp (Results 1 - 25 of 695) sorted by relevance

1234567891011>>

/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dtok822_find.c53 TOK822 *tp; local
55 for (tp = head; tp != 0 && tp->type != op; tp = tp->next)
57 return (tp);
64 TOK822 *tp; local
66 for (tp = tail; tp !
[all...]
H A Dtok822_node.c13 /* TOK822 *tok822_free(tp)
14 /* TOK822 *tp;
57 TOK822 *tp; local
62 tp = (TOK822 *) mymalloc(sizeof(*tp));
63 tp->type = type;
64 tp->next = tp->prev = tp->head = tp
73 tok822_free(TOK822 *tp) argument
[all...]
H A Dtok822_tree.c17 /* TOK822 *tok822_cut_before(tp)
18 /* TOK822 *tp;
20 /* TOK822 *tok822_cut_after(tp)
21 /* TOK822 *tp;
23 /* TOK822 *tok822_unlink(tp)
24 /* TOK822 *tp;
34 /* TOK822 *tp;
37 /* TOK822 *tp;
48 /* TOK822 *tok822_free_tree(tp)
49 /* TOK822 *tp;
165 tok822_cut_before(TOK822 *tp) argument
178 tok822_cut_after(TOK822 *tp) argument
191 tok822_unlink(TOK822 *tp) argument
222 TOK822 *tp; local
260 tok822_free_tree(TOK822 *tp) argument
276 TOK822 *tp; local
292 TOK822 *tp; local
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/trace/
H A Dtrace_xnames.c42 _nc_trace_xnames(TERMTYPE * tp GCC_UNUSED)
46 int limit = tp->ext_Booleans + tp->ext_Numbers + tp->ext_Strings;
49 int begin_num = tp->ext_Booleans;
50 int begin_str = tp->ext_Booleans + tp->ext_Numbers;
53 tp->term_names,
55 tp->ext_Booleans, tp
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/netinet/
H A Dtcp_ledbat.c58 int tcp_ledbat_init(struct tcpcb *tp);
59 int tcp_ledbat_cleanup(struct tcpcb *tp);
60 void tcp_ledbat_cwnd_init(struct tcpcb *tp);
61 void tcp_ledbat_congestion_avd(struct tcpcb *tp, struct tcphdr *th);
62 void tcp_ledbat_ack_rcvd(struct tcpcb *tp, struct tcphdr *th);
63 void tcp_ledbat_pre_fr(struct tcpcb *tp);
64 void tcp_ledbat_post_fr(struct tcpcb *tp, struct tcphdr *th);
65 void tcp_ledbat_after_idle(struct tcpcb *tp);
66 void tcp_ledbat_after_timeout(struct tcpcb *tp);
67 int tcp_ledbat_delay_ack(struct tcpcb *tp, struc
135 update_cwnd(struct tcpcb *tp, uint32_t incr) argument
196 tcp_ledbat_init(struct tcpcb *tp) argument
202 tcp_ledbat_cleanup(struct tcpcb *tp) argument
213 tcp_ledbat_cwnd_init(struct tcpcb *tp) argument
223 tcp_ledbat_congestion_avd(struct tcpcb *tp, struct tcphdr *th) argument
241 tcp_ledbat_ack_rcvd(struct tcpcb *tp, struct tcphdr *th) argument
289 tcp_ledbat_pre_fr(struct tcpcb *tp) argument
304 tcp_ledbat_post_fr(struct tcpcb *tp, struct tcphdr *th) argument
335 tcp_ledbat_after_idle(struct tcpcb *tp) argument
374 tcp_ledbat_after_timeout(struct tcpcb *tp) argument
404 tcp_ledbat_delay_ack(struct tcpcb *tp, struct tcphdr *th) argument
422 tcp_ledbat_switch_cc(struct tcpcb *tp, uint16_t old_cc_index) argument
[all...]
H A Dtcp_cubic.c56 static int tcp_cubic_init(struct tcpcb *tp);
57 static int tcp_cubic_cleanup(struct tcpcb *tp);
58 static void tcp_cubic_cwnd_init_or_reset(struct tcpcb *tp);
59 static void tcp_cubic_congestion_avd(struct tcpcb *tp, struct tcphdr *th);
60 static void tcp_cubic_ack_rcvd(struct tcpcb *tp, struct tcphdr *th);
61 static void tcp_cubic_pre_fr(struct tcpcb *tp);
62 static void tcp_cubic_post_fr(struct tcpcb *tp, struct tcphdr *th);
63 static void tcp_cubic_after_timeout(struct tcpcb *tp);
64 static int tcp_cubic_delay_ack(struct tcpcb *tp, struct tcphdr *th);
65 static void tcp_cubic_switch_cc(struct tcpcb *tp, u_int16_
107 tcp_cubic_init(struct tcpcb *tp) argument
116 tcp_cubic_cleanup(struct tcpcb *tp) argument
127 tcp_cubic_cwnd_init_or_reset(struct tcpcb *tp) argument
159 tcp_cubic_update(struct tcpcb *tp, u_int32_t rtt) argument
248 tcp_cubic_tcpwin(struct tcpcb *tp, struct tcphdr *th) argument
270 tcp_cubic_congestion_avd(struct tcpcb *tp, struct tcphdr *th) argument
319 tcp_cubic_ack_rcvd(struct tcpcb *tp, struct tcphdr *th) argument
343 tcp_cubic_pre_fr(struct tcpcb *tp) argument
422 tcp_cubic_post_fr(struct tcpcb *tp, struct tcphdr *th) argument
448 tcp_cubic_after_timeout(struct tcpcb *tp) argument
464 tcp_cubic_delay_ack(struct tcpcb *tp, struct tcphdr *th) argument
476 tcp_cubic_switch_cc(struct tcpcb *tp, uint16_t old_cc_index) argument
486 tcp_cubic_clear_state(struct tcpcb *tp) argument
[all...]
H A Dtcp_cc.h89 int (*init) (struct tcpcb *tp);
95 int (*cleanup) (struct tcpcb *tp);
98 void (*cwnd_init) (struct tcpcb *tp);
104 void (*congestion_avd) (struct tcpcb *tp, struct tcphdr *th);
107 void (*ack_rcvd) (struct tcpcb *tp, struct tcphdr *th);
110 void (*pre_fr) (struct tcpcb *tp);
113 void (*post_fr) (struct tcpcb *tp, struct tcphdr *th);
116 void (*after_idle) (struct tcpcb *tp);
119 void (*after_timeout) (struct tcpcb *tp);
122 int (*delay_ack)(struct tcpcb *tp, struc
[all...]
H A Dtcp_newreno.c86 int tcp_newreno_init(struct tcpcb *tp);
87 int tcp_newreno_cleanup(struct tcpcb *tp);
88 void tcp_newreno_cwnd_init_or_reset(struct tcpcb *tp);
89 void tcp_newreno_congestion_avd(struct tcpcb *tp, struct tcphdr *th);
90 void tcp_newreno_ack_rcvd(struct tcpcb *tp, struct tcphdr *th);
91 void tcp_newreno_pre_fr(struct tcpcb *tp);
92 void tcp_newreno_post_fr(struct tcpcb *tp, struct tcphdr *th);
93 void tcp_newreno_after_idle(struct tcpcb *tp);
94 void tcp_newreno_after_timeout(struct tcpcb *tp);
95 int tcp_newreno_delay_ack(struct tcpcb *tp, struc
113 tcp_newreno_init(struct tcpcb *tp) argument
119 tcp_newreno_cleanup(struct tcpcb *tp) argument
135 tcp_newreno_cwnd_init_or_reset(struct tcpcb *tp) argument
147 tcp_newreno_congestion_avd(struct tcpcb *tp, struct tcphdr *th) argument
165 tcp_newreno_ack_rcvd(struct tcpcb *tp, struct tcphdr *th) argument
225 tcp_newreno_pre_fr(struct tcpcb *tp) argument
239 tcp_newreno_post_fr(struct tcpcb *tp, struct tcphdr *th) argument
268 tcp_newreno_after_timeout(struct tcpcb *tp) argument
324 tcp_newreno_delay_ack(struct tcpcb *tp, struct tcphdr *th) argument
335 tcp_newreno_switch_cc(struct tcpcb *tp, uint16_t old_index) argument
[all...]
H A Dtcp_timer.c277 static void tcp_remove_timer(struct tcpcb *tp);
279 static u_int32_t tcp_run_conn_timer(struct tcpcb *tp, u_int16_t *mode);
280 static void tcp_sched_timers(struct tcpcb *tp);
282 static void tcp_rexmt_save_state(struct tcpcb *tp);
301 #define TIMER_IS_ON_LIST(tp) ((tp)->t_flags & TF_TIMER_ONLIST)
307 static void add_to_time_wait_locked(struct tcpcb *tp, uint32_t delay);
314 add_to_time_wait_locked(struct tcpcb *tp, uint32_t delay) argument
317 struct inpcb *inp = tp->t_inpcb;
331 TAILQ_REMOVE(&tcp_tw_tailq, tp, t_twentr
347 add_to_time_wait(struct tcpcb *tp, uint32_t delay) argument
368 struct tcpcb *tp = intotcpcb(inp); local
378 struct tcpcb *tp; local
595 tcp_rexmt_save_state(struct tcpcb *tp) argument
634 tcp_pmtud_revert_segment_size(struct tcpcb *tp) argument
1261 tcp_remove_timer(struct tcpcb *tp) argument
1364 tcp_run_conn_timer(struct tcpcb *tp, u_int16_t *te_mode) argument
1490 struct tcpcb *tp; local
1629 tcp_sched_timers(struct tcpcb *tp) argument
1748 tcp_set_lotimer_index(struct tcpcb *tp) argument
1773 tcp_check_timer_state(struct tcpcb *tp) argument
[all...]
H A Dtcp_input.c289 static inline int tcp_stretch_ack_enable(struct tcpcb *tp);
293 static inline void update_iaj_state(struct tcpcb *tp, uint32_t tlen,
295 void compute_iaj(struct tcpcb *tp, int nlropkts, int lro_delay_factor);
296 static void compute_iaj_meat(struct tcpcb *tp, uint32_t cur_iaj);
303 static void tcp_sbrcv_grow(struct tcpcb *tp, struct sockbuf *sb,
306 void tcp_sbrcv_trim(struct tcpcb *tp, struct sockbuf *sb);
308 static inline void tcp_sbrcv_tstmp_check(struct tcpcb *tp);
309 static inline void tcp_sbrcv_reserve(struct tcpcb *tp, struct sockbuf *sb,
311 static void tcp_bad_rexmt_restore_state(struct tcpcb *tp, struct tcphdr *th);
312 static void tcp_compute_rtt(struct tcpcb *tp, struc
369 reset_acc_iaj(struct tcpcb *tp) argument
377 update_iaj_state(struct tcpcb *tp, uint32_t size, int rst_size) argument
428 compute_iaj(struct tcpcb *tp, int nlropkts, int lro_delay_factor) argument
454 compute_iaj_meat(struct tcpcb *tp, uint32_t cur_iaj) argument
531 tcp_bwmeas_check(struct tcpcb *tp) argument
556 tcp_reass(struct tcpcb *tp, struct tcphdr *th, int *tlenp, struct mbuf *m, struct ifnet *ifp) argument
834 tcp_reduce_congestion_window( struct tcpcb *tp) argument
859 tcp_adaptive_rwtimo_check(struct tcpcb *tp, int tlen) argument
871 tcp_keepalive_reset(struct tcpcb *tp) argument
950 tcp_sbrcv_reserve(struct tcpcb *tp, struct sockbuf *sbrcv, u_int32_t newsize, u_int32_t idealsize) argument
984 tcp_sbrcv_grow(struct tcpcb *tp, struct sockbuf *sbrcv, struct tcpopt *to, u_int32_t pktlen) argument
1096 tcp_sbrcv_trim(struct tcpcb *tp, struct sockbuf *sbrcv) argument
1162 tcp_sbrcv_tstmp_check(struct tcpcb *tp) argument
1194 tcp_stretch_ack_enable(struct tcpcb *tp) argument
1214 tcp_reset_stretch_ack(struct tcpcb *tp) argument
1243 tcp_detect_bad_rexmt(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to, u_int32_t rxtime) argument
1276 tcp_bad_rexmt_restore_state(struct tcpcb *tp, struct tcphdr *th) argument
1332 tcp_bad_rexmt_check(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to) argument
1390 tcp_early_rexmt_check(struct tcpcb *tp, struct tcphdr *th) argument
1497 register struct tcpcb *tp = 0; local
4617 struct tcpcb *tp = sototcpcb(so); local
4636 get_base_rtt(struct tcpcb *tp) argument
4651 update_base_rtt(struct tcpcb *tp, uint32_t rtt) argument
4694 tcp_compute_rtt(struct tcpcb *tp, struct tcpopt *to, struct tcphdr *th) argument
4713 tcp_xmit_timer(register struct tcpcb *tp, int rtt, u_int32_t tsecr, tcp_seq th_ack) argument
5228 struct tcpcb *tp; local
5426 struct tcpcb *tp = intotcpcb(inp); local
5471 struct tcpcb *tp = inp->inp_ppcb; local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/os_brew/
H A Dos_clock.c18 __os_gettime(env, tp, monotonic)
20 db_timespec *tp;
27 tp->tv_sec =
33 tp->tv_nsec = 0;
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c/
H A Datf_c_test.c44 ATF_TP_ADD_TCS(tp)
47 ATF_TP_ADD_TC(tp, include);
/macosx-10.10.1/postfix-255/postfix/src/bounce/
H A Dbounce_template.c210 BOUNCE_TEMPLATE *tp; local
212 tp = (BOUNCE_TEMPLATE *) mymalloc(sizeof(*tp));
213 *tp = *prototype;
214 return (tp);
219 void bounce_template_free(BOUNCE_TEMPLATE *tp) argument
221 if (tp->buffer) {
222 myfree(tp->buffer);
223 myfree((char *) tp->origin);
225 myfree((char *) tp);
230 bounce_template_reset(BOUNCE_TEMPLATE *tp) argument
239 bounce_template_load(BOUNCE_TEMPLATE *tp, const char *origin, const char *buffer) argument
262 bounce_template_parse_buffer(BOUNCE_TEMPLATE *tp) argument
383 BOUNCE_TEMPLATE *tp = (BOUNCE_TEMPLATE *) context; local
430 bounce_template_headers(BOUNCE_XP_PRN_FN out_fn, VSTREAM *fp, BOUNCE_TEMPLATE *tp, const char *rcpt, int postmaster_copy) argument
446 bounce_template_expand(BOUNCE_XP_PUT_FN out_fn, VSTREAM *fp, BOUNCE_TEMPLATE *tp) argument
473 bounce_template_dump(VSTREAM *fp, BOUNCE_TEMPLATE *tp) argument
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/tools/tzcode/
H A Dscheck.c23 register char * tp; local
35 tp = fbuf;
36 while ((*tp++ = c = *fp++) != '\0') {
40 *tp++ = *fp++;
43 *tp++ = '*';
47 *tp++ = *fp++;
49 *tp++ = *fp++;
51 do *tp++ = *fp++;
53 if ((*tp++ = *fp++) == '\0')
56 *(tp
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dgettimeofday.c12 @deftypefn Supplemental int gettimeofday (struct timeval *@var{tp}, void *@var{tz})
14 Writes the current time to @var{tp}. This implementation requires
22 gettimeofday (struct timeval *tp, void *tz) argument
26 tp->tv_usec = 0;
27 if (time (&tp->tv_sec) == (time_t) -1)
/macosx-10.10.1/ksh-23/ksh/src/cmd/ksh93/bltins/
H A Dalarm.c59 register struct tevent *tp = (struct tevent*)list; local
60 if(!tp || item->milli < tp->milli)
62 item->next = tp;
67 while(tp->next && item->milli > tp->next->milli)
68 tp = tp->next;
69 item->next = tp->next;
70 tp
82 register struct tevent *tp = (struct tevent*)list; local
99 register struct tevent *tp = (struct tevent*)list; local
119 register struct tevent *tp = (struct tevent*)handle; local
131 register struct tevent *tp, *tpnext; local
165 register struct tevent *tp = (struct tevent*)fp; local
185 register struct tevent *tp = (struct tevent*)fp; local
237 register struct tevent *tp; local
[all...]
/macosx-10.10.1/system_cmds-643.1.1/zic.tproj/
H A Dscheck.c23 register char * tp; local
36 tp = fbuf;
37 while ((*tp++ = c = *fp++) != '\0') {
41 *tp++ = *fp++;
44 *tp++ = '*';
48 *tp++ = *fp++;
50 *tp++ = *fp++;
52 do *tp++ = *fp++;
54 if ((*tp++ = *fp++) == '\0')
57 *(tp
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/i386/
H A Dkm.c75 static int kmoutput(struct tty *tp);
76 static void kmstart(struct tty *tp);
95 struct tty *tp; local
103 tp = km_tty[unit];
105 tty_lock(tp);
107 tp->t_oproc = kmstart;
108 tp->t_param = NULL;
109 tp->t_dev = dev;
111 if ( !(tp->t_state & TS_ISOPEN) ) {
112 tp
166 struct tty *tp = km_tty[minor(dev)]; local
180 struct tty *tp = km_tty[minor(dev)]; local
193 struct tty *tp = km_tty[minor(dev)]; local
206 struct tty *tp = km_tty[minor(dev)]; local
296 kmstart(struct tty *tp) argument
322 struct tty *tp = (struct tty *)arg; local
341 kmoutput(struct tty *tp) argument
397 struct tty *tp = km_tty[0]; /* XXX */ local
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/string/
H A Dbase64.c54 register unsigned char* tp; local
71 if (tp = (unsigned char*)tb)
73 te = tp + tz - B64_EC + 1;
82 tp = tmp;
83 te = tp + sizeof(tmp) - B64_EC + 1;
88 tc = tp + B64_EC * B64_CHUNK;
93 if (tp >= te)
98 *tn = tp;
99 n = tp - (unsigned char*)tb + 1;
100 tp
165 register unsigned char* tp; local
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dtty.c87 * of in drivers and fix drivers that write to tp->t_termios.
122 #define TTY_LOCK_OWNED(tp) do {lck_mtx_assert(&tp->t_lock, LCK_MTX_ASSERT_OWNED); } while (0)
123 #define TTY_LOCK_NOTOWNED(tp) do {lck_mtx_assert(&tp->t_lock, LCK_MTX_ASSERT_NOTOWNED); } while (0)
125 #define TTY_LOCK_OWNED(tp)
126 #define TTY_LOCK_NOTOWNED(tp)
133 __private_extern__ int ttnread(struct tty *tp);
134 static void ttyecho(int c, struct tty *tp);
135 static int ttyoutput(int c, struct tty *tp);
308 tty_lock(struct tty *tp) argument
327 tty_unlock(struct tty *tp) argument
342 ttyopen(dev_t device, struct tty *tp) argument
427 ttyclose(struct tty *tp) argument
496 ttyinput(int c, struct tty *tp) argument
881 ttyoutput(int c, struct tty *tp) argument
971 ttysetpgrphup(struct tty *tp) argument
981 ttyclrpgrphup(struct tty *tp) argument
1005 ttioctl(struct tty *tp, u_long cmd, caddr_t data, int flag, proc_t p) argument
1075 ttioctl_locked(struct tty *tp, u_long cmd, caddr_t data, int flag, proc_t p) argument
1542 ttyselect(struct tty *tp, int rw, void *wql, proc_t p) argument
1592 struct tty *tp = cdevsw[major(dev)].d_ttys[minor(dev)]; local
1606 ttnread(struct tty *tp) argument
1643 ttywait(struct tty *tp) argument
1678 ttystop(struct tty *tp, int rw) argument
1691 ttywflush(struct tty *tp) argument
1708 ttyflush(struct tty *tp, int rw) argument
1793 ttyblock(struct tty *tp) argument
1813 ttyunblock(struct tty *tp) argument
1842 ttstart(struct tty *tp) argument
1861 ttylclose(struct tty *tp, int flag) argument
1882 ttymodem(struct tty *tp, int flag) argument
1942 ttypend(struct tty *tp) argument
1968 ttread(struct tty *tp, struct uio *uio, int flag) argument
2278 ttycheckoutq(struct tty *tp, int wait) argument
2313 ttwrite(struct tty *tp, struct uio *uio, int flag) argument
2516 ttyrub(int c, struct tty *tp) argument
2602 ttyrubo(struct tty *tp, int count) argument
2622 ttyretype(struct tty *tp) argument
2657 ttyecho(int c, struct tty *tp) argument
2687 ttwakeup(struct tty *tp) argument
2718 ttwwakeup(struct tty *tp) argument
2765 ttsetwater(struct tty *tp) argument
2798 ttyinfo_locked(struct tty *tp) argument
2997 tputchar(int c, struct tty *tp) argument
3042 ttysleep(struct tty *tp, void *chan, int pri, const char *wmesg, int timo) argument
3072 struct tty *tp; local
3093 ttyhold(struct tty *tp) argument
3104 ttyfree(struct tty *tp) argument
3125 ttydeallocate(struct tty *tp) argument
3147 isbackground(proc_t p, struct tty *tp) argument
3155 isctty(proc_t p, struct tty *tp) argument
3167 isctty_sp(proc_t p, struct tty *tp, struct session *sessp) argument
[all...]
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-run/
H A Dzero_tcs_helper.c32 ATF_TP_ADD_TCS(tp)
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dvarlist.h9 PyObject* PyObjC_VarList_New(const char* tp, void* array);
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A Dvarlist.h9 PyObject* PyObjC_VarList_New(const char* tp, void* array);
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dvarlist.h9 PyObject* PyObjC_VarList_New(const char* tp, void* array);
/macosx-10.10.1/tcl-105/tcl84/tcl/compat/
H A Dgettod.c22 gettimeofday(tp, tz)
23 struct timeval *tp;
28 tp->tv_sec = t.time;
29 tp->tv_usec = t. millitm * 1000;

Completed in 183 milliseconds

1234567891011>>