Home
last modified time | relevance | path

Searched refs:th (Results 51 – 75 of 465) sorted by relevance

12345678910>>...19

/openbsd/gnu/usr.bin/binutils-2.17/gprof/po/
H A Dvi.po124 "\t\t Đồ thị gọi (có giải thích sau)\n"
133 "\t\t\tĐồ thị gọi\n"
160 " không có thời gian truyền bá\n"
307 msgstr "%s: tỷ lệ tính hiện trạng không tương thích với tập tin gmon thứ nhất\n"
312 msgstr "%s: không tương thích với tập tin gmon thứ nhất\n"
352 msgstr "\t%d mục đồ thị gọi\n"
357 msgstr "\t%d mục đồ thị gọi\n"
393 "\t[--đường-dẫn-thư-mục=thư-mục] [--hiển-thị -các-chức-năng-chưa-được-sử-dụng]\n"
396 "\t[--đồ-thị-gọi-tĩnh] [--cộng] [--độ-dài-bảng=dài] [--truyền-thống]\n"
398 "\t[--tháo-gõ[=KIỂU]] [--không-tháo-gõ]\n"
[all …]
/openbsd/sys/dev/pci/
H A Dif_iwivar.h121 struct iwi_rx_radiotap_header th; member
124 #define sc_rxtap sc_rxtapu.th
128 struct iwi_tx_radiotap_header th; member
131 #define sc_txtap sc_txtapu.th
H A Dif_ipwvar.h137 struct ipw_rx_radiotap_header th; member
140 #define sc_rxtap sc_rxtapu.th
144 struct ipw_tx_radiotap_header th; member
147 #define sc_txtap sc_txtapu.th
H A Dif_wpivar.h189 struct wpi_rx_radiotap_header th; member
192 #define sc_rxtap sc_rxtapu.th
196 struct wpi_tx_radiotap_header th; member
199 #define sc_txtap sc_txtapu.th
/openbsd/sys/dev/usb/
H A Dif_ralvar.h128 struct ural_rx_radiotap_header th; member
131 #define sc_rxtap sc_rxtapu.th
135 struct ural_tx_radiotap_header th; member
138 #define sc_txtap sc_txtapu.th
H A Dif_rumvar.h135 struct rum_rx_radiotap_header th; member
138 #define sc_rxtap sc_rxtapu.th
142 struct rum_tx_radiotap_header th; member
145 #define sc_txtap sc_txtapu.th
H A Dif_uathvar.h143 struct uath_rx_radiotap_header th; member
146 #define sc_rxtap sc_rxtapu.th
150 struct uath_tx_radiotap_header th; member
153 #define sc_txtap sc_txtapu.th
H A Dif_runvar.h198 struct run_rx_radiotap_header th; member
201 #define sc_rxtap sc_rxtapu.th
205 struct run_tx_radiotap_header th; member
208 #define sc_txtap sc_txtapu.th
/openbsd/sys/dev/ic/
H A Dmalo.h114 struct malo_rx_radiotap_hdr th; member
117 #define sc_rxtap sc_rxtapu.th
121 struct malo_tx_radiotap_hdr th; member
124 #define sc_txtap sc_txtapu.th
H A Drt2560var.h153 struct rt2560_rx_radiotap_header th; member
156 #define sc_rxtap sc_rxtapu.th
160 struct rt2560_tx_radiotap_header th; member
163 #define sc_txtap sc_txtapu.th
H A Drt2661var.h177 struct rt2661_rx_radiotap_header th; member
180 #define sc_rxtap sc_rxtapu.th
184 struct rt2661_tx_radiotap_header th; member
187 #define sc_txtap sc_txtapu.th
H A Dpgtvar.h198 struct pgt_rx_radiotap_hdr th; member
201 #define sc_rxtap sc_rxtapu.th
205 struct pgt_tx_radiotap_hdr th; member
208 #define sc_txtap sc_txtapu.th
H A Dacxreg.h413 struct tim_head th; member
418 #define tim_eid data.u_data.th.eid
419 #define tim_len data.u_data.th.len
420 #define tim_dtim_count data.u_data.th.dtim_count
421 #define tim_dtim_period data.u_data.th.dtim_period
422 #define tim_bitmap_ctrl data.u_data.th.bitmap_ctrl
/openbsd/usr.sbin/trpt/
H A Dtrpt.c311 struct tcphdr *th; in tcp_trace() local
315 th = &ti->ti_t; in tcp_trace()
317 th = &ti6->ti6_t; in tcp_trace()
340 seq = th->th_seq; in tcp_trace()
341 ack = th->th_ack; in tcp_trace()
346 win = th->th_win; in tcp_trace()
359 flags = th->th_flags; in tcp_trace()
363 if (th->th_flags & flag) { \ in tcp_trace()
/openbsd/gnu/usr.bin/perl/t/mro/
H A Dcomplex_c3_utf8.t69 sub testmèth { "wrong" }
79 sub testmèth { "right" }
86 sub testmèth { shift->next::method }
144 is(텟Ṱ::Ḵ->testmèth(), "right", 'next::method working ok');
/openbsd/gnu/usr.bin/binutils/gdb/testsuite/gdb.threads/
H A Dthread_check.c53 pthread_t th[N]; in main() local
56 if (pthread_create (&th[n], NULL, tf, (void *) (long int) n) != 0) in main()
67 if (pthread_join (th[n], NULL) != 0) in main()
/openbsd/sys/netinet/
H A Dtcp_output.c201 struct tcphdr *th; in tcp_output() local
796 th->th_seq = htonl(tp->snd_nxt); in tcp_output()
798 th->th_seq = htonl(tp->snd_max); in tcp_output()
808 th->th_seq = htonl(p->rxmit); in tcp_output()
813 th->th_ack = htonl(tp->rcv_nxt); in tcp_output()
815 memcpy(th + 1, opt, optlen); in tcp_output()
851 th->th_flags = flags; in tcp_output()
866 if (th->th_win == 0) in tcp_output()
873 th->th_flags |= TH_URG; in tcp_output()
1203 struct tcphdr *th; in tcp_chopper() local
[all …]
/openbsd/usr.bin/pctr/
H A Dpctr.c248 char th[6], um[5], *msg; in pctr_fn2str() local
253 bzero(th, sizeof(th)); in pctr_fn2str()
288 snprintf(th, sizeof(th), "+%d", in pctr_fn2str()
295 fn, (sel >> PCTR_UM_SHIFT) & 0xff, th, um, msg); in pctr_fn2str()
300 snprintf(th, sizeof(th), "+%d", in pctr_fn2str()
307 fn, (sel >> PCTR_UM_SHIFT) & 0xff, th); in pctr_fn2str()
/openbsd/gnu/usr.bin/perl/dist/threads-shared/t/
H A Dcond.t206 my $th;
211 $th = threads->create(\&broad, $n-1);
220 $th->join if $th;
237 my $th;
242 $th = threads->create(\&broad2, $n-1);
251 $th->join if $th;
/openbsd/lib/libcrypto/bn/
H A Dbn_div.c89 BN_ULONG dh, dl, q,ret = 0, th, tl, t; in bn_div_words() local
115 th = q * dh; in bn_div_words()
118 t = h - th; in bn_div_words()
125 th -= dh; in bn_div_words()
130 th += t; in bn_div_words()
133 th++; in bn_div_words()
135 if (h < th) { in bn_div_words()
139 h -= th; in bn_div_words()
/openbsd/sys/lib/libkern/arch/hppa/
H A Dmilli.S488 ds temp,arg1,temp ; 4th divide step
490 ds temp,arg1,temp ; 5th divide step
492 ds temp,arg1,temp ; 6th divide step
494 ds temp,arg1,temp ; 7th divide step
496 ds temp,arg1,temp ; 8th divide step
498 ds temp,arg1,temp ; 9th divide step
500 ds temp,arg1,temp ; 10th divide step
502 ds temp,arg1,temp ; 11th divide step
504 ds temp,arg1,temp ; 12th divide step
506 ds temp,arg1,temp ; 13th divide step
[all …]
/openbsd/gnu/usr.bin/perl/cpan/Unicode-Collate/t/
H A Dloc_cy.t59 ok($objCy->lt("t", "th"));
60 ok($objCy->lt("tz","th"));
61 ok($objCy->gt("u", "th"));
81 ok($objCy->eq("th", "Th"));
102 ok($objCy->lt("th", "Th"));
123 ok($objCy->gt("th", "Th"));
/openbsd/gnu/llvm/compiler-rt/lib/tsan/benchmarks/
H A Dmop.cpp48 pthread_t th; in test() local
49 pthread_create(&th, 0, thread<T, write>, (void*)1); in test()
51 pthread_join(th, 0); in test()
/openbsd/gnu/usr.bin/perl/t/porting/
H A Dtest_testlist.t19 my (%th, %tt, %all);
27 $th{$file}++;
33 delete $th{$file} or $tt{$file}++;
36 is(0+keys(%th), 0, "t/harness will not test anything that t/TEST does not")
37 or print STDERR map { "# t/harness: $_\n" } sort keys %th;
/openbsd/sys/net/
H A Dpf_norm.c1130 struct tcphdr *th = &pd->hdr.tcp; in pf_normalize_tcp() local
1135 flags = th->th_flags; in pf_normalize_tcp()
1156 if (flags != th->th_flags || th->th_x2 != 0) { in pf_normalize_tcp()
1167 pf_patch_16(pd, &th->th_urp, 0); in pf_normalize_tcp()
1173 m_copyback(pd->m, pd->off, sizeof(*th), th, M_NOWAIT); in pf_normalize_tcp()
1186 struct tcphdr *th = &pd->hdr.tcp; in pf_normalize_tcp_init() local
1221 olen = (th->th_off << 2) - sizeof(*th); in pf_normalize_tcp_init()
1301 olen = (th->th_off << 2) - sizeof(*th); in pf_normalize_tcp_stateful()
1514 pf_print_flags(th->th_flags); in pf_normalize_tcp_stateful()
1563 pf_print_flags(th->th_flags); in pf_normalize_tcp_stateful()
[all …]

12345678910>>...19