Home
last modified time | relevance | path

Searched refs:pivot (Results 1 – 25 of 61) sorted by relevance

123

/netbsd-src/share/i18n/csmapper/
H A DMakefile11 SRCS_charset.pivot+= charset.pivot.src
32 charset.pivot: ${SRCS_charset.pivot}
35 charset.pivot.pvdb: charset.pivot
38 FILES+= charset.pivot charset.pivot.pvdb
39 CLEANFILES+= charset.pivot charset.pivot.pvdb
/netbsd-src/external/bsd/ntp/dist/libntp/
H A Dntp_calgps.c193 TcNtpDatum * pivot, in _gpsntp_from_daytime() argument
205 retv.days = pivot->days; in _gpsntp_from_daytime()
208 if (pivot->secs < shift) { in _gpsntp_from_daytime()
209 int32_t lim = pivot->secs + shift; in _gpsntp_from_daytime()
211 (retv.secs == lim && retv.frac >= pivot->frac)); in _gpsntp_from_daytime()
213 int32_t lim = pivot->secs - shift; in _gpsntp_from_daytime()
215 (retv.secs == lim && retv.frac < pivot->frac)); in _gpsntp_from_daytime()
230 TcNtpDatum * pivot, in gpsntp_from_daytime2_ex() argument
234 TNtpDatum dpiv = *pivot; in gpsntp_from_daytime2_ex()
250 l_fp pivot, in gpsntp_from_daytime1_ex() argument
[all …]
H A Dcalyearstart.c25 calyearstart(u_int32 ntptime, const time_t *pivot) in calyearstart() argument
31 vlong = ntpcal_ntp_to_ntp(ntptime, pivot); in calyearstart()
44 calmonthstart(u_int32 ntptime, const time_t *pivot) in calmonthstart() argument
50 vlong = ntpcal_ntp_to_ntp(ntptime, pivot); in calmonthstart()
63 calweekstart(u_int32 ntptime, const time_t *pivot) in calweekstart() argument
69 vlong = ntpcal_ntp_to_ntp(ntptime, pivot); in calweekstart()
81 caldaystart(u_int32 ntptime, const time_t *pivot) in caldaystart() argument
86 vlong = ntpcal_ntp_to_ntp(ntptime, pivot); in caldaystart()
/netbsd-src/external/bsd/ntp/dist/include/
H A Dntp_calgps.h81 gpscal_from_weektime1(int32_t wsecs, l_fp fofs, l_fp pivot);
84 gpscal_from_weektime2(int32_t wsecs, l_fp fofs, TcGpsDatum *pivot);
116 gpsntp_from_daytime1_ex(TcCivilDate *dt, l_fp fofs, l_fp pivot, int/*BOOL*/ warp);
119 gpsntp_from_daytime1(TcCivilDate *dt, l_fp fofs, l_fp pivot) { in gpsntp_from_daytime1() argument
120 return gpsntp_from_daytime1_ex(dt, fofs, pivot, TRUE); in gpsntp_from_daytime1()
124 gpsntp_from_daytime2_ex(TcCivilDate *dt, l_fp fofs, TcNtpDatum *pivot, int/*BOOL*/ warp);
127 gpsntp_from_daytime2(TcCivilDate *dt, l_fp fofs, TcNtpDatum *pivot) { in gpsntp_from_daytime2() argument
128 return gpsntp_from_daytime2_ex(dt, fofs, pivot, TRUE); in gpsntp_from_daytime2()
/netbsd-src/lib/libc/citrus/
H A Dcitrus_csmapper.c103 find_best_pivot_pvdb(const char *src, const char *dst, char *pivot, in find_best_pivot_pvdb() argument
155 strlcpy(pivot, buf, pvlen); in find_best_pivot_pvdb()
246 find_best_pivot_lookup(const char *src, const char *dst, char *pivot, in find_best_pivot_lookup() argument
283 strlcpy(pivot, pivot_min, pvlen); in find_best_pivot_lookup()
291 find_best_pivot(const char *src, const char *dst, char *pivot, size_t pvlen, in find_best_pivot() argument
296 ret = find_best_pivot_pvdb(src, dst, pivot, pvlen, rnorm); in find_best_pivot()
298 ret = find_best_pivot_lookup(src, dst, pivot, pvlen, rnorm); in find_best_pivot()
306 const char *src, const char *pivot, const char *dst) in open_serial_mapper() argument
310 snprintf(buf, sizeof(buf), "%s/%s,%s/%s", src, pivot, pivot, dst); in open_serial_mapper()
347 char buf1[PATH_MAX], buf2[PATH_MAX], key[PATH_MAX], pivot[PATH_MAX]; in _citrus_csmapper_open() local
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
H A Dsorting.d617 (Range r, size_t pivot)
620 assert(pivot < r.length || r.length == 0 && pivot == 0);
626 r.swapAt(pivot, 0);
702 size_t pivot = pivotPartition(a, a.length / 2); variable
704 assert(a[0 .. pivot].all!(x => x <= a[pivot]));
705 assert(a[pivot .. $].all!(x => x >= a[pivot]));
713 size_t pivot; in test() local
716 pivot = pivotPartition!less(a, a.length / 2); in test()
718 assert(a[0 .. pivot].all!(x => x <= a[pivot])); in test()
719 assert(a[pivot .. $].all!(x => x >= a[pivot])); in test()
[all …]
/netbsd-src/external/bsd/ntp/dist/ntpd/
H A Dntp_leapsec.h201 extern int/*BOOL*/ leapsec_expired(uint32_t when, const time_t * pivot);
207 extern int32_t leapsec_daystolive(uint32_t when, const time_t * pivot);
222 const time_t * pivot);
238 const time_t * pivot);
248 const time_t * pivot);
254 const time_t * pivot);
274 const time_t * pivot);
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/
H A Dsorting.d620 (Range r, size_t pivot)
623 assert(pivot < r.length || r.length == 0 && pivot == 0, "pivot must be"
630 r.swapAt(pivot, 0);
709 size_t pivot = pivotPartition(a, a.length / 2); variable
711 assert(a[0 .. pivot].all!(x => x <= a[pivot]));
712 assert(a[pivot .. $].all!(x => x >= a[pivot]));
720 size_t pivot; in test() local
723 pivot = pivotPartition!less(a, a.length / 2); in test()
725 assert(a[0 .. pivot].all!(x => x <= a[pivot])); in test()
726 assert(a[pivot .. $].all!(x => x >= a[pivot])); in test()
[all …]
/netbsd-src/share/i18n/csmapper/CP/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.CP
7 CLEANFILES+= mapper.dir.CP charset.pivot.CP
25 charset.pivot.CP: ${.CURDIR}/CP/CP.part ${.CURDIR}/CP/charset.pivot.CP.src
33 cat ${.CURDIR}/CP/charset.pivot.CP.src;\
/netbsd-src/share/i18n/csmapper/CBM/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.CBM
7 CLEANFILES+= mapper.dir.CBM charset.pivot.CBM
15 charset.pivot.CBM: ${.CURDIR}/CBM/charset.pivot.CBM.src
/netbsd-src/share/i18n/csmapper/TCVN/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.TCVN
7 CLEANFILES+= mapper.dir.TCVN charset.pivot.TCVN
17 charset.pivot.TCVN: ${.CURDIR}/TCVN/charset.pivot.TCVN.src
/netbsd-src/share/i18n/csmapper/KAZAKH/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.KAZAKH
7 CLEANFILES+= mapper.dir.KAZAKH charset.pivot.KAZAKH
17 charset.pivot.KAZAKH: ${.CURDIR}/KAZAKH/charset.pivot.KAZAKH.src
/netbsd-src/share/i18n/csmapper/KS/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.KS
7 CLEANFILES+= mapper.dir.KS charset.pivot.KS
19 charset.pivot.KS: ${.CURDIR}/KS/charset.pivot.KS.src
/netbsd-src/share/i18n/csmapper/KOI/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.KOI
7 CLEANFILES+= mapper.dir.KOI charset.pivot.KOI
35 charset.pivot.KOI: ${.CURDIR}/KOI/KOI8.part charset.pivot.KOI.src
38 cat ${.CURDIR}/KOI/charset.pivot.KOI.src; \
/netbsd-src/share/i18n/csmapper/MISC/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.MISC
7 CLEANFILES+= mapper.dir.MISC charset.pivot.MISC
27 charset.pivot.MISC: ${.CURDIR}/MISC/charset.pivot.MISC.src
/netbsd-src/share/i18n/csmapper/GB/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.GB
7 CLEANFILES+= mapper.dir.GB charset.pivot.GB
31 charset.pivot.GB: ${.CURDIR}/GB/charset.pivot.GB.src
/netbsd-src/share/i18n/csmapper/BIG5/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.BIG5
7 CLEANFILES+= mapper.dir.BIG5 charset.pivot.BIG5
29 charset.pivot.BIG5: ${.CURDIR}/BIG5/charset.pivot.BIG5.src
/netbsd-src/share/i18n/csmapper/CNS/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.CNS
7 CLEANFILES+= mapper.dir.CNS charset.pivot.CNS
27 charset.pivot.CNS: ${.CURDIR}/CNS/charset.pivot.CNS.src
/netbsd-src/share/i18n/csmapper/JIS/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.JIS
7 CLEANFILES+= mapper.dir.JIS charset.pivot.JIS
37 charset.pivot.JIS: ${.CURDIR}/JIS/charset.pivot.JIS.src
/netbsd-src/external/bsd/openldap/dist/libraries/liblmdb/
H A Dmidl.c49 unsigned pivot = n >> 1; in mdb_midl_search() local
50 cursor = base + pivot + 1; in mdb_midl_search()
54 n = pivot; in mdb_midl_search()
58 n -= pivot + 1; in mdb_midl_search()
296 unsigned pivot = n >> 1; in mdb_mid2l_search() local
297 cursor = base + pivot + 1; in mdb_mid2l_search()
301 n = pivot; in mdb_mid2l_search()
305 n -= pivot + 1; in mdb_mid2l_search()
/netbsd-src/share/i18n/csmapper/ISO646/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.ISO646
7 CLEANFILES+= mapper.dir.ISO646 charset.pivot.ISO646
25 charset.pivot.ISO646: ${.CURDIR}/ISO646/ISO646.part
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/container/
H A Dtreap.d153 auto pivot = root.right; in Treap() local
154 root.right = pivot.left; in Treap()
155 pivot.left = root; in Treap()
156 return pivot; in Treap()
161 auto pivot = root.left; in Treap() local
162 root.left = pivot.right; in Treap()
163 pivot.right = root; in Treap()
164 return pivot; in Treap()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/util/container/
H A Dtreap.d153 auto pivot = root.right; in Treap() local
154 root.right = pivot.left; in Treap()
155 pivot.left = root; in Treap()
156 return pivot; in Treap()
161 auto pivot = root.left; in Treap() local
162 root.left = pivot.right; in Treap()
163 pivot.right = root; in Treap()
164 return pivot; in Treap()
/netbsd-src/share/i18n/csmapper/APPLE/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.APPLE
7 CLEANFILES+= mapper.dir.APPLE charset.pivot.APPLE
36 charset.pivot.APPLE: ${.CURDIR}/APPLE/MAC.part
/netbsd-src/share/i18n/csmapper/EBCDIC/
H A DMakefile.inc6 SRCS_charset.pivot+= charset.pivot.EBCDIC
7 CLEANFILES+= mapper.dir.EBCDIC charset.pivot.EBCDIC
24 charset.pivot.EBCDIC: ${.CURDIR}/EBCDIC/EBCDIC.part

123