Searched refs:th (Results 101 - 125 of 328) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/pds/
H A Dtif_imageiter.c266 uint32 tw, th; local
277 TIFFGetField(tif, TIFFTAG_TILELENGTH, &th);
279 for (row = 0; row < h; row += th) {
280 nrow = (row + th > h ? h - row : th);
314 uint32 tw, th; local
338 TIFFGetField(tif, TIFFTAG_TILELENGTH, &th);
340 for (row = 0; row < h; row += th) {
341 nrow = (row + th > h ? h - row : th);
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/perf/perldriver/
H A DOutput.pm97 print HTML "<th rowspan=\"2\" class=\"testNameHeader\"><a href=\"#TestName\">Test Name</a></th>\n";
98 print HTML "<th rowspan=\"2\" class=\"testNameHeader\"><a href=\"#Ops\">Ops</a></th>\n";
101 print HTML "<th colspan=".((4*($#headers+1))-2)." class=\"sourceType\">Per Operation</th>\n";
103 print HTML "<th colspan=".((2*($#headers+1))-2)." class=\"sourceType\">Per Operation</th>\n";
104 print HTML "<th colspan=".((5*($#headers+1))-2)." class=\"sourceType\">Per Event</th>\
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/netinet/
H A Dmptcp_opt.c1048 mptcp_do_mpcapable_opt(struct tcpcb *tp, u_char *cp, struct tcphdr *th, argument
1078 if ((th->th_flags & (TH_SYN | TH_ACK)) == TH_SYN) {
1081 } else if ((th->th_flags & (TH_SYN | TH_ACK)) == (TH_SYN | TH_ACK)) {
1112 optlen, tp->t_state, th->th_sport, th->th_dport,
1116 } else if ((th->th_flags & TH_ACK) &&
1211 mptcp_do_mpjoin_opt(struct tcpcb *tp, u_char *cp, struct tcphdr *th, int optlen) argument
1224 if ((th->th_flags & (TH_SYN | TH_ACK)) == TH_SYN) {
1268 } else if ((th->th_flags & (TH_SYN | TH_ACK)) == (TH_SYN | TH_ACK)) {
1310 } else if ((th
1712 mptcp_do_dss_opt(struct tcpcb *tp, u_char *cp, struct tcphdr *th, int optlen) argument
1742 mptcp_do_fastclose_opt(struct tcpcb *tp, u_char *cp, struct tcphdr *th) argument
1796 mptcp_do_mpfail_opt(struct tcpcb *tp, u_char *cp, struct tcphdr *th) argument
1836 tcp_do_mptcp_options(struct tcpcb *tp, u_char *cp, struct tcphdr *th, struct tcpopt *to, int optlen) argument
[all...]
H A Dtcp_output.c245 static struct mbuf* tcp_send_lroacks(struct tcpcb *tp, struct mbuf *m, struct tcphdr *th);
287 struct tcphdr *th; local
774 * 2. send buffer is filled to 7/8th with data (so we actually
1679 th = (struct tcphdr *)(void *)(ip6 + 1);
1680 tcp_fillheaders(tp, ip6, th);
1695 th = (struct tcphdr *)(void *)(ip + 1);
1697 tcp_fillheaders(tp, ip, th);
1731 th->th_seq = htonl(tp->snd_nxt);
1733 th->th_seq = htonl(tp->snd_max);
1735 th
2567 tcp_send_lroacks(struct tcpcb *tp, struct mbuf *m, struct tcphdr *th) argument
[all...]
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Dbork.pl36 o => 'u', the => 'zee', The => 'Zee', th => 't', tion => 'shun',
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Dbork.pl36 o => 'u', the => 'zee', The => 'Zee', th => 't', tion => 'shun',
/macosx-10.10/bind9-45.101/bind9/lib/isc/win32/
H A Dcondition.c87 newthread->th = thrd;
112 if (threadcond->th == thrd) {
/macosx-10.10/iodbc-42.5/iodbc/
H A DAUTHORS37 Tim Haynes <webmaster{at}iodbc.org> (th)
/macosx-10.10/ntp-92/lib/isc/win32/
H A Dcondition.c87 newthread->th = thrd;
112 if (threadcond->th == thrd) {
/macosx-10.10/vim-55/runtime/compiler/
H A Dtidy.vim7 " NOTE: set 'tidy_compiler_040800' if you are using the 4th August 2000 release
/macosx-10.10/apache-793/httpd/docs/manual/style/css/
H A Dmanual.css356 td, th {
364 th {
378 th.data {
386 tr.header, tr.header th {
399 table.bordered table th {
404 table.bordered th,
406 table table.bordered th {
444 table.module th,
445 table.directive th {
493 table#legend table th {
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-report/
H A Dtests-results.css83 table.summary th {
134 table.tcs-summary th {
/macosx-10.10/emacs-93/emacs/src/m/
H A Dirist.h57 But since this code is only used for an optional 4th argument to one command
/macosx-10.10/ruby-106/ruby/lib/shell/
H A Dprocess-controller.rb256 Thread.list.each do |th|
257 # th.kill unless [Thread.main, Thread.current].include?(th)
258 th.kill unless Thread.current == th
/macosx-10.10/ruby-106/ruby/test/resolv/
H A Dtest_dns.rb36 th = Thread.new {
101 result = th.value
110 th.join
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_signal.rb206 th = Thread.new do
215 Thread.pass while th.running?
217 th.join
H A Dtest_settracefunc.rb313 th = Thread.new do
314 th = Thread.current
317 1: th.set_trace_func(prc)
318 2: th.add_trace_func(prc2)
325 9: th.set_trace_func(nil)
328 th.join
415 th = Thread.start {sleep}
418 th.set_trace_func(lambda {|*|})
422 th.kill
426 th
[all...]
H A Denvutil.rb85 [th_stdout, th_stderr].each do |th|
86 th.kill if th
91 [th_stdout, th_stderr].each do |th|
92 th.join if th
/macosx-10.10/ruby-106/ruby/
H A Dvm_insnhelper.h98 REG_CFP = th->cfp; \
148 #define GET_SP_COUNT() (REG_SP - th->stack)
194 VALUE v = (*(ci)->call)(th, GET_CFP(), (ci)); \
/macosx-10.10/ruby-106/ruby/test/rinda/
H A Dtest_rinda.rb110 def thread_join(th)
111 while th.alive?
115 th.value
243 th = Thread.new { @ts.take([:empty], 1) }
246 thread_join(th)
249 th = Thread.new { @ts.read([:empty], 1) }
252 thread_join(th)
/macosx-10.10/xnu-2782.1.97/tools/lldbmacros/
H A Dnet.py793 out_string += "\nAlloc: (thread " + hex(rtd.rtd_alloc.th) + "):\n"
804 out_string += "\nFree: (thread " + hex(rtd.rtd_free.th) + "):\n"
816 out_string += "\nHold [" + str(int(cnt)) + "] (thread " + hex(rtd.rtd_refhold[cnt].th) + "):\n"
830 out_string += "\nRelease [" + str(int(cnt)) + "] (thread " + hex(rtd.rtd_refrele[cnt].th) + "):\n"
847 out_string += "\nLock [" + str(int(cnt)) + "] (thread " + hex(rtd.rtd_lock[cnt].th) + "):\n"
861 out_string += "\nUnlock [" + str(int(cnt)) + "] (thread " + hex(rtd.rtd_unlock[cnt].th) + "):\n"
891 out_string += "\nAlloc: (thread " + hex(inifa.inifa_alloc.th) + "):\n"
902 out_string += "\nFree: (thread " + hex(inifa.inifa_free.th) + "):\n"
914 out_string += "\nHold [" + str(int(cnt)) + "] (thread " + hex(inifa.inifa_refhold[cnt].th) + "):\n"
928 out_string += "\nRelease [" + str(int(cnt)) + "] (thread " + hex(inifa.inifa_refrele[cnt].th)
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/kdp/
H A Dkdp_udp.c1571 struct corehdr *th = NULL; local
1601 th = create_panic_header(request, corename, (unsigned)length, panic_block);
1609 memset(th->th_data + length, 'Y',
1613 if (!kdp_machine_vm_read((mach_vm_address_t)(uintptr_t)panic_data, (caddr_t) th->th_data, length)) {
1615 memset((caddr_t) th->th_data, 'X', (size_t)length);
1618 if (!kdp_machine_vm_read((mach_vm_address_t)(uintptr_t)next_page, (caddr_t) th->th_data + (length - resid), resid)) {
1619 memset((caddr_t) th->th_data + (length - resid), 'X', (size_t)resid);
1626 *(uint64_t *) th->th_data = OSSwapHostToBigInt64((*(uint64_t *) panic_data));
1628 *(unsigned int *) th->th_data = htonl(*(unsigned int *) panic_data);
1644 th
[all...]
/macosx-10.10/emacs-93/emacs/lisp/calc/
H A Dcalc-cplx.el99 (th (math-normalize (nth 2 a))))
102 ((or (math-zerop th))
105 (or (equal th '(float 18 1))
106 (equal th 180)))
109 (math-neg (list 'polar (math-neg r) th)))
111 (list 'polar r th)))))
/macosx-10.10/xnu-2782.1.97/tools/lldbmacros/core/
H A Doperating_system.py738 th = self.version.CreateValueFromExpression(str(th_ptr),'(struct thread *)' + str(th_ptr))
739 thread_id = th.GetChildMemberWithName('thread_id').GetValueAsUnsigned()
744 'ptr' : th.GetValueAsUnsigned(),
745 'name' : hex(th.GetValueAsUnsigned()).rstrip('L'),
746 'queue' : hex(th.GetChildMemberWithName('wait_queue').GetValueAsUnsigned()).rstrip('L'),
789 th = processor_list_val.GetChildMemberWithName('active_thread')
790 th_id = th.GetChildMemberWithName('thread_id').GetValueAsUnsigned()
792 self.processors.append({'active_thread': th.GetValueAsUnsigned(), 'cpu_id': cpu_id})
793 self.create_thread(th_id, th.GetValueAsUnsigned())
813 for th i
[all...]
/macosx-10.10/llvmCore-3425.0.34/docs/_static/
H A Dllvm.css18 th { border: 2px solid gray; font-weight: bold; font-size: 105%;
102 th.layout { border: none; font-weight: bold; font-size: 105%;

Completed in 212 milliseconds

1234567891011>>