| /mirbsd/src/usr.sbin/sensorsd/ |
| D | sensorsd.c | 83 struct limits_t *limit; in main() local 110 if ((limit = calloc(1, sizeof(struct limits_t))) == NULL) in main() 112 limit->num = i; in main() 113 limit->type = sensor.type; in main() 114 TAILQ_INSERT_TAIL(&limits, limit, entries); in main() 174 struct limits_t *limit; in check_sensors() local 183 TAILQ_FOREACH(limit, &limits, entries) in check_sensors() 184 if (limit->watch) { in check_sensors() 185 mib[2] = limit->num; in check_sensors() 189 limit->last_val = sensor.value; in check_sensors() [all …]
|
| /mirbsd/src/lib/libncurses/src/ncurses/base/ |
| D | lib_slkset.c | 54 int limit; in NCURSES_EXPORT() local 66 limit = MAX_SKEY_LEN(SP->slk_format); in NCURSES_EXPORT() 85 if (wcwidth(wc) + numcols > limit) in NCURSES_EXPORT() 96 if (numcols > limit) in NCURSES_EXPORT() 97 numcols = limit; in NCURSES_EXPORT() 107 (unsigned) (limit + in NCURSES_EXPORT() 118 offset = (limit - numcols) / 2; in NCURSES_EXPORT() 121 offset = limit - numcols; in NCURSES_EXPORT() 133 if (offset < limit) { in NCURSES_EXPORT() 136 (unsigned) (limit - (offset + numcols))); in NCURSES_EXPORT() [all …]
|
| D | lib_scroll.c | 55 int limit; in NCURSES_EXPORT() local 82 limit = top - n; in NCURSES_EXPORT() 83 for (line = bottom; line >= limit && line >= 0; line--) { in NCURSES_EXPORT() 91 for (line = top; line < limit && line <= win->_maxy; line++) { in NCURSES_EXPORT() 101 limit = bottom - n; in NCURSES_EXPORT() 102 for (line = top; line <= limit && line <= win->_maxy; line++) { in NCURSES_EXPORT() 109 for (line = bottom; line > limit && line >= 0; line--) { in NCURSES_EXPORT()
|
| /mirbsd/src/gnu/usr.bin/perl/t/lib/warnings/ |
| D | regexec | 7 Complex regular subexpression recursion limit (%d) exceeded 10 Complex regular subexpression recursion limit (%d) exceeded 27 # you may have to increase the default stacksize limit in your 36 # % limit stacksize 38 # % limit stacksize 16000 41 Complex regular subexpression recursion limit (*MASKED*) exceeded at - line 9. 53 # you may have to increase the default stacksize limit in your 62 # % limit stacksize 64 # % limit stacksize 16000 79 # you may have to increase the default stacksize limit in your [all …]
|
| /mirbsd/src/usr.sbin/dhcpd/ |
| D | tree.c | 133 tree_limit(struct tree *tree, int limit) in tree_limit() argument 139 if (tree->data.const_val.len > limit) in tree_limit() 140 tree->data.const_val.len = limit; in tree_limit() 149 rv->data.limit.tree = tree; in tree_limit() 150 rv->data.limit.limit = limit; in tree_limit() 212 int limit; in tree_evaluate_recurse() local 232 limit = *bufix + tree->data.limit.limit; in tree_evaluate_recurse() 234 tree->data.limit.tree); in tree_evaluate_recurse() 235 *bufix = limit; in tree_evaluate_recurse()
|
| D | tree.h | 69 struct limit { struct 71 int limit; member 72 } limit; member
|
| /mirbsd/src/lib/libc/db/hash/ |
| D | hash_log2.c | 43 u_int32_t i, limit; in __log2() local 45 limit = 1; in __log2() 46 for (i = 0; limit < num; limit = limit << 1, i++); in __log2()
|
| /mirbsd/src/gnu/usr.bin/binutils/gas/ |
| D | input-scrub.c | 300 register char *limit; /*->just after last char of buffer. */ in input_scrub_next_buffer() local 339 limit = input_file_give_next_buffer (buffer_start in input_scrub_next_buffer() 342 if (limit) in input_scrub_next_buffer() 346 for (p = limit - 1; *p != '\n'; --p) in input_scrub_next_buffer() 354 limoff = limit - buffer_start; in input_scrub_next_buffer() 361 limit = input_file_give_next_buffer (buffer_start + limoff); in input_scrub_next_buffer() 363 if (limit == NULL) in input_scrub_next_buffer() 372 for (p = limit - 1; *p != '\n'; --p) in input_scrub_next_buffer() 378 partial_size = limit - p; in input_scrub_next_buffer()
|
| /mirbsd/src/lib/libncurses/src/ncurses/trace/ |
| D | trace_xnames.c | 46 int limit = tp->ext_Booleans + tp->ext_Numbers + tp->ext_Strings; in NCURSES_EXPORT() local 48 if (limit) { in NCURSES_EXPORT() 54 limit, in NCURSES_EXPORT() 57 for (n = 0; n < limit; n++) { in NCURSES_EXPORT()
|
| /mirbsd/src/gnu/usr.bin/binutils/libiberty/ |
| D | obstack.c | 176 h->chunk_limit = chunk->limit in _obstack_begin() 222 h->chunk_limit = chunk->limit in _obstack_begin_1() 258 new_chunk->limit = h->chunk_limit = (char *) new_chunk + new_size; in _obstack_newchunk() 313 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj)) in _obstack_allocated_p() 339 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj)) in _obstack_free() 351 h->chunk_limit = lp->limit; in _obstack_free() 371 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj)) in obstack_free() 383 h->chunk_limit = lp->limit; in obstack_free() 399 nbytes += lp->limit - (char *) lp; in _obstack_memory_used()
|
| /mirbsd/src/usr.bin/skeyaudit/ |
| D | skeyaudit.c | 49 int ch, left, aflag, iflag, limit; in main() local 52 limit = 12; in main() 65 if ((limit = (int)strtol(optarg, NULL, 10)) == 0) in main() 102 if (left >= limit) in main() 131 if (left < limit) in main()
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | go32-nat.c | 1359 unsigned short limit __attribute__((packed)); member 1388 unsigned long limit = (descr.limit1 << 16) | descr.limit0; in display_descriptor() local 1397 limit = (limit << 12) | 0xfff; /* big segment: low 12 bit set */ in display_descriptor() 1402 descr.base2, descr.base1, descr.base0, limit); in display_descriptor() 1545 unsigned limit = ldt_descr.limit0 | (ldt_descr.limit1 << 16); in go32_sldt() local 1551 limit = (limit << 12) | 0xfff; in go32_sldt() 1554 if (limit > 0xffff) in go32_sldt() 1555 limit = 0xffff; in go32_sldt() 1557 max_entry = (limit + 1) / 8; in go32_sldt() 1561 if (ldt_entry > limit) in go32_sldt() [all …]
|
| /mirbsd/src/lib/libssl/src/doc/ssl/ |
| D | SSL_CTX_get_verify_mode.pod | 26 SSL_CTX_get_verify_depth() returns the verification depth limit currently set 27 in B<ctx>. If no limit has been explicitly set, -1 is returned and the 30 SSL_get_verify_depth() returns the verification depth limit currently set 31 in B<ssl>. If no limit has been explicitly set, -1 is returned and the
|
| /mirbsd/src/lib/libc/gen/ |
| D | glob.c | 169 size_t limit[] = { 0, 0, 0 }; in glob() local 203 return globexp1(patbuf, pglob, limit); in glob() 205 return glob0(patbuf, pglob, limit); in glob() 214 globexp1(const Char *pattern, glob_t *pglob, size_t *limit) in globexp1() argument 220 return glob0(pattern, pglob, limit); in globexp1() 223 return globexp2(ptr, pattern, pglob, limit); in globexp1() 225 return glob0(pattern, pglob, limit); in globexp1() 235 globexp2(const Char *ptr, const Char *pattern, glob_t *pglob, size_t *limit) in globexp2() argument 271 return glob0(patbuf, pglob, limit); in globexp2() 317 rv = globexp1(patbuf, pglob, limit); in globexp2() [all …]
|
| /mirbsd/src/libexec/getty/ |
| D | main.c | 171 struct rlimit limit; in main() local 188 limit.rlim_max = RLIM_INFINITY; in main() 189 limit.rlim_cur = GETTY_TIMEOUT; in main() 190 (void)setrlimit(RLIMIT_CPU, &limit); in main() 325 limit.rlim_max = RLIM_INFINITY; in main() 326 limit.rlim_cur = RLIM_INFINITY; in main() 327 (void)setrlimit(RLIMIT_CPU, &limit); in main()
|
| /mirbsd/src/gnu/usr.bin/cvs/diff/ |
| D | util.c | 598 char const *text = line[0], *limit = line[1]; /* Help the compiler. */ local 611 output_1_line (text, limit, flag_format, line_flag); 613 if ((!line_flag || line_flag[0]) && limit[-1] != '\n') 623 output_1_line (text, limit, flag_format, line_flag) in output_1_line() argument 624 char const *text, *limit, *flag_format, *line_flag; in output_1_line() 627 write_output (text, limit - text); 637 while (t < limit) 652 if (flag_format && t < limit && *t != '\n')
|
| /mirbsd/src/gnu/usr.bin/texinfo/info/ |
| D | echo-area.c | 933 int limit, iterations, max_label = 0; variable 953 limit = calling_window->width / max_label; 954 if (limit != 1 && (limit * max_label == calling_window->width)) 955 limit--; 959 if (limit == 0) 960 limit = 1; 963 iterations = (completions_found_index + (limit - 1)) / limit; 967 if (completions_found_index < limit) 975 for (j = 0, l = i; j < limit; j++) 988 if (j + 1 < limit)
|
| /mirbsd/src/usr.sbin/lpr/filters/ |
| D | lpf.c | 85 char *limit; in main() local 196 for (cp = buf[i], limit = cp+maxcol[i]; cp <= limit;) { in main()
|
| /mirbsd/src/gnu/usr.bin/perl/lib/CPAN/ |
| D | FirstTime.pm | 548 my $limit = $#{ $items } - $pos; 549 $limit = 15 if $limit > 15; 552 $pos = display_some($items, $limit, $pos); 575 my ($items, $limit, $pos) = @_; 578 my @displayable = @$items[$pos .. ($pos + $limit)];
|
| /mirbsd/src/lib/libncurses/src/include/ |
| D | term_entry.h | 77 #define EXT_NAMES(tp,i,limit,index,table) (i >= limit) ? tp->ext_Names[index] : table[i] argument 82 #define EXT_NAMES(tp,i,limit,index,table) table[i] argument
|
| /mirbsd/src/gnu/usr.bin/lynx/WWW/Library/Implementation/ |
| D | HTTCP.c | 1466 int limit = 0; in fill_addrinfo() local 1472 ++limit; in fill_addrinfo() 1476 CTRACE((tfp, "...fill_addrinfo %d:%lu\n", limit, (unsigned long) need)); in fill_addrinfo() 1482 heap = ((char *) actual) + ((size_t) limit * sizeof(LYNX_ADDRINFO)); in fill_addrinfo() 1484 for (count = 0; count < limit; ++count) { in fill_addrinfo() 1503 actual->ai_next = ((count + 1 < limit) in fill_addrinfo() 1520 int limit; in read_addrinfo() local 1524 for (limit = 0; actual[limit].ai_next; ++limit) { in read_addrinfo() 1526 ++limit; in read_addrinfo() 1527 heap = (char *) (actual + limit); in read_addrinfo() [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/gas/config/ |
| D | atof-vax.c | 428 LITTLENUM_TYPE *limit; in md_atof() local 439 limit = words + (number_of_chars / sizeof (LITTLENUM_TYPE)); in md_atof() 440 for (littlenumP = words; littlenumP < limit; littlenumP++) in md_atof()
|
| D | atof-tahoe.c | 386 register LITTLENUM_TYPE *limit; local 398 limit = words + (number_of_chars / sizeof (LITTLENUM_TYPE)); 400 littlenum_pointer < limit;
|
| /mirbsd/src/gnu/usr.bin/rcs/src/ |
| D | rcslex.c | 315 char const *limit; in nextlex() local 348 limit = sp + tokbuf.size; in nextlex() 361 if (limit <= sp) in nextlex() 362 sp = bufenlarge(&tokbuf, &limit); in nextlex() 726 char const *limit; local 731 tp = target->string; limit = tp + target->size; 750 if (tp == limit) 751 tp = bufenlarge(target, &limit);
|
| /mirbsd/src/gnu/usr.bin/lynx/src/ |
| D | LYShowInfo.c | 212 size_t limit = sizeof(buf) - 1; in LYShowInfo() local 214 if ((buf_size = (int) readlink(temp, buf, limit)) != -1) { in LYShowInfo() 215 if (buf_size > (int) limit) in LYShowInfo() 216 buf_size = (int) limit; in LYShowInfo() 219 sprintf(buf, "%.*s", (int) limit, in LYShowInfo()
|