/src/usr.bin/make/unit-tests/ |
deptgt-begin.mk | 4 # which is a container for commands that are run before any other 23 # custom target are run even before the .BEGIN target. 24 .BEGIN: before-begin 25 before-begin: .PHONY .NOTMAIN 26 : Making $@ before .BEGIN. 36 # Same as with .USE, but run the commands before the main commands from the 42 .BEGIN: use-before 43 use-before: .USEBEFORE .NOTMAIN
|
depsrc-usebefore.mk | 16 # Before make.h 1.280 from 2021-12-28, a .USEBEFORE target was accidentally 25 ordering: before-1 before-2 after-1 after-2 27 before-1: .USEBEFORE before-1-before-1 before-1-before-2 before-1-after-1 before-1-after- [all...] |
suff-use.mk | 4 # additional command before and after successful compilation of a .c file. 43 using-before: .USEBEFORE 44 : 'Before making ${.TARGET} from ${.ALLSRCS}' 50 .c.o: using-before using-after
|
cmd-errors-jobs.mk | 74 .BEGIN: before-begin 76 before-begin: 98 .END: before-end 100 before-end:
|
cmd-interrupt.mk | 20 all: clean-before 27 clean-before clean-after: .PHONY
|
/src/usr.bin/indent/ |
parse.c | 245 static struct buffer before, after; local in function:parse 246 buf_clear(&before); 247 ps_psyms_to_string(&before, &ps); 253 if (strcmp(before.s, after.s) != 0) { 254 debug_println("psyms before: %s", before.s);
|
/src/tests/lib/libc/sys/ |
t_sigtimedwait.c | 52 struct timespec ts, before, after, len; local in function:ATF_TC_BODY 59 clock_gettime(CLOCK_MONOTONIC, &before); 64 timespecsub(&after, &before, &len);
|
t_ptrace_signal_wait.h | 44 sigset_t before, after; local in function:softfloat_fudge_sigs 50 __CTASSERT(sizeof(before) == sizeof(*kbefore)); 52 memcpy(&before, kbefore, sizeof(before)); 54 if (sigismember(&before, SIGFPE)) { 80 DPRINTF("Before forking process PID=%d\n", getpid()); 83 DPRINTF("Before calling PT_TRACE_ME from child %d\n", getpid()); 86 DPRINTF("Before raising %s from child\n", strsignal(sigval)); 95 DPRINTF("Before exiting of the child process\n"); 101 DPRINTF("Before calling %s() for the child\n", TWAIT_FNAME) [all...] |
/src/tests/kernel/ |
t_nanosleep.c | 66 struct timespec before, after; local in function:tester 70 if (clock_gettime(clock, &before) != 0) 74 timespecadd(&to_sleep, &before, &after); 80 (int)clock, flags, (intmax_t)before.tv_sec, before.tv_nsec); 110 timespecadd(&before, &to_sleep, &before); 111 if (timespeccmp(&before, &after, >))
|
/src/sys/dev/pci/ |
hptide.c | 284 u_int32_t before, after; local in function:hpt_setup_channel 343 before = pci_conf_read(sc->sc_pc, sc->sc_tag, 377 after, before), DEBUG_PROBE);
|
pccbb.c | 1014 * does occur in the wild. Check for a _POWER event before 1243 struct timeval before, after, diff; local in function:pccbb_power 1312 microtime(&before); 1350 timersub(&after, &before, &diff); 1876 * reading before because all bits are r/o or w1tc
|
/src/usr.bin/time/ |
time.c | 76 struct timespec before, after; local in function:main 123 (void)clock_gettime(CLOCK_MONOTONIC, &before); 143 timespecsub(&after, &before, &after); 151 before.tv_sec = 0; 152 before.tv_nsec = 0; 153 prusage1(stderr, fmt, prec, &null_ru, &ru, &after, &before);
|
/src/regress/sys/kern/getcwd/ |
getcwd.c | 198 struct timeval before, after; local in function:time_func 204 gettimeofday(&before, 0); 210 delta_t = after.tv_sec - before.tv_sec; 212 delta_t += ((double)(after.tv_usec - before.tv_usec))/1000000.0;
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_errors.cc | 35 // just before the stack. As only asan has scariness score we have no 481 static void PrintShadowByte(InternalScopedString *str, const char *before, 483 PrintMemoryByte(str, before, byte, /*in_shadow*/true, after); 525 static void PrintShadowBytes(InternalScopedString *str, const char *before, 528 if (before) str->append("%s%p:", before, bytes); 531 const char *before = local in function:__asan::PrintShadowBytes 534 PrintShadowByte(str, before, *p, after);
|
/src/tests/usr.bin/indent/ |
lsym_preprocessing.c | 91 * Before indent.c 1.129 from 2021-10-08, indent mistakenly interpreted quotes 160 * Before io.c 1.135 from 2021-11-26, indent fixed malformed preprocessing 238 int before; variable in typeref:typename:int 250 int before; variable in typeref:typename:int 262 * Before 2023-06-14, indent was limited to 5 levels of conditional compilation
|
/src/sys/arch/luna68k/dev/ |
xpbus.c | 147 unsigned int before, after; local in function:xp_acquire 148 before = xp_acquired; 149 if (before & XP_ACQ_EXCL) 151 if (before & (1 << xplx_devid)) 153 after = before | (1 << xplx_devid) | excl; 154 if (atomic_cas_uint(&xp_acquired, before, after) == before) { 166 unsigned int before, after; local in function:xp_release 167 before = xp_acquired; 168 after = before & ~(1 << xplx_devid) & ~XP_ACQ_EXCL [all...] |
/src/common/dist/zlib/examples/ |
zran.c | 25 // bytes before getting to the desired block of data. 186 unsigned before = strm.avail_out; local in function:deflate_index_build 188 totout += before - strm.avail_out; 242 // Support zlib versions before 1.2.3 (July 2005), or incomplete zlib clones
|
/src/usr.bin/cal/ |
cal.c | 122 * of days from the date before the shift to the next date that 223 int before, after, use_reform; local in function:main 227 before = after = 0; 238 before = getnum(optarg); 239 if (before < 0) 243 after = before = getnum(optarg); 268 before = after = 1; 326 before = 0; 331 monthrange(month, year, before, after, yearly); 346 monthrange(int month, int year, int before, int after, int yearly [all...] |
/src/sys/dev/usb/ |
ucycom.c | 1025 u_char before = sc->sc_mcr; local in function:tiocm_to_ucycom 1047 if (before ^ sc->sc_mcr) {
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_vm.c | 1487 /* No huge page support before GMC v9 */ 2392 struct amdgpu_bo_va_mapping *before, *after, *tmp, *next; local in function:amdgpu_vm_bo_clear_mappings 2401 before = kzalloc(sizeof(*before), GFP_KERNEL); 2402 if (!before) 2404 INIT_LIST_HEAD(&before->list); 2408 kfree(before); 2418 before->start = tmp->start; 2419 before->last = saddr - 1; 2420 before->offset = tmp->offset [all...] |
/src/usr.sbin/sysinst/ |
mbr.c | 430 * we must end before its end 496 * of NetBSD MBRs. Anyway, before accepting a boot menu definition, 2258 /* new part needs to fit before next extended */ 2287 bool before; local in function:mbr_add_part 2289 before = false; 2291 before = true; 2305 if (before) {
|