Home
last modified time | relevance | path

Searched refs:split (Results 1 – 25 of 2292) sorted by relevance

12345678910>>...92

/netbsd/external/bsd/ntp/dist/libntp/
H A Dcalyearstart.c29 ntpcal_split split; in calyearstart() local
32 split = ntpcal_daysplit(&vlong); in calyearstart()
33 ndays = ntpcal_rd_to_ystart(split.hi + DAY_NTP_STARTS) in calyearstart()
48 ntpcal_split split; in calmonthstart() local
51 split = ntpcal_daysplit(&vlong); in calmonthstart()
52 ndays = ntpcal_rd_to_mstart(split.hi + DAY_NTP_STARTS) in calmonthstart()
67 ntpcal_split split; in calweekstart() local
70 split = ntpcal_daysplit(&vlong); in calweekstart()
84 ntpcal_split split; in caldaystart() local
87 split = ntpcal_daysplit(&vlong); in caldaystart()
[all …]
H A Dntp_calgps.c256 ntpcal_split split; in gpsntp_from_daytime1_ex() local
260 dpiv.days = split.hi; in gpsntp_from_daytime1_ex()
261 dpiv.secs = split.lo; in gpsntp_from_daytime1_ex()
309 ntpcal_split split; in gpsntp_from_gpscal_ex() local
323 retv.secs = split.lo; in gpsntp_from_gpscal_ex()
324 retv.days = split.hi; in gpsntp_from_gpscal_ex()
582 ntpcal_split split; in gpscal_from_weektime1() local
591 wpiv.weeks = split.hi; in gpscal_from_weektime1()
592 wpiv.wsecs = split.lo; in gpscal_from_weektime1()
607 ntpcal_split split; in gpscal_from_gpsntp() local
[all …]
H A Dntp_calendar.c837 int32_t split[3], in priv_timesplit()
1002 ntpcal_split split; in ntpcal_rd_to_date() local
1016 split.hi += 1; in ntpcal_rd_to_date()
1017 ymask = 0u - ((split.hi >> 16) == 0); in ntpcal_rd_to_date()
1022 split = ntpcal_split_yeardays(split.lo, leapy); in ntpcal_rd_to_date()
1040 ntpcal_split split; in ntpcal_rd_to_tm() local
1048 utm->tm_year = split.hi - 1899; in ntpcal_rd_to_tm()
1052 split = ntpcal_split_yeardays(split.lo, leapy); in ntpcal_rd_to_tm()
1542 ntpcal_split split; in ntpcal_rd_to_mstart() local
1546 split = ntpcal_split_yeardays(split.lo, leaps); in ntpcal_rd_to_mstart()
[all …]
/netbsd/external/bsd/atf/dist/atf-c++/detail/
H A Dtext_test.cpp162 ATF_TEST_CASE(split);
163 ATF_TEST_CASE_HEAD(split) in ATF_TEST_CASE_HEAD() argument
167 ATF_TEST_CASE_BODY(split) in ATF_TEST_CASE_BODY() argument
169 using atf::text::split; in ATF_TEST_CASE_BODY()
173 words = split("", " "); in ATF_TEST_CASE_BODY()
176 words = split(" ", " "); in ATF_TEST_CASE_BODY()
182 words = split("a b", " "); in ATF_TEST_CASE_BODY()
234 using atf::text::split; in ATF_TEST_CASE_BODY()
238 words = split("", "/"); in ATF_TEST_CASE_BODY()
241 words = split(" ", "/"); in ATF_TEST_CASE_BODY()
[all …]
/netbsd/external/bsd/atf/dist/tools/
H A Dtext_test.cpp162 ATF_TEST_CASE(split);
163 ATF_TEST_CASE_HEAD(split) in ATF_TEST_CASE_HEAD() argument
167 ATF_TEST_CASE_BODY(split) in ATF_TEST_CASE_BODY() argument
169 using tools::text::split; in ATF_TEST_CASE_BODY()
173 words = split("", " "); in ATF_TEST_CASE_BODY()
176 words = split(" ", " "); in ATF_TEST_CASE_BODY()
182 words = split("a b", " "); in ATF_TEST_CASE_BODY()
234 using tools::text::split; in ATF_TEST_CASE_BODY()
238 words = split("", "/"); in ATF_TEST_CASE_BODY()
241 words = split(" ", "/"); in ATF_TEST_CASE_BODY()
[all …]
/netbsd/tests/net/bpf/
H A Dt_mbuf.c53 test_ldb_abs(size_t split) in test_ldb_abs() argument
90 test_ldh_abs(size_t split) in test_ldh_abs() argument
120 test_ldw_abs(size_t split) in test_ldw_abs() argument
142 test_ldb_ind(size_t split) in test_ldb_ind() argument
183 test_ldw_ind(size_t split) in test_ldw_ind() argument
212 test_ldh_ind(size_t split) in test_ldh_ind() argument
246 test_msh(size_t split) in test_msh() argument
285 test_ldb_abs_overflow(size_t split) in test_ldb_abs_overflow() argument
302 test_ldh_abs_overflow(size_t split) in test_ldh_abs_overflow() argument
319 test_ldw_abs_overflow(size_t split) in test_ldw_abs_overflow() argument
[all …]
H A Dh_bpf.h60 unsigned char pkt[], size_t pktsize, size_t split) in init_mchain2() argument
65 mb1->m_next = (split < pktsize) ? mb2 : NULL; in init_mchain2()
66 mb1->m_len = (split < pktsize) ? split : pktsize; in init_mchain2()
68 if (split < pktsize) { in init_mchain2()
71 mb2->m_data = (char *)&pkt[split]; in init_mchain2()
72 mb2->m_len = pktsize - split; in init_mchain2()
111 unsigned char pkt[], size_t pktsize, size_t split) in interp_prog_mchain2() argument
118 args.pkt = init_mchain2(&mb1, &mb2, pkt, pktsize, split); in interp_prog_mchain2()
135 unsigned char pkt[], size_t pktsize, size_t split) in exec_prog_mchain2() argument
142 args.pkt = init_mchain2(&mb1, &mb2, pkt, pktsize, split); in exec_prog_mchain2()
/netbsd/tests/net/bpfjit/
H A Dt_mbuf.c54 test_ldb_abs(size_t split) in test_ldb_abs() argument
92 test_ldh_abs(size_t split) in test_ldh_abs() argument
123 test_ldw_abs(size_t split) in test_ldw_abs() argument
146 test_ldb_ind(size_t split) in test_ldb_ind() argument
188 test_ldw_ind(size_t split) in test_ldw_ind() argument
218 test_ldh_ind(size_t split) in test_ldh_ind() argument
253 test_msh(size_t split) in test_msh() argument
293 test_ldb_abs_overflow(size_t split) in test_ldb_abs_overflow() argument
311 test_ldh_abs_overflow(size_t split) in test_ldh_abs_overflow() argument
329 test_ldw_abs_overflow(size_t split) in test_ldw_abs_overflow() argument
[all …]
/netbsd/external/apache2/llvm/dist/clang/utils/analyzer/
H A DSumTimerInfo.py33 s = line.split()
39 s = line.split()
42 s = line.split()
45 s = line.split()
48 s = line.split()
51 s = line.split()
55 s = line.split()
58 s = line.split()
62 s = line.split()
65 s = line.split()
/netbsd/external/historical/nawk/dist/testdir/
H A Dlilly.progs67 {if(split($0,foo,/=/))print $0}
68 {if(split($0,foo,/\=/))print $0}
69 {if(split($0,foo,/==/))print $0}
70 {if(split($0,foo,/\+=/))print $0}
71 {if(split($0,foo,/\*=/))print $0}
72 {if(split($0,foo,/-=/))print $0}
74 {if(split($0,foo,/%=/))print $0}
75 {if(split($0,foo,/^=/))print $0}
76 {if(split($0,foo,/!=/))print $0}
77 {if(split($0,foo,/<=/))print $0}
[all …]
/netbsd/external/gpl3/gcc.old/dist/gcc/config/arm/
H A Dparsecpu.awk94 nbits = split (flist, bits)
101 split (gbits, bitsep, SUBSEP)
135 ncpus = split (cpu_list, cpus)
157 nfpus = split (fpu_list, fpus)
218 ncpus = split (cpu_list, cpus)
433 ncpus = split (cpu_list, cpus)
634 split(impl, impl_sep, SUBSEP)
642 split(bitcomb, bitsep, SUBSEP)
914 split (cmd, target)
917 split (cmd, target)
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/config/arm/
H A Dparsecpu.awk94 nbits = split (flist, bits)
101 split (gbits, bitsep, SUBSEP)
135 ncpus = split (cpu_list, cpus)
157 nfpus = split (fpu_list, fpus)
218 ncpus = split (cpu_list, cpus)
433 ncpus = split (cpu_list, cpus)
634 split(impl, impl_sep, SUBSEP)
642 split(bitcomb, bitsep, SUBSEP)
914 split (cmd, target)
917 split (cmd, target)
[all …]
/netbsd/sys/arch/hpc/stand/dspgen/
H A Ddo_subst.awk36 sz = split(ENVIRON[env], a, "[ \t\n]+");
69 sz = split(ENVIRON["SRCFILE_LIST"], a, "[ \t\n]+");
92 sz = split(ENVIRON["STD_CPPDEF_LIST"], a, "[ \t\n]+");
104 sz = split(ENVIRON["CPPDEF_LIST"], a, "[ \t\n]+");
118 sz = split(ENVIRON["STD_INCDIR_LIST"], a, "[ \t\n]+");
128 sz = split(ENVIRON["INCDIR_LIST"], a, "[ \t\n]+");
138 sz = split(ENVIRON["LIBDEP_LIST"], a, "[ \t\n]+");
150 sz = split(ENVIRON["STD_LIBRARY_LIST"], a, "[ \t\n]+");
160 sz = split(ENVIRON["LIBRARY_LIST"], a, "[ \t\n]+");
170 sz = split(ENVIRON["LIBDEP_LIST"], a, "[ \t\n]+");
[all …]
/netbsd/external/bsd/tmux/dist/
H A Dcmd-refresh-client.c48 char *copy, *split, *name, *what; in cmd_refresh_client_update_subscription() local
53 if ((split = strchr(copy, ':')) == NULL) { in cmd_refresh_client_update_subscription()
57 *split++ = '\0'; in cmd_refresh_client_update_subscription()
59 what = split; in cmd_refresh_client_update_subscription()
60 if ((split = strchr(what, ':')) == NULL) in cmd_refresh_client_update_subscription()
62 *split++ = '\0'; in cmd_refresh_client_update_subscription()
136 char *copy, *split; in cmd_refresh_client_update_offset() local
144 *split++ = '\0'; in cmd_refresh_client_update_offset()
152 if (strcmp(split, "on") == 0) in cmd_refresh_client_update_offset()
154 else if (strcmp(split, "off") == 0) in cmd_refresh_client_update_offset()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/utils/Target/ARM/
H A Danalyze-match-table.py10 lines = data[start:end].split("\n")[1:]
15 ln = ln.split("{", 1)[1]
17 a,bc = ln.split("{", 1)
18 b,c = bc.split("}", 1)
20 for s in a.split(",")]
21 items = [s.strip() for s in b.split(",")]
22 _,features = [s.strip() for s in c.split(",")]
/netbsd/external/ibm-public/postfix/dist/src/smtp/
H A Dsmtp_map11.ref1 …= bar } { baz@example.com = @com.example } { splitme@example.com = "split me"@com.example } }
6 external:splitme@example.com -> "split me"@com.example
7 external:splitme+ext@example.com -> "split me+ext"@com.example
13 tree:splitme@example.com -> "split me"@com.example
14 tree:splitme+ext@example.com -> "split me+ext"@com.example
20 internal:splitme@example.com -> split me@com.example
21 internal:splitme+ext@example.com -> split me+ext@com.example
H A Dsmtp_map11.in6 { splitme@example.com = "split me"@com.example } }
13 external splitme@example.com:"split me"@com.example
14 external splitme+ext@example.com:"split me+ext"@com.example
22 tree splitme@example.com:"split me"@com.example
23 tree splitme+ext@example.com:"split me+ext"@com.example
31 internal splitme@example.com:split me@com.example
32 internal splitme+ext@example.com:split me+ext@com.example
/netbsd/external/gpl3/gcc/dist/gcc/
H A Dgenemit.c558 rtx split = info->def; in gen_split() local
564 if (XVEC (split, 0) == 0) in gen_split()
566 GET_RTX_NAME (GET_CODE (split))); in gen_split()
567 else if (XVEC (split, 2) == 0) in gen_split()
569 GET_RTX_NAME (GET_CODE (split))); in gen_split()
578 if (GET_CODE (split) == DEFINE_PEEPHOLE2) in gen_split()
602 output_peephole2_scratches (split); in gen_split()
618 if (XSTR (split, 3)) in gen_split()
720 output_peephole2_scratches (rtx split) in output_peephole2_scratches() argument
726 for (i = 0; i < XVECLEN (split, 0); i++) in output_peephole2_scratches()
[all …]
H A Dgenemit.cc561 rtx split = info->def; in gen_split() local
567 if (XVEC (split, 0) == 0) in gen_split()
569 GET_RTX_NAME (GET_CODE (split))); in gen_split()
570 else if (XVEC (split, 2) == 0) in gen_split()
572 GET_RTX_NAME (GET_CODE (split))); in gen_split()
581 if (GET_CODE (split) == DEFINE_PEEPHOLE2) in gen_split()
605 output_peephole2_scratches (split); in gen_split()
621 if (XSTR (split, 3)) in gen_split()
723 output_peephole2_scratches (rtx split) in output_peephole2_scratches() argument
729 for (i = 0; i < XVECLEN (split, 0); i++) in output_peephole2_scratches()
[all …]
/netbsd/external/gpl3/gcc.old/dist/gcc/
H A Dgenemit.c558 rtx split = info->def; in gen_split() local
564 if (XVEC (split, 0) == 0) in gen_split()
566 GET_RTX_NAME (GET_CODE (split))); in gen_split()
567 else if (XVEC (split, 2) == 0) in gen_split()
569 GET_RTX_NAME (GET_CODE (split))); in gen_split()
578 if (GET_CODE (split) == DEFINE_PEEPHOLE2) in gen_split()
602 output_peephole2_scratches (split); in gen_split()
618 if (XSTR (split, 3)) in gen_split()
720 output_peephole2_scratches (rtx split) in output_peephole2_scratches() argument
726 for (i = 0; i < XVECLEN (split, 0); i++) in output_peephole2_scratches()
[all …]
/netbsd/external/gpl3/gcc/dist/maintainer-scripts/
H A Dbugzilla-close-candidate.py39 lines = text.split('\n')
44 parts = line.strip().split('/')
45 parts = parts[1].split('-')
54 name = line.strip().split(' ')[1]
56 name = name.split('/')[1]
58 version = name.split('-')[1]
/netbsd/external/bsd/ntp/dist/tests/libntp/
H A Dcalendar.c307 ntpcal_split split; in test_DaySplitMerge() local
312 split = ntpcal_daysplit(&merge); in test_DaySplitMerge()
325 TEST_ASSERT_EQUAL(eday, split.hi); in test_DaySplitMerge()
341 ntpcal_split split; in test_WeekSplitMerge() local
346 split = ntpcal_weeksplit(&merge); in test_WeekSplitMerge()
374 if (split.lo >= 0 && split.hi >= 0) { in test_SplitYearDays1()
376 TEST_ASSERT_TRUE(isGT(real_month_days[0][split.hi+1], split.lo)); in test_SplitYearDays1()
377 int32 tyd = real_month_table[0][split.hi] + split.lo; in test_SplitYearDays1()
393 if (split.lo >= 0 && split.hi >= 0) { in test_SplitYearDays2()
397 TEST_ASSERT_TRUE(isGT(real_month_days[1][split.hi+1], split.lo)); in test_SplitYearDays2()
[all …]
/netbsd/external/gpl2/gettext/dist/gettext-tools/doc/
H A DMakefile.am29 MAKEINFOFLAGS = $(TEXINCLUDES) --no-split
98 html-local: html-split
102 install-html: install-html-split
104 uninstall-html: uninstall-html-split
105 dist-html: dist-html-split
179 html-split: gettext_toc.html
198 install-html-split: gettext_toc.html
210 uninstall-html-split:
220 dist-html-split:
/netbsd/external/bsd/unbound/dist/contrib/
H A Dmetrics.awk77 split(x, a, ".");
89 split(x, a, ".");
101 split(x, a, ".");
113 split(x, a, ".");
125 split(x, a, ".");
/netbsd/external/gpl2/xcvs/dist/contrib/
H A Dcln_hist.in57 @tmp = split(/\|/, $_);
62 @tmp = split(/\|/, $_);
77 @tmp = split(/\|/, $_);
82 @tmp = split(/\|/, $_);

12345678910>>...92