HomeSort by relevance Sort by last modified time
    Searched refs:by (Results 1 - 25 of 688) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /netvirt/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/Encode/
Changes.e2x 7 Autogenerated by enc2xs version $_Version_.
  /netvirt/usr/src/lib/libcurses/screen/
_subpad.c 17 * 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)
51 return (derwin(win, l, nc, by, bx));
mvwin.c 17 * 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)
52 if ((by + win->_maxy) > LINES || (bx + win->_maxx) > COLS ||
53 by < 0 || bx < 0)
56 win->_begy = (short) by;
derwin.c 17 * 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)
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...]
subwin.c 17 * 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)
50 return (derwin(win, l, nc, by - win->_begy, bx - win->_begx));
newwin.c 17 * 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)
57 nlines = LINES - by;
61 if ((by < 0) || (bx < 0) || ((win = _makenew(nlines, ncols, by,
  /netvirt/usr/src/lib/libxcurses/src/libc/xcurses/
mvwin.c 17 * 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 - parent->_begy
    [all...]
caps 20 # fields enclosed by brackets "[]" replaced with your own identifying
31 # Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved.
51 # terminfo-name Name used by TIC or DUMP for terminfo definitions.
70 ceol_standout_glitch xhp xs bool Standout not erased by overwriting (hp)
110 magic_cookie_glitch xmc sg number # of blank chars left by smso or rmso
196 key_backspace kbs kb str Sent by backspace key
197 key_catab ktbc ka str Sent by clear-all-tabs key.
198 key_clear kclr kC str Sent by clear screen or erase key.
199 key_ctab kctab kt str Sent by clear-tab key
200 key_dc kdch1 kD str Sent by delete character key
    [all...]
  /netvirt/usr/src/lib/libxcurses/src/tabs/
Makefile 17 # 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
  /netvirt/usr/src/lib/libxcurses/src/terminfo/
Makefile 17 # fields enclosed by brackets "[]" replaced with your own identifying
25 # Copyright (c) 1996, by Sun Microsystems, Inc.
32 @echo these terminfo entries are not currently used by Solaris
  /netvirt/usr/src/lib/libxcurses/src/tput/
Makefile 17 # 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
  /netvirt/usr/src/ucblib/libcurses/
mvwin.c 31 mvwin(WINDOW *win, int by, int bx)
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;
newwin.c 44 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...]
  /netvirt/usr/src/lib/libxcurses/src/tic/
Makefile 17 # 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
  /netvirt/usr/src/lib/libxcurses2/src/libc/xcurses/
mvwin.c 17 * 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)
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;
caps 20 # fields enclosed by brackets "[]" replaced with your own identifying
31 # Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved.
51 # terminfo-name Name used by TIC or DUMP for terminfo definitions.
70 ceol_standout_glitch xhp xs bool Standout not erased by overwriting (hp)
110 magic_cookie_glitch xmc sg number # of blank chars left by smso or rmso
196 key_backspace kbs kb str Sent by backspace key
197 key_catab ktbc ka str Sent by clear-all-tabs key.
198 key_clear kclr kC str Sent by clear screen or erase key.
199 key_ctab kctab kt str Sent by clear-tab key
200 key_dc kdch1 kD str Sent by delete character key
    [all...]
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/
CalcEmu.pm 30 my ($bx,$by);
47 # two's complement: inc and flip all "bits" in $by
48 $by = $y->copy()->binc()->as_hex(); # -1 => 0, -2 => 1, -3 => 2 etc
49 $by =~ s/-?0x//;
50 $by =~ tr/0123456789abcdef/\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08\x07\x06\x05\x04\x03\x02\x01\x00/;
54 $by = $y->as_hex(); # get binary representation
55 $by =~ s/-?0x//;
56 $by =~ tr/fedcba9876543210/\x0f\x0e\x0d\x0c\x0b\x0a\x09\x08\x07\x06\x05\x04\x03\x02\x01\x00/;
60 $by = reverse $by;
    [all...]
  /netvirt/usr/src/cmd/perl/contrib/SUNW/
README 17 # fields enclosed by brackets "[]" replaced with your own identifying
23 Copyright (c) 2000 by Sun Microsystems, Inc.
  /netvirt/usr/src/cmd/fm/modules/common/eversholt/
README 17 # fields enclosed by brackets "[]" replaced with your own identifying
32 driven by one or more eversholt fault tree (.eft) files.
34 eft.c implements the diagnosis engine entry points expected by
37 specific services it requires are either provided by the fmd interfaces,
38 or by the routines in platform.c in this directory.
41 eversholt compiler. Those files are pulled in by the Makefile
  /netvirt/usr/src/cmd/perl/contrib/Solaris/
README 17 # fields enclosed by brackets "[]" replaced with your own identifying
23 Copyright (c) 2000 by Sun Microsystems, Inc.
  /netvirt/usr/src/cmd/syslogd/
README 17 # fields enclosed by brackets "[]" replaced with your own identifying
22 Copyright (c) 2001 by Sun Microsystems, Inc.
  /netvirt/usr/src/lib/libavl/
README 17 # fields enclosed by brackets "[]" replaced with your own identifying
31 The actual source code used to build the avl library is also built by
  /netvirt/usr/src/cmd/perl/5.6.1/distrib/lib/Time/
tm.pm 14 Time::tm - internal object used by Time::gmtime and Time::localtime
22 This module is used internally as a base class by Time::localtime And
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/lib/Encode/
Config.pm 163 Encode::Config -- internally used by Encode
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/lib/Time/
tm.pm 16 Time::tm - internal object used by Time::gmtime and Time::localtime
24 This module is used internally as a base class by Time::localtime And

Completed in 660 milliseconds

1 2 3 4 5 6 7 8 91011>>