Home
last modified time | relevance | path

Searched full:late (Results 1 – 25 of 584) sorted by relevance

12345678910>>...24

/freebsd/tests/sys/sys/
H A Dbitstring_test.c881 size_t early = 5, late = nbits - 5; in ATF_TC_BODY() local
925 /* Set, test, and clear a late bit */ in ATF_TC_BODY()
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()
935 /* Set, test, and clear a late bit range */ in ATF_TC_BODY()
[all …]
/freebsd/libexec/rc/rc.d/
H A Dmountlate13 desc="Mount filesystems with \"late\" option from /etc/fstab"
21 # Mount "late" filesystems.
24 echo -n 'Mounting late filesystems:'
/freebsd/contrib/bmake/unit-tests/
H A Ddeptgt-main.mk27 .MAIN: too-late
28 too-late: .PHONY
29 @echo 'This target comes too late, there is already a .MAIN target.'
H A Dvar-op-expand.mk43 REF= too late
65 REF= too late
95 REF= too late
111 REF3= too late
112 .if ${VAR} != "<too late>"
203 LATER= late-value
204 .if ${INDIRECT} != "late-replaced"
H A Ddirective-ifmake.exp10 : late-target
14 make: stopped making "first second late-target !edge" in unit-tests
H A Ddirective-ifmake.mk60 .MAKEFLAGS: late-target
61 .ifmake late-target
113 first second unmentioned late-target \!edge:
H A Ddepsrc-usebefore-double-colon.mk27 # This command is not added to the "action" target since it comes too late.
30 @echo double-colon late
H A Dcond-late.mk1 # $NetBSD: cond-late.mk,v 1.8 2024/07/04 17:47:54 rillig Exp $
4 # expressions that are evaluated late, at expansion time.
H A Ddeptgt-begin.mk31 # .BEGIN target has been made, which is too late.
41 # .BEGIN target has been made, which is too late.
/freebsd/sbin/swapon/
H A Dswapon.873 .Dq late
79 .Dq late
99 .Dq late
116 .Dq late
H A Dswapon.c76 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/contrib/lib9p/
H A Dthreadpool.h93 * request may be too late: the request might finish anyway.
102 * *while* we're sending a response? In this case it's too late:
109 L9P_FLUSH_TOOLATE /* too late, already responding */
/freebsd/share/man/man4/
H A Dng_pptpgre.4154 used to keep data waiting for late packets.
158 Greater values allow the node to deliver packets being late after more
161 Defines time value in milliseconds used to wait for late packets.
/freebsd/sbin/mount/
H A Dmount.c209 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()
307 if (!hasopt(fs->fs_mntops, "late") && onlylate) in main()
309 if (hasopt(fs->fs_mntops, "late") && !late) in main()
745 } else if (strcmp(p, "late") == 0) { in mangle()
747 * "late" is used to prevent certain file in mangle()
748 * systems from being mounted before late in mangle()
H A Dmount.889 .Dq Li late
122 .Dq Li late .
127 .Dq Li late .
190 .It Cm late
/freebsd/tools/test/stress2/misc/
H A Dmountu.sh275 fprintf(stderr, "%s: Late read start.\n", name);
279 fprintf(stderr, "%s: Late read complete.\n", name);
281 fprintf(stderr, "%s: Late write start.\n", name);
285 fprintf(stderr, "%s: Late write complete.\n", name);
/freebsd/lib/libpmc/pmu-events/arch/arm64/ampere/emag/
H A Dcache.json108 "PublicDescription": "Level 1 data cache late miss",
111 "BriefDescription": "L1D cache late miss"
/freebsd/stand/ficl/softwords/
H A Doo.fr11 \ 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/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsargs.c184 * DESCRIPTION: Late (deferred) execution of region or field arguments
298 * DESCRIPTION: Get BufferField Buffer and Index. This implements the late
347 * DESCRIPTION: Get BankField BankValue. This implements the late
397 * the late evaluation of these attributes.
447 * the late evaluation of these attributes.
497 * DESCRIPTION: Get region address and length. This implements the late
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp598 ValueSeq &Late);
599 bool classifyInst(Instruction *UseI, ValueSeq &Early, ValueSeq &Late);
1157 ValueSeq &Cycle, ValueSeq &Early, ValueSeq &Late) { in classifyCycle() argument
1160 // will be "late". in classifyCycle()
1175 ValueSeq &First = !IsE ? Early : Late; in classifyCycle()
1179 ValueSeq &Second = IsE ? Early : Late; in classifyCycle()
1193 ValueSeq &Early, ValueSeq &Late) { in classifyInst() argument
1196 // values do have to be both early or both late. in classifyInst()
1200 if (Late.count(TV) || Late.count(FV)) in classifyInst()
1203 } else if (Late.count(TV) || Late.count(FV)) { in classifyInst()
[all …]
/freebsd/tools/tools/npe/npestats/
H A Dnpestats.c81 { 5, "late", "late", "late collisions" },
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLateEHPrepare.cpp27 #define DEBUG_TYPE "wasm-late-eh-prepare"
32 return "WebAssembly Late Prepare Exception"; in getPassName()
55 "WebAssembly Late Exception Preparation", false, false)
115 LLVM_DEBUG(dbgs() << "********** Late EH Prepare **********\n" in runOnMachineFunction()
/freebsd/sys/cddl/dev/profile/
H A Dprofile.c231 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/lib/libpmc/pmu-events/arch/x86/nehalemex/
H A Dother.json14 "EventName": "BPU_CLEARS.LATE",
16 "BriefDescription": "Late Branch Prediction Unit clears"
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULateCodeGenPrepare.cpp28 #define DEBUG_TYPE "amdgpu-late-codegenprepare"
37 WidenLoads("amdgpu-late-codegenprepare-widen-constant-loads",
61 return "AMDGPU IR late optimizations"; in getPassName()
509 "AMDGPU IR late optimizations", false, false)
514 "AMDGPU IR late optimizations", false, false)

12345678910>>...24