Searched refs:bounds (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11-stable/etc/rc.d/
H A Dmsgs12 desc="Make a bounds file for msgs(1)"
18 # Make a bounds file for msgs(1) if there isn't one already
20 if [ -d /var/msgs -a ! -f /var/msgs/bounds -a ! -L /var/msgs/bounds ]; then
21 echo 0 > /var/msgs/bounds
/freebsd-11-stable/sbin/savecore/
H A Dsavecore.c105 const char *device, int bounds, const int status)
134 xo_emit_h(xo, "{P: }{Lwc:Bounds}{:bounds/%d}\n", bounds);
160 * directory and we should not try to read a bounds file.
167 if ((fp = fopen("bounds", "r")) == NULL) {
169 printf("unable to open bounds file, using 0\n");
175 syslog(LOG_WARNING, "bounds file is empty, using 0");
177 syslog(LOG_WARNING, "bounds file: %s", strerror(errno));
185 syslog(LOG_WARNING, "invalid value found in bounds, using 0");
191 writebounds(int bounds) argument
104 printheader(xo_handle_t *xo, const struct kerneldumpheader *h, const char *device, int bounds, const int status) argument
219 saved_dump_size(int bounds) argument
241 saved_dump_remove(int bounds) argument
273 check_space(const char *savedir, off_t dumpsize, int bounds) argument
492 int bounds, status; local
[all...]
/freebsd-11-stable/contrib/apr-util/misc/
H A Dapr_queue.c48 unsigned int bounds;/**< max size of queue */ member in struct:apr_queue_t
73 #define apr_queue_full(queue) ((queue)->nelts == (queue)->bounds)
130 queue->bounds = queue_capacity;
189 if (queue->in >= queue->bounds)
190 queue->in -= queue->bounds;
231 if (queue->in >= queue->bounds)
232 queue->in -= queue->bounds;
305 if (queue->out >= queue->bounds)
306 queue->out -= queue->bounds;
347 if (queue->out >= queue->bounds)
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dada-tasks.c295 int bounds[2]; local
324 READ_MEMORY ((CORE_ADDR) EXTRACT_ADDRESS (atcb.image.P_BOUNDS), bounds);
325 bounds[1] = EXTRACT_INT (bounds[1]);
327 (char *) &image, bounds[1]);
328 printf_filtered ("Name: %.*s\n", bounds[1], image);
360 bounds);
361 bounds[1] = EXTRACT_INT (bounds[1]);
363 (char *) &image, bounds[
471 int bounds[2]; local
[all...]
H A Dada-typeprint.c159 /* A range needs at least 2 bounds to be printed. If there are less
171 /* We extract the range type bounds respectively from the first element
187 print_range_bound (struct type *type, char *bounds, int *n,
191 if (ada_scan_number (bounds, *n, &B, n))
194 if (bounds[*n] == '_')
200 char *bound = bounds + *n;
186 print_range_bound(struct type *type, char *bounds, int *n, struct ui_file *stream) argument
H A Dada-lang.c722 /* Names of MAX_ADA_DIMENS bounds in P_BOUNDS fields of
812 pointer to one, the type of its bounds data; otherwise, NULL. */
841 one, a pointer to its bounds data. Otherwise NULL. */
876 position of the field containing the address of the bounds data. */
884 size of the field containing the address of the bounds data. */
898 pointer-to-array-with-no-bounds type); otherwise, NULL. Use
899 ada_type_of_array to get an array type with bounds data. */
952 /* If BOUNDS is an array-bounds structure (or pointer to one), return argument
956 desc_one_bound (struct value *bounds, int i, int which)
958 return value_struct_elt (&bounds, NUL
1062 ada_type_of_array(struct value *arr, int bounds) argument
3103 struct value *bounds = allocate_value (bounds_type); local
[all...]
/freebsd-11-stable/usr.bin/msgs/
H A Dmsgs.c92 #define CMODE 0644 /* bounds file creation mode */
101 #define BOUNDS "bounds" /* message bounds file */
168 struct stat buf; /* stat to check access of bounds */
169 FILE *bounds; local
242 * determine current message bounds
247 * Test access rights to the bounds file
262 bounds = fopen(fname, "r");
264 if (bounds != NULL) {
265 fscanf(bounds, "
[all...]
/freebsd-11-stable/lib/libc/tests/ssp/
H A DMakefile10 # Only use -fsanitize=bounds when using the in-tree compiler. Otherwise
12 CFLAGS.h_raw+= -fsanitize=bounds
28 # This testcase doesn't run properly when not compiled with -fsantize=bounds
32 # now on amd64 when it trips the stack bounds specified in t_ssp.sh . This
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp164 // Make sure the stack bounds are fully initialized.
187 const auto bounds = GetStackBounds(); local
188 return bounds.top - bounds.bottom;
388 const auto bounds = GetStackBounds(); local
389 return addr >= bounds.bottom && addr < bounds.top;
/freebsd-11-stable/usr.sbin/crashinfo/
H A Dcrashinfo.sh127 if ! [ -r $CRASHDIR/bounds ]; then
131 next=`cat $CRASHDIR/bounds`
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp324 Window(const char *name, const Rect &bounds) argument
329 Reset(::newwin(bounds.size.height, bounds.size.width, bounds.origin.y,
330 bounds.origin.y));
415 void SetBounds(const Rect &bounds) { argument
416 const bool moving_window = bounds.origin != GetParentOrigin();
419 Reset(::subwin(m_parent->m_window, bounds.size.height, bounds.size.width,
420 bounds
442 CreateSubWindow(const char *name, const Rect &bounds, bool make_active) argument
575 Rect bounds = GetBounds(); local
[all...]
/freebsd-11-stable/sys/contrib/ck/src/
H A Dck_hs.c557 CK_HS_WORD *bounds = NULL; local
572 bounds = hs->m->malloc(size);
573 if (bounds == NULL)
576 memset(bounds, 0, size);
616 if (bounds != NULL && n_probes > bounds[offset])
617 bounds[offset] = n_probes;
629 if (bounds != NULL) {
631 CK_HS_STORE(&map->probe_bound[i], bounds[i]);
633 hs->m->free(bounds, siz
[all...]
H A Dck_ht.c388 CK_HT_WORD *bounds = NULL; local
406 bounds = ht->m->malloc(size);
407 if (bounds == NULL)
410 memset(bounds, 0, size);
477 if (bounds != NULL && probes_wr > bounds[offset])
478 bounds[offset] = probes_wr;
486 if (bounds != NULL) {
488 CK_HT_STORE(&map->probe_bound[i], bounds[i]);
490 ht->m->free(bounds, siz
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dcfgloop.h119 struct nb_iter_bound *bounds; member in struct:loop
H A Dtree-ssa-loop-niter.c599 (as wrap around the bounds of memory will never return a pointer
1503 Analysis of upper bounds on number of iterations of a loop.
1703 elt->next = loop->bounds;
1704 loop->bounds = elt;
1715 for (bound = loop->bounds; bound; bound = bound->next)
1728 /* The following analyzers are extracting informations on the bounds
1992 keep the evolution confined in TYPEs bounds. Return true when the
2066 for (bound = loop->bounds; bound; bound = bound->next)
2082 /* Frees the information on upper bounds on numbers of iterations of LOOP. */
2091 for (bound = loop->bounds; boun
[all...]
H A Dc-typeck.c216 error ("invalid use of array with unspecified bounds");
2055 the array bounds cannot be stored in a register either; because we
4810 /* Push an array bounds on the stack. Printed as [BOUNDS]. */
4813 push_array_bounds (unsigned HOST_WIDE_INT bounds)
4815 PUSH_SPELLING (SPELLING_BOUNDS, bounds, u.i);
6033 error_init ("array index in initializer exceeds array bounds");
6036 error_init ("array index in initializer exceeds array bounds");
6056 error_init ("array index range in initializer exceeds array bounds");
4789 push_array_bounds(unsigned HOST_WIDE_INT bounds) argument
/freebsd-11-stable/stand/efi/boot1/
H A DMakefile18 CWARNFLAGS.zfs_module.c += -Wno-array-bounds
/freebsd-11-stable/share/mk/
H A Dbsd.sys.mk105 CWARNFLAGS.clang+= -Wno-array-bounds
136 -Wno-error=array-bounds \
/freebsd-11-stable/sys/conf/
H A Dkern.mk57 -Wno-error=array-bounds \
/freebsd-11-stable/sys/contrib/v4l/
H A Dvideodev2.h638 struct v4l2_rect bounds; member in struct:v4l2_cropcap
/freebsd-11-stable/contrib/tzdata/
H A DMakefile263 -Walloc-size-larger-than=100000 -Warray-bounds=2 \
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_tasking.cpp3960 // class to encapsulate manipulating loop bounds in a taskloop task.
3977 kmp_taskloop_bounds_t(kmp_task_t *_task, const kmp_taskloop_bounds_t &bounds) argument
3979 lower_offset(bounds.lower_offset), upper_offset(bounds.upper_offset) {}
4091 // compiler provides global bounds here
4140 // adjust task-specific bounds
4400 // compiler provides global bounds here
/freebsd-11-stable/contrib/gcc/cp/
H A Dparser.c999 make_array_declarator (cp_declarator *element, tree bounds)
1005 declarator->u.array.bounds = bounds;
5533 *nelts = declarator->u.array.bounds;
5653 bounds. */
12188 tree bounds;
12206 bounds
12211 bounds = fold_non_dependent_expr (bounds);
12218 bounds
997 make_array_declarator(cp_declarator *element, tree bounds) argument
12186 tree bounds; local
[all...]
H A Dcp-tree.h3801 /* The bounds to the array. */
3802 tree bounds;
3793 tree bounds; member in struct:cp_declarator::__anon1285::__anon1288
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1542 auto bounds = GetSectionBounds(s); variable
1543 InitStructBuilder.add(bounds.first);
1544 InitStructBuilder.add(bounds.second);

Completed in 564 milliseconds

12