Searched defs:by (Results 1 - 14 of 14) sorted by relevance

/illumos-gate/usr/src/lib/libcurses/screen/
H A Dmvwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
36 * software developed by the University of California, Berkeley, and its
50 mvwin(WINDOW *win, int by, int bx) argument
52 if ((by + win->_maxy) > LINES || (bx + win->_maxx) > COLS ||
53 by < 0 || bx < 0)
56 win->_begy = (short) by;
H A D_subpad.c17 * fields enclosed by brackets "[]" replaced with your own identifying
36 * software developed by the University of California, Berkeley, and its
49 subpad(WINDOW *win, int l, int nc, int by, int bx) argument
51 return (derwin(win, l, nc, by, bx));
H A Dsubwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
36 * software developed by the University of California, Berkeley, and its
48 subwin(WINDOW *win, int l, int nc, int by, int bx) argument
50 return (derwin(win, l, nc, by - win->_begy, bx - win->_begx));
H A Dderwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
36 * software developed by the University of California, Berkeley, and its
52 * by, bx: coordinates for upper-left corner of the derived
57 derwin(WINDOW *orig, int num_lines, int nc, int by, int bx) argument
67 if (by < 0 || (by + num_lines) > orig->_maxy || bx < 0 ||
73 num_lines = orig->_maxy - by;
76 if ((win = _makenew(num_lines, nc, by + orig->_begy,
84 win->_pary = (short) by;
92 int hby = by;
[all...]
H A Dnewwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
36 * software developed by the University of California, Berkeley, and its
51 newwin(int nlines, int ncols, int by, int bx) argument
57 nlines = LINES - by;
61 if ((by < 0) || (bx < 0) || ((win = _makenew(nlines, ncols, by,
/illumos-gate/usr/src/ucblib/libcurses/
H A Dmvwin.c31 mvwin(WINDOW *win, int by, int bx) argument
36 if (by + win->_maxy > LINES || bx + win->_maxx > COLS)
38 dy = by - win->_begy;
50 if (by < orig->_begy || win->_maxy + dy > orig->_maxy)
54 win->_begy = (short)by;
H A Dnewwin.c44 int i, by, bx, nl, nc; local
47 by = begy;
53 nl = LINES - by;
56 if ((win = makenew(nl, nc, by, bx)) == NULL)
98 int by, bx, nl, nc; local
100 by = begy;
109 fprintf(outf, "SUBWIN(%0.2o, %d, %d, %d, %d)\n", orig, nl, nc, by, bx);
111 if (by < orig->_begy || bx < orig->_begx ||
112 by + nl > orig->_maxy + orig->_begy ||
116 nl = orig->_maxy + orig->_begy - by;
158 int by, bx, nl, nc; local
[all...]
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dmvwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
23 * Copyright (c) 1995-1998 by Sun Microsystems, Inc.
36 * Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved.
56 mvwin(WINDOW *w, int by, int bx) argument
62 if (by < 0 || bx < 0)
67 if (lines < by + w->_maxy || columns < bx + w->_maxx)
71 if (parent->_begy + parent->_maxy < by + w->_maxy ||
79 dy = by - parent->_begy;
86 w->_begy = (short) by;
H A Dgetwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
23 * Copyright (c) 1995-1998 by Sun Microsystems, Inc.
36 * Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved.
83 int by, bx, my, mx; local
86 if (fscanf(fp, "MAX=%d,%d BEG=%d,%d ", &my, &mx, &by, &bx) < 4)
92 if ((w = newwin(my, mx, by, bx)) == NULL)
96 by = fscanf(fp,
100 if (by < 7)
106 by = fscanf(fp, "BG=%hx,%hd,%[^\n] ", &w->_bg._at, &w->_bg._co, mbs);
107 if (by <
[all...]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dgetwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
23 * Copyright (c) 1995, by Sun Microsystems, Inc.
34 * Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved.
81 int by, bx, my, mx; local
88 if (fscanf(fp, "MAX=%d,%d BEG=%d,%d ", &my, &mx, &by, &bx) < 4)
94 if ((w = newwin(my, mx, by, bx)) == (WINDOW *) 0)
98 by = fscanf(
103 if (by < 7)
109 by = fscanf( fp, "BG=%hx,%hd,%[^\n] ", &w->_bg._at, &w->_bg._co, mbs);
110 if (by <
[all...]
/illumos-gate/usr/src/man/man1m/
H A DMakefile618 hal-find-by-capability.1m \
619 hal-find-by-property.1m \
716 hal-find-by-capability.1m := LINKSRC = hal-find.1m
717 hal-find-by-property.1m := LINKSRC = hal-find.1m
/illumos-gate/usr/src/lib/libdiskmgt/common/
H A Dentry.c16 * fields enclosed by brackets "[]" replaced with your own identifying
64 static int build_usage_string(char *dname, char *by, char *data, char **use,
515 * Errors must be handled by the caller. The dm_descriptor_t *
550 * Errors must be handled by the caller. The dm_descriptor_t *
668 * This is done by assuming the following:
802 * Check a slice to see if it's being used by swap.
850 char *by, *data; local
944 if (nvpair_value_string(nvwhat, &by)) {
957 if (strcmp(by, DM_USE_LU) == 0 ||
958 strcmp(by, DM_USE_F
1266 build_usage_string(char *dname, char *by, char *data, char **msg, int *found, int *errp) argument
[all...]
/illumos-gate/usr/src/cmd/zonestat/zonestat/
H A Dzonestat.c16 * fields enclosed by brackets "[]" replaced with your own identifying
285 " %s Report resources used by zones\n"
297 " \"%s\"\tDate as specifed by date(1) command\n"
298 " \"%s\"\tUnix time as returned by time(2)\n"
323 " %s Sort output by the specified columns:\n"
330 " \"%s\"\tSort summary by cpu\n"
331 " \"%s\"\tSort summary by physical memory\n"
332 " \"%s\"\tSort summary by virtual memory\n"),
1106 int (*compar)(const void *, const void *), int by)
1108 g_sort_by = by;
1105 zonestat_qsort(void *base, size_t nel, size_t width, int (*compar)(const void *, const void *), int by) argument
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Ddevcfg.c16 * fields enclosed by brackets "[]" replaced with your own identifying
153 * (MUTEX_DEFAULT) - it is automatically initialized by being allocated
282 devi->devi_major = DDI_MAJOR_T_NONE; /* unbound by default */
429 /* free devi_addr_buf allocated by ddi_set_name_addr() */
900 * added to the cache, against the client dip, by use of
1024 * Start by rebinding node to the path-bound driver.
1077 * the parent by calling ndi_rele_devi().
1091 * dip cannot be downgraded by the framework.
1136 * been kept by probe_node(). Avoid free when we are called
1152 * rebind of a driver.conf enumerated node is made by
2205 uint_t by; local
2303 int by = FIND_ADDR_BY_CALLBACK; local
[all...]

Completed in 113 milliseconds