| /NextBSD/usr.bin/primes/ |
| HD | primes.c | 98 ubig stop; /* don't generate at or above this value */ in main() local 115 stop = SPSPMAX; in main() 137 stop = strtoumax(argv[1], &p, 0); in main() 142 if (stop > SPSPMAX) in main() 164 if (start > stop) in main() 166 primes(start, stop); in main() 205 primes(ubig start, ubig stop) in primes() argument 222 if (stop < 3) { in primes() 223 stop = (ubig)2; in primes() 225 if (stop <= start) { in primes() [all …]
|
| /NextBSD/lib/libc/regex/ |
| HD | engine.c | 105 static const char *dissect(struct match *m, const char *start, const char *stop, sopno startst, sop… 106 static const char *backref(struct match *m, const char *start, const char *stop, sopno startst, sop… 107 static const char *fast(struct match *m, const char *start, const char *stop, sopno startst, sopno … 108 static const char *slow(struct match *m, const char *start, const char *stop, sopno startst, sopno … 109 static states step(struct re_guts *g, sopno start, sopno stop, states bef, wint_t ch, states aft); 123 static void at(struct match *m, const char *title, const char *start, const char *stop, sopno start… 164 const char *stop; in matcher() local 178 stop = string + pmatch[0].rm_eo; in matcher() 181 stop = start + strlen(start); in matcher() 183 if (stop < start) in matcher() [all …]
|
| /NextBSD/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);
|
| /NextBSD/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 …]
|
| /NextBSD/bin/pax/ |
| HD | gen_subs.c | 191 char *stop; in l_strncpy() local 194 stop = dest + len; in l_strncpy() 196 while ((dest < stop) && (*src != '\0')) in l_strncpy() 199 while (dest < stop) in l_strncpy() 217 char *stop; in asc_ul() local 220 stop = str + len; in asc_ul() 225 while ((str < stop) && ((*str == ' ') || (*str == '0'))) in asc_ul() 233 while (str < stop) { in asc_ul() 244 while ((str < stop) && (*str >= '0') && (*str <= '7')) in asc_ul() 314 char *stop; in asc_uqd() local [all …]
|
| /NextBSD/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()
|
| /NextBSD/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 …]
|
| /NextBSD/contrib/llvm/include/llvm/ADT/ |
| HD | IntervalMap.h | 563 const KeyT &stop(unsigned i) const { return this->first[i].second; } in stop() function 567 KeyT &stop(unsigned i) { return this->first[i].second; } in stop() function 578 assert((i == 0 || Traits::stopLess(stop(i - 1), x)) && in findFrom() 580 while (i != Size && Traits::stopLess(stop(i), x)) ++i; in findFrom() 593 assert((i == 0 || Traits::stopLess(stop(i - 1), x)) && in safeFind() 595 while (Traits::stopLess(stop(i), x)) ++i; in safeFind() 630 assert((i == 0 || Traits::stopLess(stop(i - 1), a))); in insertFrom() 631 assert((i == Size || !Traits::stopLess(stop(i), a))); in insertFrom() 635 if (i && value(i - 1) == y && Traits::adjacent(stop(i - 1), a)) { in insertFrom() 639 stop(i - 1) = stop(i); in insertFrom() [all …]
|
| /NextBSD/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()
|
| /NextBSD/sys/dev/sfxge/common/ |
| HD | efx_sram.c | 49 uint32_t stop = start + n; in efx_sram_buf_tbl_set() local 73 if (stop >= EFX_BUF_TBL_SIZE) { in efx_sram_buf_tbl_set() 80 for (id = start; id != stop; id++) { in efx_sram_buf_tbl_set() 95 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1); in efx_sram_buf_tbl_set() 103 EFSYS_ASSERT3U(id, ==, stop); in efx_sram_buf_tbl_set() 150 id = stop; in efx_sram_buf_tbl_set() 174 uint32_t stop = start + n; in efx_sram_buf_tbl_clear() local 194 EFSYS_ASSERT3U(stop, <, EFX_BUF_TBL_SIZE); in efx_sram_buf_tbl_clear() 196 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1); in efx_sram_buf_tbl_clear() 199 FRF_AZ_BUF_CLR_CMD, 1, FRF_AZ_BUF_CLR_END_ID, stop - 1, in efx_sram_buf_tbl_clear()
|
| /NextBSD/contrib/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 …]
|
| /NextBSD/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()
|
| /NextBSD/sys/dev/mmc/ |
| HD | mmcsd.c | 322 struct mmc_command stop; in mmcsd_rw() local 337 memset(&stop, 0, sizeof(stop)); in mmcsd_rw() 366 stop.opcode = MMC_STOP_TRANSMISSION; in mmcsd_rw() 367 stop.arg = 0; in mmcsd_rw() 368 stop.flags = MMC_RSP_R1B | MMC_CMD_AC; in mmcsd_rw() 369 stop.mrq = &req; in mmcsd_rw() 370 req.stop = &stop; in mmcsd_rw() 388 daddr_t block, end, start, stop; in mmcsd_delete() local 407 stop = end; /* Round down. */ in mmcsd_delete() 408 stop -= end % erase_sector; in mmcsd_delete() [all …]
|
| /NextBSD/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()
|
| /NextBSD/sys/kern/ |
| HD | kern_linker.c | 191 struct sysinit **start, **stop, **sipp, **xipp, *save; in linker_file_sysinit() local 198 if (linker_file_lookup_set(lf, "sysinit_set", &start, &stop, NULL) != 0) in linker_file_sysinit() 207 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysinit() 208 for (xipp = sipp + 1; xipp < stop; xipp++) { in linker_file_sysinit() 225 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysinit() 239 struct sysinit **start, **stop, **sipp, **xipp, *save; in linker_file_sysuninit() local 246 if (linker_file_lookup_set(lf, "sysuninit_set", &start, &stop, in linker_file_sysuninit() 257 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysuninit() 258 for (xipp = sipp + 1; xipp < stop; xipp++) { in linker_file_sysuninit() 275 for (sipp = start; sipp < stop; sipp++) { in linker_file_sysuninit() [all …]
|
| /NextBSD/usr.bin/tabs/ |
| HD | tabs.c | 201 long last, stop; in gettabs() local 208 stop = strtol(tok, &end, 10); in gettabs() 209 if (errno != 0 || *end != '\0' || stop <= 0) in gettabs() 215 stop += last; in gettabs() 217 if (last > stop) in gettabs() 219 last = stops[(*nstops)++] = stop; in gettabs()
|
| /NextBSD/sys/boot/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()
|
| /NextBSD/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)
|
| /NextBSD/sys/sys/ |
| HD | bitstring.h | 75 #define bit_nclear(name, start, stop) do { \ argument 77 register int _start = (start), _stop = (stop); \ 92 #define bit_nset(name, start, stop) do { \ argument 94 register int _start = (start), _stop = (stop); \
|
| /NextBSD/contrib/less/ |
| HD | signal.c | 75 stop(type) in stop() function 78 LSIGNAL(SIGTSTP, stop); 157 (void) LSIGNAL(SIGTSTP, stop); 229 LSIGNAL(SIGTSTP, stop); in psignals()
|
| /NextBSD/contrib/llvm/projects/libunwind/src/ |
| HD | UnwindLevel1.c | 242 _Unwind_Stop_Fn stop, void *stop_parameter) { in unwind_phase2_forced() argument 278 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced() 334 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced() 402 _Unwind_Stop_Fn stop, void *stop_parameter) { in _Unwind_ForcedUnwind() argument 404 (void *)exception_object, (void *)(uintptr_t)stop); in _Unwind_ForcedUnwind() 410 exception_object->private_1 = (uintptr_t) stop; in _Unwind_ForcedUnwind() 414 return unwind_phase2_forced(&uc, exception_object, stop, stop_parameter); in _Unwind_ForcedUnwind()
|
| /NextBSD/contrib/binutils/gas/ |
| HD | read.c | 1203 mri_comment_end (char *stop, int stopc) in mri_comment_end() argument 1207 input_line_pointer = stop; in mri_comment_end() 1208 *stop = stopc; in mri_comment_end() 1283 char *stop = NULL; in s_align() local 1290 stop = mri_comment_field (&stopc); in s_align() 1388 mri_comment_end (stop, stopc); in s_align() 1427 char *stop = NULL; in s_comm_internal() local 1432 stop = mri_comment_field (&stopc); in s_comm_internal() 1517 mri_comment_end (stop, stopc); in s_comm_internal() 1539 char *stop = NULL; in s_mri_common() local [all …]
|