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

12345678

/illumos-gate/usr/src/lib/libcurses/screen/
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 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 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 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 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/lib/libxcurses/src/libc/xcurses/
H A Dmvwin.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.
53 mvwin(w, by, bx)
55 int by, bx;
61 __m_trace("mvwin(%p, %d, %d)", w, by, bx);
65 if (by < 0 || bx < 0)
70 if (lines < by + w->_maxy || columns < bx + w->_maxx)
74 if (parent->_begy + parent->_maxy < by + w->_maxy
81 dy = by
[all...]
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/lib/libxcurses/src/tabs/
H A DMakefile17 # fields enclosed by brackets "[]" replaced with your own identifying
25 # Copyright (c) 1996, by Sun Microsystems, Inc.
34 # Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved.
71 @echo this tabs is not currently used by Solaris
/illumos-gate/usr/src/lib/libxcurses/src/tput/
H A DMakefile17 # fields enclosed by brackets "[]" replaced with your own identifying
25 # Copyright (c) 1996, by Sun Microsystems, Inc.
34 # Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved.
70 @echo this tput is not currently used by Solaris
/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/libxcurses/src/tic/
H A DMakefile17 # fields enclosed by brackets "[]" replaced with your own identifying
25 # Copyright (c) 1996, by Sun Microsystems, Inc.
34 # Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved.
77 @echo this tic and untic is not currently used by Solaris
/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/libc/i386/sys/
H A Dgettimeofday.s16 * fields enclosed by brackets "[]" replaced with your own identifying
47 / to by struct timeval * argument.
52 movl $274877907, %eax / divide by 1000 as impl. by gcc
54 sarl $6, %edx / simplified by 0 <= nsec <= 1e9
/illumos-gate/usr/src/lib/libc/i386/gen/
H A D_mul64.s16 * fields enclosed by brackets "[]" replaced with your own identifying
32 / We essentially do multiply by longhand, using base 2**32 digits.
51 mull 16(%ebp) / Multiply A.hi by B.lo (produces ad)
55 mull 16(%ebp) / Multiply A.Lo by B.LO (dx:ax = bd.)
/illumos-gate/usr/src/cmd/hal/tools/sunos/
H A Dhal-system-power-hibernate-sunos.sh24 devices=`hal-find-by-capability --capability $type`
H A Dhal-system-power-suspend-sunos.sh35 devices=`hal-find-by-capability --capability $type`
/illumos-gate/usr/src/lib/libbc/libc/sys/common/sparc/
H A D_syscall.s17 ! fields enclosed by brackets "[]" replaced with your own identifying
23 ! Copyright (c) 1986 by Sun Microsystems, Inc.
H A D_exit.s17 ! fields enclosed by brackets "[]" replaced with your own identifying
23 ! Copyright (c) 1986 by Sun Microsystems, Inc.
/illumos-gate/usr/src/cmd/mdb/sparc/v9/libstand/
H A Dsetjmp.s17 * fields enclosed by brackets "[]" replaced with your own identifying
75 clr [%o0 + JB_FLAGS] ! clear flags (used by sigsetjmp)
90 * buf_ptr points to a jmpbuf which has been initialized by setjmp.
93 * We flush the register file to the stack by doing a kernel call.
113 * Since a C routine could call setjmp() followed by alloca() and thus
/illumos-gate/usr/src/cmd/sendmail/cf/sh/
H A Dmakeinfo.sh20 # This product includes software developed by the University of
93 echo '#####' built by $user@$host on `date`
/illumos-gate/usr/src/psm/stand/boot/sparc/common/
H A Dsun4u_srt0.s17 * fields enclosed by brackets "[]" replaced with your own identifying
66 ! Enter here for all disk/secondary booters loaded by a bootblk program or
67 ! inetboot loaded by OBP.
/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/lib/brand/shared/brand/sparc/
H A Dcrt.s16 * fields enclosed by brackets "[]" replaced with your own identifying
47 * routine, but we do know how our initial stack has been setup by
71 sll %l0, CPTRSHIFT, %l0 ! multiply argc by pointer size

Completed in 118 milliseconds

12345678