Home
last modified time | relevance | path

Searched refs:stop (Results 1 – 25 of 654) sorted by relevance

12345678910>>...27

/freebsd/usr.bin/primes/
H A Dprimes.c107 stop = (uint64_t)(-1); in main()
154 if (start > stop) in main()
156 primes(start, stop); in main()
195 primes(ubig start, ubig stop) in primes() argument
212 if (stop < 3) { in primes()
213 stop = (ubig)2; in primes()
215 if (stop <= start) { in primes()
225 if (stop != 2 && (stop&0x1) == 0) { in primes()
226 ++stop; in primes()
251 while (start < stop) { in primes()
[all …]
/freebsd/sys/dev/aic7xxx/aicasm/
H A Daicasm_gram.y270 stop("Prefix multiply defined",
696 stop(errbuf, EX_DATAERR);
919 stop(errbuf, EX_DATAERR);
1588 stop(errbuf, EX_DATAERR); in process_register()
1598 stop(errbuf, EX_DATAERR); in process_register()
1785 stop(errbuf, EX_DATAERR); in test_readable_symbol()
1803 stop(errbuf, EX_DATAERR); in test_writable_symbol()
1839 stop(errbuf, EX_DATAERR); in type_check()
1861 stop(errbuf, EX_DATAERR); in type_check()
1886 stop("Conditional expression '0' " in add_conditional()
[all …]
H A Daicasm_macro_gram.y93 stop("Too few arguments for macro invocation",
115 stop("Comma without preceding argument in arg list",
133 stop("Invalid current symbol for adding macro arg",
148 stop("Too many arguments for macro invocation", EX_DATAERR);
153 stop("Unable to replicate replacement text", EX_SOFTWARE);
161 stop(string, EX_DATAERR); in mmerror()
H A Daicasm.c171 stop(NULL, EX_CANTCREAT); in main()
187 stop(NULL, EX_CANTCREAT); in main()
195 stop(NULL, EX_CANTCREAT); in main()
202 stop(NULL, EX_CANTCREAT); in main()
232 stop(NULL, EX_OSERR); in main()
237 stop(NULL, EX_OSERR); in main()
303 stop(NULL, 0); in main()
338 stop(buf, EX_DATAERR); in back_patch()
539 stop(NULL, EX_DATAERR); in output_listing()
555 stop("Could not malloc", EX_OSERR); in output_listing()
[all …]
/freebsd/lib/libc/regex/
H A Dengine.c200 const char *stop; in matcher() local
219 if (stop < start) in matcher()
235 if (dp >= stop) in matcher()
273 m->endp = stop; in matcher()
413 const char *stop, in dissect() argument
475 stp = stop; in dissect()
499 stp = stop; in dissect()
535 stp = stop; in dissect()
615 const char *stop, in backref() argument
735 if (sp != stop) in backref()
[all …]
/freebsd/contrib/nvi/regex/
H A Dengine.c143 const RCHAR_T *stop; in matcher() local
155 if (stop < start) in matcher()
175 m->endp = stop; in matcher()
349 stp = stop; in dissect()
356 if (tail == stop) in dissect()
373 stp = stop; in dissect()
380 if (tail == stop) in dissect()
409 stp = stop; in dissect()
466 assert(sp == stop); in dissect()
505 if (sp == stop) in backref()
[all …]
/freebsd/usr.bin/colrm/
H A Dcolrm.c51 u_long column, start, stop; in main() local
66 start = stop = 0; in main()
69 stop = strtol(argv[1], &p, 10); in main()
70 if (stop <= 0 || *p) in main()
84 if (stop && start > stop) in main()
108 if ((!start || column < start || (stop && column > stop)) && in main()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A DextractExternal.cpp36 void stop(char *errorMsg) { in stop() function
72 stop("rstream.getBuf: Error opening file"); in getBuf()
152 stop("StringTable: Unexpected EOF"); in StringTable()
168 stop("StringTable: String too long"); in StringTable()
307 stop("hideSymbols: Unexpected EOF"); in hideSymbols()
319 stop("hideSymbols: Unexpected EOF"); in hideSymbols()
322 stop("hideSymbols: File read error"); in hideSymbols()
352 stop("hideSymbols: Unexpected EOF"); in hideSymbols()
355 stop("hideSymbols: File read error"); in hideSymbols()
362 stop("hideSymbols: File write error"); in hideSymbols()
[all …]
/freebsd/bin/pax/
H A Dgen_subs.c177 char *stop; in l_strncpy() local
180 stop = dest + len; in l_strncpy()
182 while ((dest < stop) && (*src != '\0')) in l_strncpy()
185 while (dest < stop) in l_strncpy()
203 char *stop; in asc_ul() local
206 stop = str + len; in asc_ul()
211 while ((str < stop) && ((*str == ' ') || (*str == '0'))) in asc_ul()
219 while (str < stop) { in asc_ul()
299 char *stop; in asc_uqd() local
302 stop = str + len; in asc_uqd()
[all …]
/freebsd/contrib/ncurses/progs/
H A Dtabs.c66 int stop; in do_tabs() local
70 if (last < stop) { in do_tabs()
77 if (stop <= max_cols) { in do_tabs()
79 last = stop; in do_tabs()
149 int stop; in print_ruler() local
167 stop = tab_list[n]; in print_ruler()
168 while (++last < stop) { in print_ruler()
177 last = stop; in print_ruler()
194 int stop; in write_tabs() local
196 while ((stop = *tab_list++) > 0 && stop <= max_cols) { in write_tabs()
[all …]
/freebsd/crypto/openssl/doc/internal/man3/
H A Dossl_init_thread_deregister.pod25 Thread stop events may be detected by OpenSSL either automatically (using the
29 Thread aware code registers a "stop handler" for each new thread that it uses.
31 thread local variable and then register a stop handler. When the thread is
32 stopping the stop handler is called (while on that thread) and the code can
35 A new stop handler is registered using the function ossl_init_thread_start().
37 set of common stop handlers and is passed in a later call to
40 back as an argument to the stop handler when it is later invoked. Finally the
41 I<handfn> is a function pointer to the stop handler itself.
43 In the event that previously registered stop handlers need to be deregistered
45 This will deregister all stop handlers (no matter which thread they were
/freebsd/contrib/nvi/ex/
H A Dex_global.c228 rp->stop == start - 1) { in ex_g_setup()
229 ++rp->stop; in ex_g_setup()
237 rp->start = rp->stop = start; in ex_g_setup()
268 if (rp->stop < lno) in ex_g_insdel()
278 --rp->stop; in ex_g_insdel()
281 ++rp->stop; in ex_g_insdel()
293 if (rp->start > --rp->stop) { in ex_g_insdel()
300 nrp->stop = rp->stop + 1; in ex_g_insdel()
301 rp->stop = lno - 1; in ex_g_insdel()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalMap.h645 stop(i - 1) = stop(i); in insertFrom()
649 stop(i - 1) = b; in insertFrom()
660 stop(i) = b; in insertFrom()
678 stop(i) = b; in insertFrom()
757 stop(i) = Stop; in insert()
1112 KeyT stop() const { in stop() function
1244 rootBranch().stop(n) = node[n].template get<Leaf>().stop(size[n]-1); in branchRoot()
1283 rootBranch().stop(n) = Node[n].template get<Branch>().stop(Size[n]-1); in splitRoot()
2175 KeyType stop() const { in stop() function
2176 KeyType ak = a().stop(); in stop()
[all …]
H A DCoalescingBitVector.h88 Bits += 1 + It.stop() - It.start(); in count()
110 insert(It.start(), It.stop()); in set()
124 assert(It.stop() >= Index && "Interval must end after Index"); in test()
148 IndexT Stop = It.stop(); in reset()
168 IndexT Stop = It.stop();
203 IndexT CurrStop = It.stop(); in intersectWithComplement()
226 ItL.start() == ItR.start() && ItL.stop() == ItR.stop()) {
270 CachedStop = MapIterator.stop(); in resetCache()
381 if (It.start() != It.stop()) in print()
382 OS << ", " << It.stop(); in print()
[all …]
/freebsd/sys/dev/sfxge/common/
H A Defx_sram.c46 uint32_t stop = start + n; in efx_sram_buf_tbl_set() local
72 if (stop >= EFX_BUF_TBL_SIZE) { in efx_sram_buf_tbl_set()
79 for (id = start; id != stop; id++) { in efx_sram_buf_tbl_set()
94 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1); in efx_sram_buf_tbl_set()
102 EFSYS_ASSERT3U(id, ==, stop); in efx_sram_buf_tbl_set()
149 id = stop; in efx_sram_buf_tbl_set()
173 uint32_t stop = start + n; in efx_sram_buf_tbl_clear() local
195 EFSYS_ASSERT3U(stop, <, EFX_BUF_TBL_SIZE); in efx_sram_buf_tbl_clear()
197 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1); in efx_sram_buf_tbl_clear()
200 FRF_AZ_BUF_CLR_CMD, 1, FRF_AZ_BUF_CLR_END_ID, stop - 1, in efx_sram_buf_tbl_clear()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dregengine.inc146 const char *stop;
158 if (stop < start)
178 m->endp = stop;
392 stp = stop;
399 if (tail == stop)
417 stp = stop;
456 stp = stop;
516 assert(sp == stop);
552 if (sp == stop)
615 if (sp != stop)
[all …]
/freebsd/contrib/lib9p/pytest/
H A Dclient.py40 self.stop = False
339 tstate.stop = False
342 if not tstate.stop:
346 tstate.stop = True
362 if not tstate.stop:
378 if not tstate.stop:
391 if not tstate.stop:
430 if tstate.stop:
439 if tstate.stop:
491 if tstate.stop:
[all …]
/freebsd/tests/sys/kqueue/libkqueue/
H A Dtimer.c315 stop = now(); in test_abstime()
316 if (stop < end) in test_abstime()
387 stop = now(); in test_abstime_preboot()
388 if (stop < end) in test_abstime_preboot()
426 stop = now(); in test_abstime_postboot()
427 if (stop < end) in test_abstime_postboot()
582 uint64_t start, stop; in test_update_periodic() local
612 stop = now(); in test_update_periodic()
613 elapsed = stop - start; in test_update_periodic()
639 uint64_t start, stop; in test_update_timing() local
[all …]
/freebsd/tools/regression/pthread/cv_cancel1/
H A Dcv_cancel1.c37 static int stop; variable
47 while (stop == 0) in thr_routine()
61 stop = 0; in main()
72 stop = 1; in main()
/freebsd/contrib/llvm-project/lld/docs/ELF/
H A Dstart-stop-gc.rst1 -z start-stop-gc
8 …ned under --gc-sections properly; consider -z nostart-stop-gc (see https://lld.llvm.org/start-stop
20 GNU ld 2.37 added ``-z start-stop-gc`` to restore the traditional behavior
21 ld.lld 13.0.0 defaults to ``-z start-stop-gc`` and supports ``-z nostart-stop-gc``
25 allowed GC (like ``-z start-stop-gc``).
/freebsd/usr.bin/tabs/
H A Dtabs.c200 long last, stop; in gettabs() local
207 stop = strtol(tok, &end, 10); in gettabs()
208 if (errno != 0 || *end != '\0' || stop <= 0) in gettabs()
214 stop += last; in gettabs()
216 if (last > stop) in gettabs()
218 last = stops[(*nstops)++] = stop; in gettabs()
/freebsd/stand/usb/tools/
H A Dsysinit.c47 static struct sysinit_data **stop; variable
229 stop = start + entries; in main()
234 if (start != stop) in main()
238 for (sipp = start; sipp < stop; sipp++) { in main()
253 for (sipp = start; sipp < stop; sipp++) { in main()
286 for (c = 0, sipp = start; sipp < stop; c++, sipp++) { in do_sysinit()
312 for (c = 0, sipp = start; sipp < stop; c++, sipp++) { in do_sysinit()
/freebsd/sys/contrib/device-tree/Bindings/net/can/
H A Dfsl-flexcan.txt27 - fsl,stop-mode: register bits of stop mode control, the format is
30 req_gpr is the gpr register offset of CAN stop request.
31 req_bit is the bit offset of CAN stop request.
32 ack_gpr is the gpr register offset of CAN stop acknowledge.
33 ack_bit is the bit offset of CAN stop acknowledge.
/freebsd/usr.bin/cut/
H A Dcut.c157 size_t setautostart, start, stop; in get_list() local
168 setautostart = start = stop = 0; in get_list()
174 start = stop = strtol(p, &p, 10); in get_list()
180 stop = strtol(p + 1, &p, 10); in get_list()
183 if (!autostop || autostop > stop) in get_list()
184 autostop = stop; in get_list()
189 if (!stop || !start) in get_list()
191 if (maxval < stop) { in get_list()
192 maxval = stop; in get_list()
195 for (pos = positions + start; start++ <= stop; *pos++ = 1); in get_list()
/freebsd/sys/kern/
H A Dkern_linker.c213 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysinit()
232 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysinit()
270 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysuninit()
367 for (oidp = start; oidp < stop; oidp++) in linker_file_enable_sysctls()
388 for (oidp = start; oidp < stop; oidp++) in linker_file_unregister_sysctls()
414 stop = SET_LIMIT(modmetadata_set); in linker_file_register_modules()
419 for (mdp = start; mdp < stop; mdp++) { in linker_file_register_modules()
1628 for (mdp = start; mdp < stop; mdp++) { in linker_addmodules()
1700 &stop, NULL) == 0) in linker_preload()
1710 &stop, NULL); in linker_preload()
[all …]

12345678910>>...27