| /freebsd-11-stable/usr.bin/primes/ |
| HD | primes.c | 98 ubig stop; /* don't generate at or above this value */ in main() local 115 stop = (uint64_t)(-1); in main() 137 stop = strtoumax(argv[1], &p, 0); in main() 162 if (start > stop) in main() 164 primes(start, stop); in main() 203 primes(ubig start, ubig stop) in primes() argument 220 if (stop < 3) { in primes() 221 stop = (ubig)2; in primes() 223 if (stop <= start) { in primes() 233 if (stop != 2 && (stop&0x1) == 0) { in primes() [all …]
|
| /freebsd-11-stable/lib/libc/regex/ |
| HD | engine.c | 104 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); 121 static void at(struct match *m, const char *title, const char *start, const char *stop, sopno start… 162 const char *stop; in matcher() local 176 stop = string + pmatch[0].rm_eo; in matcher() 179 stop = start + strlen(start); in matcher() 181 if (stop < start) in matcher() 192 for (dp = start+g->mlen-1; dp < stop;) { in matcher() [all …]
|
| /freebsd-11-stable/sys/dev/aic7xxx/aicasm/ |
| HD | aicasm_gram.y | 270 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 …]
|
| HD | aicasm_macro_gram.y | 93 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()
|
| HD | aicasm.c | 160 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 …]
|
| HD | aicasm_macro_scan.l | 137 stop("Expecting Macro Name", 148 stop(msgbuf, EX_DATAERR); 155 stop("EOF encountered in macro call", EX_DATAERR);
|
| /freebsd-11-stable/contrib/nvi/regex/ |
| HD | engine.c | 92 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-11-stable/contrib/llvm-project/openmp/runtime/src/ |
| HD | extractExternal.cpp | 36 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-11-stable/bin/pax/ |
| HD | gen_subs.c | 192 char *stop; in l_strncpy() local 195 stop = dest + len; in l_strncpy() 197 while ((dest < stop) && (*src != '\0')) in l_strncpy() 200 while (dest < stop) in l_strncpy() 218 char *stop; in asc_ul() local 221 stop = str + len; in asc_ul() 226 while ((str < stop) && ((*str == ' ') || (*str == '0'))) in asc_ul() 234 while (str < stop) { in asc_ul() 245 while ((str < stop) && (*str >= '0') && (*str <= '7')) in asc_ul() 315 char *stop; in asc_uqd() local [all …]
|
| /freebsd-11-stable/contrib/ncurses/progs/ |
| HD | tabs.c | 64 int stop; in do_tabs() local 67 while ((stop = *tab_list++) > 0) { in do_tabs() 68 if (last < stop) { in do_tabs() 69 while (last++ < stop) { in do_tabs() 75 if (stop <= max_cols) { in do_tabs() 76 tputs(tparm(set_tab, stop), 1, putch); in do_tabs() 77 last = stop; in do_tabs() 147 int stop; in print_ruler() local 165 stop = tab_list[n]; in print_ruler() 166 while (++last < stop) { in print_ruler() [all …]
|
| /freebsd-11-stable/usr.bin/colrm/ |
| HD | colrm.c | 64 u_long column, start, stop; in main() local 79 start = stop = 0; in main() 82 stop = strtol(argv[1], &p, 10); in main() 83 if (stop <= 0 || *p) in main() 97 if (stop && start > stop) in main() 121 if ((!start || column < start || (stop && column > stop)) && in main()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/ |
| HD | IntervalMap.h | 566 const KeyT &stop(unsigned i) const { return this->first[i].second; } in stop() function 570 KeyT &stop(unsigned i) { return this->first[i].second; } in stop() function 581 assert((i == 0 || Traits::stopLess(stop(i - 1), x)) && in findFrom() 583 while (i != Size && Traits::stopLess(stop(i), x)) ++i; in findFrom() 596 assert((i == 0 || Traits::stopLess(stop(i - 1), x)) && in safeFind() 598 while (Traits::stopLess(stop(i), x)) ++i; in safeFind() 633 assert((i == 0 || Traits::stopLess(stop(i - 1), a))); in insertFrom() 634 assert((i == Size || !Traits::stopLess(stop(i), a))); in insertFrom() 638 if (i && value(i - 1) == y && Traits::adjacent(stop(i - 1), a)) { in insertFrom() 642 stop(i - 1) = stop(i); in insertFrom() [all …]
|
| /freebsd-11-stable/contrib/nvi/ex/ |
| HD | ex_global.c | 231 rp->stop == start - 1) { in ex_g_setup() 232 ++rp->stop; in ex_g_setup() 240 rp->start = rp->stop = start; in ex_g_setup() 271 if (rp->stop < lno) in ex_g_insdel() 281 --rp->stop; in ex_g_insdel() 284 ++rp->stop; in ex_g_insdel() 296 if (rp->start > --rp->stop) { in ex_g_insdel() 303 nrp->stop = rp->stop + 1; in ex_g_insdel() 304 rp->stop = lno - 1; in ex_g_insdel()
|
| /freebsd-11-stable/sys/dev/sfxge/common/ |
| HD | efx_sram.c | 46 uint32_t stop = start + n; in efx_sram_buf_tbl_set() local 71 if (stop >= EFX_BUF_TBL_SIZE) { in efx_sram_buf_tbl_set() 78 for (id = start; id != stop; id++) { in efx_sram_buf_tbl_set() 93 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1); in efx_sram_buf_tbl_set() 101 EFSYS_ASSERT3U(id, ==, stop); in efx_sram_buf_tbl_set() 148 id = stop; in efx_sram_buf_tbl_set() 172 uint32_t stop = start + n; in efx_sram_buf_tbl_clear() local 193 EFSYS_ASSERT3U(stop, <, EFX_BUF_TBL_SIZE); in efx_sram_buf_tbl_clear() 195 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1); in efx_sram_buf_tbl_clear() 198 FRF_AZ_BUF_CLR_CMD, 1, FRF_AZ_BUF_CLR_END_ID, stop - 1, in efx_sram_buf_tbl_clear()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ |
| HD | regengine.inc | 143 const char *stop; 150 stop = string + pmatch[0].rm_eo; 153 stop = start + strlen(start); 155 if (stop < start) 160 for (dp = start; dp < stop; dp++) 161 if (*dp == g->must[0] && stop - dp >= g->mlen && 164 if (dp == stop) /* we didn't find g->must */ 175 m->endp = stop; 185 endp = fast(m, start, stop, gf, gl); 199 endp = slow(m, m->coldp, stop, gf, gl); [all …]
|
| /freebsd-11-stable/sys/kern/ |
| HD | kern_linker.c | 195 struct sysinit **start, **stop, **sipp, **xipp, *save; in linker_file_sysinit() local 202 if (linker_file_lookup_set(lf, "sysinit_set", &start, &stop, NULL) != 0) in linker_file_sysinit() 211 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysinit() 212 for (xipp = sipp + 1; xipp < stop; xipp++) { in linker_file_sysinit() 229 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysinit() 243 struct sysinit **start, **stop, **sipp, **xipp, *save; in linker_file_sysuninit() local 250 if (linker_file_lookup_set(lf, "sysuninit_set", &start, &stop, in linker_file_sysuninit() 261 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysuninit() 262 for (xipp = sipp + 1; xipp < stop; xipp++) { in linker_file_sysuninit() 279 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysuninit() [all …]
|
| /freebsd-11-stable/usr.bin/cut/ |
| HD | cut.c | 164 size_t setautostart, start, stop; in get_list() local 175 setautostart = start = stop = 0; in get_list() 181 start = stop = strtol(p, &p, 10); in get_list() 187 stop = strtol(p + 1, &p, 10); in get_list() 190 if (!autostop || autostop > stop) in get_list() 191 autostop = stop; in get_list() 196 if (!stop || !start) in get_list() 198 if (maxval < stop) { in get_list() 199 maxval = stop; in get_list() 202 for (pos = positions + start; start++ <= stop; *pos++ = 1); in get_list()
|
| /freebsd-11-stable/tools/regression/pthread/cv_cancel1/ |
| HD | cv_cancel1.c | 39 int stop; variable 49 while (stop == 0) in thr_routine() 62 stop = 0; in main() 73 stop = 1; in main()
|
| /freebsd-11-stable/usr.bin/tabs/ |
| HD | tabs.c | 203 long last, stop; in gettabs() local 210 stop = strtol(tok, &end, 10); in gettabs() 211 if (errno != 0 || *end != '\0' || stop <= 0) in gettabs() 217 stop += last; in gettabs() 219 if (last > stop) in gettabs() 221 last = stops[(*nstops)++] = stop; in gettabs()
|
| /freebsd-11-stable/stand/usb/tools/ |
| HD | sysinit.c | 48 static struct sysinit_data **stop; variable 230 stop = start + entries; in main() 235 if (start != stop) in main() 239 for (sipp = start; sipp < stop; sipp++) { in main() 254 for (sipp = start; sipp < stop; sipp++) { in main() 287 for (c = 0, sipp = start; sipp < stop; c++, sipp++) { in do_sysinit() 313 for (c = 0, sipp = start; sipp < stop; c++, sipp++) { in do_sysinit()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ |
| HD | CoreProperties.td | 41 def StopDisassemblyCount: Property<"stop-disassembly-count", "SInt64">, 45 def StopDisassemblyDisplay: Property<"stop-disassembly-display", "Enum">, 50 def StopLineCountAfter: Property<"stop-line-count-after", "SInt64">, 54 def StopLineCountBefore: Property<"stop-line-count-before", "SInt64">, 62 def StopShowColumn: Property<"stop-show-column", "Enum">, 66 def StopShowColumnAnsiPrefix: Property<"stop-show-column-ansi-prefix", "String">, 70 def StopShowColumnAnsiSuffix: Property<"stop-show-column-ansi-suffix", "String">, 80 …si.normal}}{, ${thread.info.trace_messages} messages}{, stop reason = ${ansi.fg.red}${thread.stop-… 82 def ThreadStopFormat: Property<"thread-stop-format", "FormatEntity">, 84 …si.normal}}{, ${thread.info.trace_messages} messages}{, stop reason = ${ansi.fg.red}${thread.stop-… [all …]
|
| /freebsd-11-stable/contrib/llvm-project/lld/Common/ |
| HD | Timer.cpp | 18 void ScopedTimer::stop() { in stop() function in ScopedTimer 21 t->stop(); in stop() 25 ScopedTimer::~ScopedTimer() { stop(); } in ~ScopedTimer() 37 void Timer::stop() { in stop() function in Timer
|
| /freebsd-11-stable/contrib/netbsd-tests/lib/libc/hash/ |
| HD | t_hmac.c | 49 int stop; in test() local 82 stop = 0; in test() 101 stop = 1; in test() 104 ATF_REQUIRE_MSG(!stop, "hash %s failed for " in test()
|
| /freebsd-11-stable/contrib/libgnuregex/ |
| HD | regex.c | 38 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \ argument 39 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop) 47 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \ argument 48 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
|
| /freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/ |
| HD | config_file.c | 117 open_section(parse_context_t *ctx, svn_boolean_t *stop) in open_section() argument 127 *stop = TRUE; in open_section() 136 *stop = FALSE; in open_section() 144 close_section(parse_context_t *ctx, svn_boolean_t *stop) in close_section() argument 155 *stop = TRUE; in close_section() 164 *stop = FALSE; in close_section() 170 add_value(parse_context_t *ctx, svn_boolean_t *stop) in add_value() argument 181 *stop = TRUE; in add_value() 190 *stop = FALSE; in add_value() 417 svn_boolean_t stop; in parse_value_continuation_lines() local [all …]
|