Searched refs:start (Results 26 - 50 of 2022) sorted by relevance

1234567891011>>

/freebsd-11-stable/lib/libc/i386/sys/
H A Di386_get_ioperm.c33 i386_get_ioperm(unsigned int start, unsigned int *length, int *enable) argument
38 p.start = start;
/freebsd-11-stable/stand/ofw/libofw/
H A Dofw_time.c55 int msecs, start; local
58 start = OF_milliseconds();
60 while (OF_milliseconds() - start < msecs);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/
H A Dtst.startexit.ksh31 # 1. proc:::start
32 # 2. proc:::lwp-start
42 proc:::start
45 self->start = 1;
48 proc:::lwp-start
49 /self->start/
/freebsd-11-stable/sys/dev/cx/
H A Dcronyxfw.h20 long start; /* verify start */ member in struct:_cr_dat_tst
/freebsd-11-stable/crypto/heimdal/lib/wind/
H A Derrorlist_table.h10 uint32_t start; member in struct:error_entry
/freebsd-11-stable/sys/isa/
H A Disahint.c43 int sensitive, start, count; local
60 start = 0;
62 resource_int_value(name, unit, "port", &start);
64 if (start > 0 || count > 0)
65 bus_set_resource(child, SYS_RES_IOPORT, 0, start, count);
67 start = 0;
69 resource_int_value(name, unit, "maddr", &start);
71 if (start > 0 || count > 0)
72 bus_set_resource(child, SYS_RES_MEMORY, 0, start, count);
74 if (resource_int_value(name, unit, "irq", &start)
[all...]
/freebsd-11-stable/stand/mips/beri/boot2/
H A Dstart.S30 * $FreeBSD: stable/11/stand/mips/beri/boot2/start.S 262197 2014-02-18 23:18:32Z rwatson $
45 * but we may start running the code somewhere else (e.g., in DRAM as inserted
52 .global start
53 .ent start
54 start: label
82 .end start
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DLockFileBase.h24 Status WriteLock(const uint64_t start, const uint64_t len);
25 Status TryWriteLock(const uint64_t start, const uint64_t len);
27 Status ReadLock(const uint64_t start, const uint64_t len);
28 Status TryReadLock(const uint64_t start, const uint64_t len);
39 virtual Status DoWriteLock(const uint64_t start, const uint64_t len) = 0;
40 virtual Status DoTryWriteLock(const uint64_t start, const uint64_t len) = 0;
42 virtual Status DoReadLock(const uint64_t start, const uint64_t len) = 0;
43 virtual Status DoTryReadLock(const uint64_t start, const uint64_t len) = 0;
47 Status DoLock(const Locker &locker, const uint64_t start, const uint64_t len);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DLockFilePosix.h22 Status DoWriteLock(const uint64_t start, const uint64_t len) override;
24 Status DoTryWriteLock(const uint64_t start, const uint64_t len) override;
26 Status DoReadLock(const uint64_t start, const uint64_t len) override;
28 Status DoTryReadLock(const uint64_t start, const uint64_t len) override;
/freebsd-11-stable/contrib/wpa/src/wps/
H A Dwps_er_ssdp.c26 char buf[MULTICAST_MAX_READ], *pos, *pos2, *start; local
59 for (start = buf; start && *start; start = pos) {
60 pos = os_strchr(start, '\n');
66 if (os_strstr(start, "schemas-wifialliance-org:device:"
69 if (os_strstr(start, "schemas-wifialliance-org:service:"
72 if (os_strncasecmp(start, "LOCATION:", 9) == 0) {
73 start
[all...]
/freebsd-11-stable/contrib/byacc/test/
H A Derr_syntax15.y7 %start text
/freebsd-11-stable/share/examples/jails/
H A Djail.xxx.conf25 exec.start += "/bin/sh /etc/rc";
/freebsd-11-stable/contrib/groff/src/preproc/refer/
H A Dref.cpp28 static int find_month(const char *start, const char *end);
54 reference::reference(const char *start, int len, reference_id *ridp) argument
63 if (start == 0)
67 const char *end = start + len;
68 const char *ptr = start;
495 const char *start = str.contents(); local
496 const char *end = start + str.length();
497 for (int i = 0; i < n && start < end; i++) {
498 const char *p = start;
499 while (start < en
546 find_last_name(const char *start, const char *end, const char **endp) argument
724 uppercase(const char *start, const char *end, string &result) argument
735 lowercase(const char *start, const char *end, string &result) argument
750 const char *start = ptr; local
883 find_year(const char *start, const char *end, const char **endp) argument
904 find_day(const char *start, const char *end, const char **endp) argument
929 find_month(const char *start, const char *end) argument
995 const char *start = date.contents(); local
1007 const char *start = f.contents(); local
1020 nth_field(int i, const char *start, const char **endp) argument
1037 const char *start = get_field(*f, endp); local
1053 const char *start = get_field(*f, endp); local
1116 const char *start = sort_key.contents(); local
[all...]
H A Dtoken.h39 void lower_case(const char *start, const char *end, string &result) const;
40 void upper_case(const char *start, const char *end, string &result) const;
41 void sortify(const char *start, const char *end, string &result) const;
42 int sortify_non_empty(const char *start, const char *end) const;
88 const token_info *lookup_token(const char *start, const char *end);
/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A Dlib_hline.c49 int start; local
58 start = win->_curx;
59 end = start + n - 1;
63 CHANGED_RANGE(line, start, end);
71 while (end >= start) {
/freebsd-11-stable/contrib/ncurses/ncurses/widechar/
H A Dlib_hline_set.c48 int start; local
57 start = win->_curx;
58 end = start + n - 1;
62 CHANGED_RANGE(line, start, end);
70 while (end >= start) {
/freebsd-11-stable/sys/amd64/amd64/
H A Dbios.c53 * (start) Optional offset returned from this function
55 * to start the search from the base of the BIOS.
68 bios_sigsearch(u_int32_t start, u_char *sig, int siglen, int paralen, int sigofs) argument
73 if ((start >= BIOS_START) && (start <= (BIOS_START + BIOS_SIZE))) {
74 sp = (char *)BIOS_PADDRTOVADDR(start);
75 } else if (start == 0) {
78 return 0; /* bogus start address */
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dclear_cache.c54 void __clear_cache(void *start, void *end) { argument
59 FlushInstructionCache(GetCurrentProcess(), start, end - start);
64 arg.addr = (uintptr_t)start;
65 arg.len = (uintptr_t)end - (uintptr_t)start;
76 register int start_reg __asm("r0") = (int)(intptr_t)start;
88 const uintptr_t start_int = (uintptr_t)start;
90 syscall(__NR_cacheflush, start, (end_int - start_int), BCACHE);
92 cacheflush(start, (uintptr_t)end - (uintptr_t)start, BCACH
[all...]
/freebsd-11-stable/contrib/gcclibs/libgomp/
H A Diter.c77 /* Compute the "zero-based" start and end points. That is, as
93 /* Transform these to the actual start and end numbers. */
126 /* Transform these to the actual start and end numbers. */
151 long start, end, chunk, left; local
153 start = ws->next;
154 if (start == ws->end)
158 left = ws->end - start;
169 end = start + chunk;
172 *pstart = start;
187 long start, en local
240 long start, end; local
273 long start, end, nend, incr; local
[all...]
H A Dloop.c37 gomp_loop_init (struct gomp_work_share *ws, long start, long end, long incr, argument
43 ws->end = ((incr > 0 && start > end) || (incr < 0 && start < end))
44 ? start : end;
46 ws->next = start;
66 gomp_loop_static_start (long start, long end, long incr, long chunk_size, argument
72 gomp_loop_init (thr->ts.work_share, start, end, incr,
80 gomp_loop_dynamic_start (long start, long end, long incr, long chunk_size, argument
87 gomp_loop_init (thr->ts.work_share, start, end, incr,
102 gomp_loop_guided_start (long start, lon argument
124 GOMP_loop_runtime_start(long start, long end, long incr, long *istart, long *iend) argument
147 gomp_loop_ordered_static_start(long start, long end, long incr, long chunk_size, long *istart, long *iend) argument
164 gomp_loop_ordered_dynamic_start(long start, long end, long incr, long chunk_size, long *istart, long *iend) argument
183 gomp_loop_ordered_guided_start(long start, long end, long incr, long chunk_size, long *istart, long *iend) argument
202 GOMP_loop_ordered_runtime_start(long start, long end, long incr, long *istart, long *iend) argument
373 gomp_parallel_loop_start(void (*fn) (void *), void *data, unsigned num_threads, long start, long end, long incr, enum gomp_schedule_type sched, long chunk_size) argument
387 GOMP_parallel_loop_static_start(void (*fn) (void *), void *data, unsigned num_threads, long start, long end, long incr, long chunk_size) argument
396 GOMP_parallel_loop_dynamic_start(void (*fn) (void *), void *data, unsigned num_threads, long start, long end, long incr, long chunk_size) argument
405 GOMP_parallel_loop_guided_start(void (*fn) (void *), void *data, unsigned num_threads, long start, long end, long incr, long chunk_size) argument
414 GOMP_parallel_loop_runtime_start(void (*fn) (void *), void *data, unsigned num_threads, long start, long end, long incr) argument
474 GOMP_loop_static_start(long start, long end, long incr, long chunk_size, long *istart, long *iend) argument
481 GOMP_loop_dynamic_start(long start, long end, long incr, long chunk_size, long *istart, long *iend) argument
488 GOMP_loop_guided_start(long start, long end, long incr, long chunk_size, long *istart, long *iend) argument
495 GOMP_loop_ordered_static_start(long start, long end, long incr, long chunk_size, long *istart, long *iend) argument
503 GOMP_loop_ordered_dynamic_start(long start, long end, long incr, long chunk_size, long *istart, long *iend) argument
511 GOMP_loop_ordered_guided_start(long start, long end, long incr, long chunk_size, long *istart, long *iend) argument
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libopts/compat/
H A Dpathfind.c162 int i, start; local
178 start = i++;
183 if (!result[start])
191 if ((start + 1) != i)
193 if ((start + 1) != i && (start != 0 || i != 2))
196 strcpy( result + start + 1, result + i );
197 i = start + 1;
201 if (start > 0 && result[start
[all...]
/freebsd-11-stable/usr.bin/colrm/
H A Dcolrm.c64 u_long column, start, stop; local
79 start = stop = 0;
87 start = strtol(argv[0], &p, 10);
88 if (start <= 0 || *p)
97 if (stop && start > stop)
98 errx(1, "illegal start and stop columns");
121 if ((!start || column < start || (stop && column > stop)) &&
139 (void)fprintf(stderr, "usage: colrm [start [stop]]\n");
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dunicode.cpp35 const char *start = p; local
57 if (*start == '0') // no leading zeros allowed if > 0xFFFF
60 else if (p - start != 4) // otherwise, check for exactly 4 hex digits
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dspace_reftree.c99 space_reftree_add_seg(avl_tree_t *t, uint64_t start, uint64_t end, argument
102 space_reftree_add_node(t, start, refcnt);
125 uint64_t start = -1ULL; local
134 if (start == -1ULL) {
135 start = sr->sr_offset;
138 if (start != -1ULL) {
140 ASSERT(start <= end);
141 if (end > start)
142 range_tree_add(rt, start, end - start);
[all...]
/freebsd-11-stable/sys/netinet/
H A Dtcp_sack.c163 tcp_seq start, end; local
173 saved_blks[0].start = rcv_start;
176 saved_blks[0].start = saved_blks[0].end = 0;
179 head_blk.start = head_blk.end = 0;
180 mid_blk.start = rcv_start;
185 start = tp->sackblks[i].start;
187 if (SEQ_LT(rcv_end, start)) {
196 if ((SEQ_MAX(rcv_start, start) != SEQ_MIN(rcv_end, end)) &&
197 (SEQ_GT(head_blk.start, SEQ_MA
289 tcp_seq start = tp->sackblks[i].start; local
405 tcp_seq start = tp->sackblks[i].start; local
448 tcp_sackhole_alloc(struct tcpcb *tp, tcp_seq start, tcp_seq end) argument
492 tcp_sackhole_insert(struct tcpcb *tp, tcp_seq start, tcp_seq end, struct sackhole *after) argument
[all...]

Completed in 378 milliseconds

1234567891011>>