Symbol: bounds
games/dab/algor.cc
171
if (!b.bounds(by, bx))
games/dab/board.cc
112
if (!bounds(y, x))
games/dab/board.cc
135
if (bounds(y, x)) {
games/dab/board.h
63
int bounds(size_t y, size_t x) const; // True if in bounds
sbin/savecore/savecore.c
647
int bounds, ifd, nr, nw, ofd, tryksyms;
sbin/savecore/savecore.c
663
bounds = 0;
sbin/savecore/savecore.c
665
bounds = atoi(buf);
sbin/savecore/savecore.c
671
(void)fprintf(fp, "%d\n", bounds + 1);
sbin/savecore/savecore.c
677
dirname, bounds, compress ? ".gz" : "");
sbin/savecore/savecore.c
752
dirname, bounds, compress ? ".gz" : "");
sys/dev/pci/xmm7360.c
1167
frame->bounds[frame->n_packets].offset = frame->n_bytes;
sys/dev/pci/xmm7360.c
1168
frame->bounds[frame->n_packets].length = data_len + 16;
sys/dev/pci/xmm7360.c
1227
xmm7360_mux_frame_append_data(frame, &frame->bounds[0], sizeof(struct mux_bounds)*frame->n_packets);
sys/dev/pci/xmm7360.c
1280
struct mux_bounds *bounds;
sys/dev/pci/xmm7360.c
1299
bounds = (void*)&data[first->next + sizeof(struct mux_next_header) + 4];
sys/dev/pci/xmm7360.c
1302
if (!bounds[i].length)
sys/dev/pci/xmm7360.c
1306
&data[bounds[i].offset], bounds[i].length);
sys/dev/pci/xmm7360.c
561
struct mux_bounds bounds[MUX_MAX_PACKETS];
sys/sys/videoio.h
2094
struct v4l2_rect bounds;
usr.bin/msgs/msgs.c
170
FILE *bounds;
usr.bin/msgs/msgs.c
252
bounds = fopen(fname, "r");
usr.bin/msgs/msgs.c
254
if (bounds != NULL) {
usr.bin/msgs/msgs.c
255
if (fscanf(bounds, "%d %d\n", &firstmsg, &lastmsg) < 2)
usr.bin/msgs/msgs.c
257
fclose(bounds);
usr.bin/msgs/msgs.c
264
if (clean || bounds == NULL) { /* relocate message bounds */
usr.bin/msgs/msgs.c
327
bounds = fopen(fname, "w");
usr.bin/msgs/msgs.c
328
if (bounds == NULL) {
usr.bin/msgs/msgs.c
333
fprintf(bounds, "%d %d\n", firstmsg, lastmsg);
usr.bin/msgs/msgs.c
334
fclose(bounds);
usr.bin/msgs/msgs.c
342
bounds = fopen(fname, "w");
usr.bin/msgs/msgs.c
343
if (bounds == NULL) {
usr.bin/msgs/msgs.c
357
fprintf(bounds, "%d %d\n", firstmsg, nextmsg);
usr.bin/msgs/msgs.c
358
fclose(bounds);