Searched refs:start (Results 1 - 25 of 2294) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/zlib/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start);
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/
H A Dtst.schrock.ksh46 self->start = vtimestamp;
50 /self->start/
52 trace(vtimestamp - self->start);
56 /self->start/
58 trace(vtimestamp - self->start);
62 /self->start/
64 self->start = 0;
69 /self->start/
71 trace(vtimestamp - self->start);
75 /self->start/
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Host/common/
H A DLockFileBase.cpp23 Status LockFileBase::WriteLock(const uint64_t start, const uint64_t len) { argument
24 return DoLock([&](const uint64_t start,
25 const uint64_t len) { return DoWriteLock(start, len); },
26 start, len);
29 Status LockFileBase::TryWriteLock(const uint64_t start, const uint64_t len) {
30 return DoLock([&](const uint64_t start,
31 const uint64_t len) { return DoTryWriteLock(start, len); },
32 start, len);
35 Status LockFileBase::ReadLock(const uint64_t start, const uint64_t len) {
36 return DoLock([&](const uint64_t start,
[all...]
/freebsd-current/stand/efi/loader/arch/riscv/
H A DMakefile.inc5 start.S
/freebsd-current/stand/efi/loader/arch/arm/
H A DMakefile.inc3 start.S
/freebsd-current/contrib/mandoc/
H A Dmandoc.c95 mandoc_escape(const char **end, const char **start, int *sz) argument
107 if (NULL == start)
108 start = &local_start;
127 *start = ++*end;
131 switch ((*start)[-1]) {
142 if (**start == ' ') {
150 if ('\'' != **start)
152 *start = ++*end;
207 switch ((*start)[-1]) {
218 switch (**start) {
[all...]
H A Dcompat_mkdtemp.c31 char *start, *cp; local
34 start = strchr(path, '\0');
35 while (start > path && start[-1] == 'X')
36 start--;
43 for (cp = start; *cp != '\0'; cp++)
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/end/
H A Derr.D_IDENT_UNDEF.timespent.d42 total = timestamp - start;
47 start = timestamp;
/freebsd-current/contrib/one-true-awk/testdir/
H A Decho.c6 int i, start, minusn; local
8 start = 1;
11 start = 2;
15 for (i = start; i < argc; i++)
/freebsd-current/tools/test/stress2/misc/
H A Dreaper5.sh33 start=`date +%s`
34 while [ $((`date +%s` - start)) -lt 120 ]; do
H A Dzz-combo01.sh37 start=`date +%s`
38 while [ $((`date +%s` - start)) -lt 1200 ]; do
H A Dprocstat2.sh37 start=`date +%s`
38 while [ $((`date +%s` - start)) -lt 300 ]; do
/freebsd-current/contrib/byacc/test/
H A Derr_syntax14.y6 %start text
7 %start text2
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Drenormalize.d43 start = timestamp;
53 normalize(@func, (timestamp - start) / 1000000000);
/freebsd-current/usr.sbin/bluetooth/sdpcontrol/
H A Dsearch.c77 print_service_class_id_list(uint8_t const *start, uint8_t const *end) argument
81 if (end - start < 2) {
83 "Too short, len=%zd\n", end - start);
87 SDP_GET8(type, start);
90 SDP_GET8(len, start);
94 SDP_GET16(len, start);
98 SDP_GET32(len, start);
108 if (len > (end - start)) {
114 while (start < end) {
115 SDP_GET8(type, start);
166 print_protocol_descriptor(uint8_t const *start, uint8_t const *end) argument
325 print_protocol_descriptor_list(uint8_t const *start, uint8_t const *end) argument
411 print_bluetooth_profile_descriptor_list(uint8_t const *start, uint8_t const *end) argument
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_poisoning.cpp23 uptr start = RoundDownTo(p, kShadowAlignment); local
25 return TagMemoryAligned(start, end - start, tag);
/freebsd-current/lib/libsys/i386/
H A Di386_get_ioperm.c32 i386_get_ioperm(unsigned int start, unsigned int *length, int *enable) argument
37 p.start = start;
H A Di386_get_ldt.c36 i386_get_ldt(int start, union descriptor *descs, int num) argument
40 p.start = start;
H A Di386_set_ioperm.c32 i386_set_ioperm(unsigned int start, unsigned int length, int enable) argument
36 p.start = start;
H A Di386_set_ldt.c36 i386_set_ldt(int start, union descriptor *descs, int num) argument
40 p.start = start;
/freebsd-current/stand/libofw/
H A Dofw_time.c52 int msecs, start; local
55 start = OF_milliseconds();
57 while (OF_milliseconds() - start < msecs);
/freebsd-current/lib/libsdp/
H A Dutil.c283 sdp_print(uint32_t level, uint8_t const *start, uint8_t const *end) argument
299 if (start == NULL || end == NULL)
302 while (start < end) {
306 SDP_GET8(type, start);
314 SDP_GET8(value.uint8, start);
318 SDP_GET16(value.uint16, start);
322 SDP_GET32(value.uint32, start);
326 SDP_GET64(value.uint64, start);
332 SDP_GET128(&value.int128, start);
341 SDP_GET_UUID128(&value.int128, start);
[all...]
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dioport.h36 .start = (_start), \
41 resource_size_t start; member in struct:resource
48 return (r->end - r->start + 1);
54 return (a->start <= b->start && a->end >= b->end);
/freebsd-current/usr.bin/primes/
H A Dprimes.c41 * primes [-h] [start [stop]]
43 * Print primes >= start and < stop. If stop is omitted,
45 * start is omitted, start is read from standard input.
85 ubig start; /* where to start generating */ local
106 start = 0;
122 start = strtoumax(argv[0], &p, 0);
141 start = strtoumax(argv[0], &p, 0);
148 start
195 primes(ubig start, ubig stop) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Host/posix/
H A DLockFilePosix.cpp19 static Status fileLock(int fd, int cmd, int lock_type, const uint64_t start, argument
25 fl.l_start = start;
40 Status LockFilePosix::DoWriteLock(const uint64_t start, const uint64_t len) { argument
41 return fileLock(m_fd, F_SETLKW, F_WRLCK, start, len);
44 Status LockFilePosix::DoTryWriteLock(const uint64_t start, const uint64_t len) { argument
45 return fileLock(m_fd, F_SETLK, F_WRLCK, start, len);
48 Status LockFilePosix::DoReadLock(const uint64_t start, const uint64_t len) { argument
49 return fileLock(m_fd, F_SETLKW, F_RDLCK, start, len);
52 Status LockFilePosix::DoTryReadLock(const uint64_t start, const uint64_t len) { argument
53 return fileLock(m_fd, F_SETLK, F_RDLCK, start, le
[all...]

Completed in 144 milliseconds

1234567891011>>