Searched refs:start (Results 126 - 150 of 2312) sorted by relevance

1234567891011>>

/freebsd-current/contrib/byacc/test/
H A Derr_syntax25.y16 %start expr
H A Derr_syntax24.y11 %start expr
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call.d45 nfsv4:::compound-start
50 nfsv4:::op-putrootfh-start
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyEnumDumper.h23 void start(const PDBSymbolTypeEnum &Symbol);
H A DPrettyExternalSymbolDumper.h23 void start(const PDBSymbolExe &Symbol);
H A DPrettyBuiltinDumper.h24 void start(const PDBSymbolTypeBuiltin &Symbol);
/freebsd-current/contrib/netbsd-tests/sys/rc/
H A Dh_args.sh46 for command in start stop restart custom; do
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Dzfs_ratelimit.h26 hrtime_t start; member in struct:__anon10466
/freebsd-current/tools/test/stress2/misc/
H A Doom2.sh41 start=`date +%s`
42 while [ $((`date +%s` - $start)) -lt 300 ]; do
H A Dracct.sh43 start=`date +%s`
44 while [ $((`date +%s` - start)) -lt 120 ]; do
H A Dstack_guard_page.sh39 start=`date +%s`
40 while [ $((`date +%s` - start)) -lt 60 ]; do
H A Dsysctl4.sh37 start=`date +%s`
38 while [ $((`date +%s` - start)) -lt 180 ]; do
H A Dsu.sh41 start=`date +%s`
42 while [ $((`date +%s` - start)) -lt 300 ]; do
H A Difconfig.sh49 start=`date +%s`
50 while [ $((`date +%s` - start)) -lt 300 ]; do
H A Dkpti.sh42 start=`date +%s`
43 while [ $((`date +%s` - start)) -lt 120 ]; do
/freebsd-current/contrib/tcp_wrappers/
H A Dmisc.c31 char *start = ptr; local
40 return (start);
47 return (ptr > start ? start : 0);
/freebsd-current/stand/i386/common/
H A Ddrv.h36 daddr_t start; member in struct:dsk
/freebsd-current/stand/fdt/
H A Dfdt_platform.h33 unsigned long start; member in struct:fdt_mem_region
/freebsd-current/stand/efi/gptboot/
H A Ddrv.h31 daddr_t start; member in struct:dsk
/freebsd-current/tests/sys/cddl/zfs/tests/zfsd/
H A Dzfsd.kshlib73 typeset -li start=0
84 while (( "$now" - "$start" < "$timeout" )); do
92 if [ "$start" -eq 0 ]; then
93 start=`date +%s`
/freebsd-current/contrib/unbound/util/
H A Dtimeval_func.c47 timeval_subtract(struct timeval* d, const struct timeval* end, const struct timeval* start) argument
51 d->tv_sec = end->tv_sec - start->tv_sec;
52 if(end_usec < start->tv_usec) {
56 d->tv_usec = end_usec - start->tv_usec;
/freebsd-current/sys/sys/
H A Ddisklabel.h77 u_int16_t *start, *end; local
80 start = (u_int16_t *)lp;
82 while (start < end)
83 sum ^= *start++;
/freebsd-current/lib/libc/inet/
H A Dnsap_addr.c81 char *start; local
84 start = ascii;
87 start = tmpbuf;
105 return (start);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_report.h28 void ReportUMRInsideAddressRange(const char *function, const void *start,
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAddressRanges.h21 /// a start and an end address: [Start, End).
28 uint64_t start() const { return Start; } function in class:llvm::AddressRange
70 return find(Range.start(), Range.end()) != Ranges.end();
102 return AddressRange(R).start() <= Start;
129 while (It2 != Ranges.end() && It2->start() <= Range.end())
132 Range = {Range.start(), std::max(Range.end(), std::prev(It2)->end())};
135 if (It != Ranges.begin() && Range.start() <= std::prev(It)->end()) {
137 *It = {It->start(), std::max(It->end(), Range.end())};
174 return R.Range.start() <= Range.start();
[all...]

Completed in 246 milliseconds

1234567891011>>