/freebsd/tests/sys/sys/ |
H A D | bitstring_test.c | 881 size_t early = 5, late = nbits - 5; in ATF_TC_BODY() local 926 bit_set(b, late); in ATF_TC_BODY() 928 ATF_CHECK_EQ((ssize_t)late, fs); in ATF_TC_BODY() 929 ATF_CHECK_EQ(0, bit_test(b, late - 1)); in ATF_TC_BODY() 930 ATF_CHECK(bit_test(b, late) != 0); in ATF_TC_BODY() 931 ATF_CHECK_EQ(0, bit_test(b, late + 1)); in ATF_TC_BODY() 932 bit_clear(b, late); in ATF_TC_BODY() 933 ATF_CHECK_EQ(0, bit_test(b, late)); in ATF_TC_BODY() 936 bit_nset(b, late - 1, late + 1); in ATF_TC_BODY() 938 ATF_CHECK_EQ((ssize_t)late - 1, fs); in ATF_TC_BODY() [all …]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | var-op-expand.mk | 43 REF= too late 65 REF= too late 95 REF= too late 111 REF3= too late 203 LATER= late-value
|
H A D | directive-ifmake.mk | 60 .MAKEFLAGS: late-target 61 .ifmake late-target 113 first second unmentioned late-target \!edge:
|
H A D | deptgt-main.mk | 27 .MAIN: too-late 28 too-late: .PHONY
|
H A D | depsrc-usebefore-double-colon.mk | 30 @echo double-colon late
|
H A D | directive-include-guard.mk | 256 CASES+= variable-assign-late 257 LINES.variable-assign-late= \
|
H A D | Makefile | 88 TESTS+= cond-late
|
/freebsd/sys/cddl/dev/profile/ |
H A D | profile.c | 231 profile_probe(profile_probe_t *prof, hrtime_t late) in profile_probe() argument 257 dtrace_probe(prof->prof_id, pc, upc, late, 0, 0); in profile_probe() 266 hrtime_t late; in profile_fire() local 268 late = sbt_to_nsec(sbinuptime() - pcpu->profc_expected); in profile_fire() 270 profile_probe(prof, late); in profile_fire()
|
/freebsd/sbin/swapon/ |
H A D | swapon.c | 76 int sflag, lflag, late, hflag; in main() 79 sflag = lflag = late = hflag = 0; in main() 136 late = 1; in main() 177 strstr(fsp->fs_mntops, "late") && in main() 178 late == 0) in main() 181 strstr(fsp->fs_mntops, "late") == NULL && in main() 182 late != 0) in main() 330 } else if (strcmp(token, "late") == 0) { in swap_on_geli_args() 77 int sflag, lflag, late, hflag; main() local
|
/freebsd/sbin/mount/ |
H A D | mount.c | 209 int all, ch, i, init_flags, late, failok, mntsize, rval, have_fstab, ro; in main() local 213 all = init_flags = late = onlylate = 0; in main() 240 late = 1; in main() 243 late = 1; in main() 309 if (hasopt(fs->fs_mntops, "late") && !late) in main()
|
/freebsd/contrib/ntp/scripts/rc/ |
H A D | README | 5 before them as late as possible.
|
/freebsd/contrib/sendmail/cf/feature/ |
H A D | bestmx_is_local.m4 | 49 dnl we cannot use _LOCAL_ here since it is defined too late
|
/freebsd/stand/ficl/softwords/ |
H A D | oo.fr | 11 \ 0. Traditional OOP: late binding by default for safety. 133 \ interpreting. If compiling, bind late. 152 \ METHOD makes global words that do method invocations by late binding 157 \ my-instance next ( does whatever next does to my-instance by late binding ) 179 : my=> \ c:( -- ) run: ( -- ??? ) late bind compiled method of current-class 568 \ This method is late bound for safety...
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | RAND_set_DRBG_type.pod | 40 is made too late.
|
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/ |
H A D | README | 52 Text::Template was originally released some time in late 1995 or early
|
/freebsd/share/misc/ |
H A D | bsd-family-tree | 541 1BSD late 1977 564 3BSD late 1979 [QCU] March 1980 [TUHS] 572 4.1cBSD late 1982
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVSchedSiFive7.td | 288 // Rotates are in the late-B ALU. 294 // clz[w]/ctz[w] are in the late-B ALU. 304 // orc.b is in the late-B ALU. 307 // min/max are in the late-B ALU 310 // rev8 is in the late-A and late-B ALUs. 313 // shNadd[.uw] is on the early-B and late-B ALUs.
|
/freebsd/crypto/openssl/test/ |
H A D | sslapitest.c | 8902 SSL_SESSION *late = NULL; in test_session_timeout() local 8911 || !TEST_ptr(late = SSL_SESSION_new())) in test_session_timeout() 8919 late->session_id_length = SSL3_SSL_SESSION_ID_LENGTH; in test_session_timeout() 8920 memset(late->session_id, 3, SSL3_SSL_SESSION_ID_LENGTH); in test_session_timeout() 8924 || !TEST_int_eq(SSL_CTX_add_session(ctx, late), 1)) in test_session_timeout() 8930 || !TEST_ptr(late->prev)) in test_session_timeout() 8935 || !TEST_int_ne(SSL_SESSION_set_time(late, now + 10), 0)) in test_session_timeout() 8940 || !TEST_int_ne(SSL_SESSION_set_timeout(late, TIMEOUT), 0)) in test_session_timeout() 8946 || !TEST_ptr(late->prev)) in test_session_timeout() 8950 if (!TEST_ptr_eq(late->next, middle) in test_session_timeout() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Attr.td | 604 // Enumeration specifying what kind of behavior should be used for late 610 // Never late parsed 613 // Standard late attribute parsing 617 // * For C++ enables late parsing of a declaration attributes 618 // * For C does not enable late parsing of attributes 622 // Experimental extension to standard late attribute parsing 625 // late parsing attributes in more contexts. 627 // In contexts where `LateAttrParseStandard` attributes are late 629 // be late parsed. 631 // In contexts that only late parse `LateAttrParseExperimentalExt` attributes [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | micrel-ksz90x1.txt | 19 before it was corrected in revision 1.2 (Feb 2014), but it is too late to
|
/freebsd/contrib/libpcap/doc/ |
H A D | README.hpux | 32 1. You do need a late "LAN products cumulative patch" (e.g. PHNE_18173
|
/freebsd/sbin/pfctl/ |
H A D | pf.os | 251 # many submissions for this for many late versions of 2.4: 252 T4:64:1:60:M1412,S,T,N,W0: Linux:2.4::Linux 2.4 (late, uncommon)
|
/freebsd/contrib/bmake/ |
H A D | FILES | 133 unit-tests/cond-late.exp 134 unit-tests/cond-late.mk
|
/freebsd/usr.bin/bmake/unit-tests/ |
H A D | Makefile | 91 TESTS+= cond-late
|
/freebsd/contrib/libpcap/ |
H A D | INSTALL.md | 153 HP-UX 10, you will, apparently, need a late "LAN products cumulative
|