Home
last modified time | relevance | path

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

12345678910>>...24

/freebsd/usr.bin/primes/
H A Dprimes.c86 ubig stop; /* don't generate at or above this value */ in main() local
107 stop = (uint64_t)(-1); in main()
129 stop = strtoumax(argv[1], &p, 0); 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()
[all …]
/freebsd/sys/dev/aic7xxx/aicasm/
H A Daicasm_gram.y270 stop("Prefix multiply defined",
274 stop("Unable to record prefix", EX_SOFTWARE);
282 stop("Patch argument list multiply defined",
286 stop("Unable to record patch arg list", EX_SOFTWARE);
303 stop("Register multiply defined", EX_DATAERR);
380 stop("SCB or SRAM space exhausted", EX_DATAERR);
414 stop("Valid register modes range between 0 and 4.",
427 stop("Only \"const\" symbols allowed in "
432 stop("Valid register modes range between 0 and 4.",
509 stop("Re-definition of register alias",
[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.c160 stop("-d: Assembler not built with debugging " in main()
171 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()
278 stop("Unterminated conditional expression", EX_DATAERR); in main()
303 stop(NULL, 0); in main()
338 stop(buf, EX_DATAERR); in back_patch()
[all …]
/freebsd/lib/libc/regex/
H A Dengine.c104 static const char *dissect(struct match *m, const char *start, const char *stop, sopno startst, sop…
105 static const char *backref(struct match *m, const char *start, const char *stop, sopno startst, sop…
106 static const char *walk(struct match *m, const char *start, const char *stop, sopno startst, sopno …
107 static states step(struct re_guts *g, sopno start, sopno stop, states bef, wint_t ch, states aft, i…
126 static void at(struct match *m, const char *title, const char *start, const char *stop, sopno start…
200 const char *stop; in matcher() local
214 stop = string + pmatch[0].rm_eo; in matcher()
217 stop = start + strlen(start); in matcher()
219 if (stop < start) in matcher()
230 for (dp = start+g->mlen-1; dp < stop;) { in matcher()
[all …]
/freebsd/contrib/nvi/regex/
H A Dengine.c92 static const RCHAR_T *dissect(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno sta…
93 static const RCHAR_T *backref(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno sta…
94 static const RCHAR_T *fast(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno starts…
95 static const RCHAR_T *slow(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno starts…
96 static states step(struct re_guts *g, sopno start, sopno stop, states bef, int flag, RCHAR_T ch, st…
107 static void at(struct match *m, char *title, char *start, char *stop, sopno startst, sopno stopst);
143 const RCHAR_T *stop; in matcher() local
150 stop = string + pmatch[0].rm_eo; in matcher()
153 stop = start + STRLEN(start); in matcher()
155 if (stop < start) in matcher()
[all …]
/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()
76 stop("rstream.getBuf: Error reading file"); in getBuf()
121 stop("StringTable.init: Invalid symbol table"); in init()
145 stop("StringTable: Invalid string table"); in StringTable()
152 stop("StringTable: Unexpected EOF"); in StringTable()
168 stop("StringTable: String too long"); in StringTable()
172 stop("StringTable: Symbol table too long"); in StringTable()
206 stop("StringTable::encode: String now found in string table"); in encode()
219 stop("StringTable::decode: Invalid string table lookup"); in decode()
[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()
230 while ((str < stop) && (*str >= '0') && (*str <= '7')) in asc_ul()
299 char *stop; in asc_uqd() local
[all …]
/freebsd/usr.bin/colrm/
H A Dcolrm.c53 u_long column, start, stop; in main() local
72 start = stop = 0; in main()
75 stop = strtol(argv[1], &p, 10); in main()
76 if (stop <= 0 || *p) in main()
90 if (stop && start > stop) in main()
114 if ((!start || column < start || (stop && column > stop)) && in main()
/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/llvm-project/llvm/include/llvm/ADT/
H A DIntervalMap.h29 /// stop() iterator methods.
52 // KeyT stop() const;
80 // const KeyT &stop() const;
556 // - Traits::stopLess(start(i), stop(i)) - Non-empty, sane intervals.
558 // - Traits::stopLess(stop(i), start(i + 1) - Sorted.
560 // - value(i) != value(i + 1) || !Traits::adjacent(stop(i), start(i + 1))
569 const KeyT &stop(unsigned i) const { return this->first[i].second; } in stop() function
573 KeyT &stop(unsigned i) { return this->first[i].second; } in stop() function
580 /// @return First index with !stopLess(key[i].stop, x), or size.
584 assert((i == 0 || Traits::stopLess(stop( in findFrom()
705 const KeyT &stop(unsigned i) const { return this->second[i]; } stop() function
708 KeyT &stop(unsigned i) { return this->second[i]; } stop() function
1112 KeyT stop() const { stop() function
1419 const KeyT &stop() const { return unsafeStop(); } stop() function
2175 KeyType stop() const { stop() function
[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/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/ncurses/progs/
H A Dtabs.c92 int stop; in do_tabs() local
95 while ((stop = *tab_list++) > 0) { in do_tabs()
100 if (last < stop) { in do_tabs()
101 while (last++ < stop) { in do_tabs()
107 if (stop <= max_cols) { in do_tabs()
109 last = stop; in do_tabs()
206 int stop = tab_list[n]; in print_ruler() local
208 while (++last < stop) { in print_ruler()
217 last = stop; in print_ruler()
234 int stop; in write_tabs() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dregengine.inc146 const char *stop;
153 stop = string + pmatch[0].rm_eo;
156 stop = start + strlen(start);
158 if (stop < start)
163 for (dp = start; dp < stop; dp++)
164 if (*dp == g->must[0] && stop - dp >= g->mlen &&
167 if (dp == stop) /* we didn't find g->must */
178 m->endp = stop;
188 endp = fast(m, start, stop, gf, gl);
202 endp = slow(m, m->coldp, stop, gf, gl);
[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/lib9p/pytest/
H A Dclient.py40 self.stop = False
327 tstate.stop = True # unless overwritten below
339 tstate.stop = False
342 if not tstate.stop:
346 tstate.stop = True
358 tstate.stop = False
362 if not tstate.stop:
378 if not tstate.stop:
385 tstate.stop = True
391 if not tstate.stop:
[all …]
/freebsd/tests/sys/kqueue/libkqueue/
H A Dtimer.c295 uint64_t end, start, stop; in test_abstime() local
315 stop = now(); in test_abstime()
316 if (stop < end) in test_abstime()
317 err(1, "too early %jd %jd", (intmax_t)stop, (intmax_t)end); in test_abstime()
360 uint64_t end, start, stop; in test_abstime_preboot() local
387 stop = now(); in test_abstime_preboot()
388 if (stop < end) in test_abstime_preboot()
389 err(1, "too early %jd %jd", (intmax_t)stop, (intmax_t)end); in test_abstime_preboot()
402 uint64_t end, start, stop; in test_abstime_postboot() local
426 stop = now(); in test_abstime_postboot()
[all …]
/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; *po in get_list()
[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/sys/kern/
H A Dkern_linker.c196 struct sysinit **start, **stop, **sipp, **xipp, *save; in linker_file_sysinit() local
204 if (linker_file_lookup_set(lf, "sysinit_set", &start, &stop, NULL) != 0) in linker_file_sysinit()
213 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysinit()
214 for (xipp = sipp + 1; xipp < stop; xipp++) { in linker_file_sysinit()
232 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysinit()
251 struct sysinit **start, **stop, **sipp, **xipp, *save; in linker_file_sysuninit() local
259 if (linker_file_lookup_set(lf, "sysuninit_set", &start, &stop, in linker_file_sysuninit()
270 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysuninit()
271 for (xipp = sipp + 1; xipp < stop; xipp++) { in linker_file_sysuninit()
289 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysuninit()
[all …]
/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.

12345678910>>...24