/titanic_50/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | 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 …]
|
H A D | mvwin.c | 56 mvwin(WINDOW *w, int by, int bx) in mvwin() argument 62 if (by < 0 || bx < 0) in mvwin() 67 if (lines < by + w->_maxy || columns < bx + w->_maxx) in mvwin() 71 if (parent->_begy + parent->_maxy < by + w->_maxy || in mvwin() 79 dy = by - parent->_begy; in mvwin() 86 w->_begy = (short) by; in mvwin()
|
H A D | getwin.c | 83 int by, bx, my, mx; in getwin() local 86 if (fscanf(fp, "MAX=%d,%d BEG=%d,%d ", &my, &mx, &by, &bx) < 4) in getwin() 92 if ((w = newwin(my, mx, by, bx)) == NULL) in getwin() 96 by = fscanf(fp, in getwin() 100 if (by < 7) in getwin() 106 by = fscanf(fp, "BG=%hx,%hd,%[^\n] ", &w->_bg._at, &w->_bg._co, mbs); in getwin() 107 if (by < 3) in getwin()
|
/titanic_50/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | 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 …]
|
H A D | mvwin.c | 53 mvwin(w, by, bx) in mvwin() argument 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; 88 w->_begy = by;
|
H A D | getwin.c | 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 < 3)
|
/titanic_50/usr/src/lib/libcurses/screen/ |
H A D | derwin.c | 57 derwin(WINDOW *orig, int num_lines, int nc, int by, int bx) in derwin() argument 67 if (by < 0 || (by + num_lines) > orig->_maxy || bx < 0 || in derwin() 73 num_lines = orig->_maxy - by; in derwin() 76 if ((win = _makenew(num_lines, nc, by + orig->_begy, in derwin() 84 win->_pary = (short) by; in derwin() 92 int hby = by; in derwin() 102 for (y = 0; y < num_lines; y++, by++) in derwin() 103 w_y[y] = o_y[by] + bx; in derwin()
|
H A D | mvwin.c | 50 mvwin(WINDOW *win, int by, int bx) in mvwin() argument 52 if ((by + win->_maxy) > LINES || (bx + win->_maxx) > COLS || in mvwin() 53 by < 0 || bx < 0) in mvwin() 56 win->_begy = (short) by; in mvwin()
|
/titanic_50/usr/src/ucblib/libcurses/ |
H A D | newwin.c | 44 int i, by, bx, nl, nc; in newwin() local 47 by = begy; in newwin() 53 nl = LINES - by; in newwin() 56 if ((win = makenew(nl, nc, by, bx)) == NULL) in newwin() 98 int by, bx, nl, nc; in subwin() local 100 by = begy; in subwin() 109 fprintf(outf, "SUBWIN(%0.2o, %d, %d, %d, %d)\n", orig, nl, nc, by, bx); in subwin() 111 if (by < orig->_begy || bx < orig->_begx || in subwin() 112 by + nl > orig->_maxy + orig->_begy || in subwin() 116 nl = orig->_maxy + orig->_begy - by; in subwin() [all …]
|
H A D | mvwin.c | 31 mvwin(WINDOW *win, int by, int bx) in mvwin() argument 36 if (by + win->_maxy > LINES || bx + win->_maxx > COLS) in mvwin() 38 dy = by - win->_begy; in mvwin() 50 if (by < orig->_begy || win->_maxy + dy > orig->_maxy) in mvwin() 54 win->_begy = (short)by; in mvwin()
|
/titanic_50/usr/src/lib/libsqlite/test/ |
H A D | notnull.test | 39 SELECT * FROM t1 order by a; 46 SELECT * FROM t1 order by a; 53 SELECT * FROM t1 order by a; 60 SELECT * FROM t1 order by a; 67 SELECT * FROM t1 order by a; 74 SELECT * FROM t1 order by a; 81 SELECT * FROM t1 order by a; 88 SELECT * FROM t1 order by a; 95 SELECT * FROM t1 order by a; 102 SELECT * FROM t1 order by a; [all …]
|
/titanic_50/usr/src/grub/grub-0.97/ |
H A D | acinclude.m4 | 3 dnl Written by Pavel Roskin. Based on grub_ASM_EXT_C written by 4 dnl Erich Boleyn and modified by OKUJI Yoshinori 89 dnl major pain, by requiring manual assembly to get 16-bit instructions into 184 dnl grub_CHECK_START_SYMBOL checks if start is automatically defined by 186 dnl Written by OKUJI Yoshinori 189 AC_MSG_CHECKING([if start is defined by the compiler]) 204 dnl defined by the compiler. 205 dnl Written by OKUJI Yoshinori 208 AC_MSG_CHECKING([if _start is defined by the compiler]) 223 dnl automatically defined by the compiler. [all …]
|
/titanic_50/usr/src/lib/libdiskmgt/common/ |
H A D | entry.c | 64 static int build_usage_string(char *dname, char *by, char *data, char **use, 850 char *by, *data; in dm_inuse() local 937 if (nvpair_value_string(nvwhat, &by)) { in dm_inuse() 950 if (strcmp(by, DM_USE_LU) == 0 || in dm_inuse() 951 strcmp(by, DM_USE_FS) == 0 || in dm_inuse() 952 strcmp(by, DM_USE_EXPORTED_ZPOOL) == 0) { in dm_inuse() 956 by, data, msg, &found, errp) != 0) { in dm_inuse() 966 if (strcmp(by, DM_USE_DUMP) == 0 || in dm_inuse() 967 strcmp(by, DM_USE_FS) == 0 || in dm_inuse() 968 strcmp(by, DM_USE_EXPORTED_ZPOOL) == 0) { in dm_inuse() [all …]
|
/titanic_50/usr/src/cmd/troff/nroff.d/terms.d/ |
H A D | README | 19 This is followed by a table of 25 lines (defining the first 25 items 50 two fields (N.B. the comment should be omitted) separated by white space. 55 A string is a sequence of characters, probably surrounded by quotes 64 \ followed by 3 octal digits specifies the ascii character 67 This is followed by a line containing the word "charset", and then by the table of 69 knows by 2-character names, e.g. \(hy and \(ga. The entries in this 74 special character, followed by white space, followed by the width of 75 the character (in ems), followed by white space, followed by the 77 surrounded by quotes. The same escapes hold as for strings above.
|
/titanic_50/usr/src/lib/hbaapi/ |
H A D | THIRDPARTYLICENSE | 15 Code, prior Modifications used by a Contributor, and the 16 Modifications made by that particular Contributor. 26 as the Initial Developer in the Source Code notice required by 29 portions thereof with code not governed by the terms of this License. 44 which is described in the Source Code notice required by Exhibit A 46 License is not already Covered Code governed by this License. 50 and apparatus claims, in any patent Licensable by grantor. 64 controls, is controlled by, or is under common control with You. 67 entity, whether by contract or otherwise, or (b) ownership of more 77 trademark) Licensable by Initial Developer to use, [all …]
|
/titanic_50/usr/src/lib/mpapi/libmpapi/ |
H A D | THIRDPARTYLICENSE | 15 Code, prior Modifications used by a Contributor, and the 16 Modifications made by that particular Contributor. 26 as the Initial Developer in the Source Code notice required by 29 portions thereof with code not governed by the terms of this License. 44 which is described in the Source Code notice required by Exhibit A 46 License is not already Covered Code governed by this License. 50 and apparatus claims, in any patent Licensable by grantor. 64 controls, is controlled by, or is under common control with You. 67 entity, whether by contract or otherwise, or (b) ownership of more 77 trademark) Licensable by Initial Developer to use, [all …]
|
/titanic_50/usr/src/lib/smhba/ |
H A D | THIRDPARTYLICENSE | 15 Code, prior Modifications used by a Contributor, and the 16 Modifications made by that particular Contributor. 26 as the Initial Developer in the Source Code notice required by 29 portions thereof with code not governed by the terms of this License. 44 which is described in the Source Code notice required by Exhibit A 46 License is not already Covered Code governed by this License. 50 and apparatus claims, in any patent Licensable by grantor. 64 controls, is controlled by, or is under common control with You. 67 entity, whether by contract or otherwise, or (b) ownership of more 77 trademark) Licensable by Initial Developer to use, [all …]
|
/titanic_50/usr/src/lib/libima/ |
H A D | THIRDPARTYLICENSE | 15 Code, prior Modifications used by a Contributor, and the 16 Modifications made by that particular Contributor. 26 as the Initial Developer in the Source Code notice required by 29 portions thereof with code not governed by the terms of this License. 44 which is described in the Source Code notice required by Exhibit A 46 License is not already Covered Code governed by this License. 50 and apparatus claims, in any patent Licensable by grantor. 64 controls, is controlled by, or is under common control with You. 67 entity, whether by contract or otherwise, or (b) ownership of more 77 trademark) Licensable by Initial Developer to use, [all …]
|
/titanic_50/usr/src/cmd/cmd-inet/etc/ |
H A D | wanboot.conf.sample | 20 # fields enclosed by brackets "[]" replaced with your own identifying 31 # this interface is "Evolving" as defined by attributes(5). 43 # by wanboot-cgi(bootfile). 47 # These are used by wanboot-cgi(bootfile|bootfs|rootfs) to determine 59 # This is used by wanboot-cgi(bootfs) and wanboot to determine whether 65 # This is used by wanboot-cgi(bootfs) and wanboot to determine whether 80 # the root_file exists, and used by wanboot to obtain the root server's 88 # This is used by wanboot-cgi(rootfs) to locate the path of the 93 # This is used by wanboot to determine the URL of the bootserver 99 # This is used by the system startup scripts. If set, it should
|
/titanic_50/usr/src/uts/sun4v/ml/ |
H A D | wbuf.s | 56 ! misaligned stack. We handle an unmapped stack by simulating 57 ! a pagefault at the trap pc and a misaligned stack by generating 88 ! spill traps increment %cwp by 2, 129 ! We handle it by spilling the window into the user's wbuf. 156 ! We handle it by spilling the window to the wbuf and retrying 192 ! misaligned stack. We handle an unmapped stack by simulating 193 ! a pagefault at the trap pc and a misaligned stack by generating 224 ! spill traps increment %cwp by 2, 322 ! We handle it by spilling the window into the user's wbuf. 349 ! We handle it by spilling the window to the wbuf and retrying [all …]
|
/titanic_50/usr/src/ |
H A D | OPENSOLARIS.LICENSE | 16 Software, prior Modifications used by a Contributor (if any), 17 and the Modifications made by that particular Contributor. 31 portions thereof with code not governed by the terms of this 60 process, and apparatus claims, in any patent Licensable by 70 entity which controls, is controlled by, or is under common 73 the direction or management of such entity, whether by 88 trademark) Licensable by Initial Developer, to use, 94 (b) under Patent Claims infringed by the making, using or 106 Software, or (2) for infringements caused by: (i) the 119 trademark) Licensable by Contributor to use, reproduce, [all …]
|
/titanic_50/ |
H A D | README | 15 All changes must have been reviewed, and approved by an advocate 16 (below). A code review may be performed by someone other than the 17 advocate, but the final integration should still be approved by the 38 Reviewed by: Frodo Baggins <frodo.baggins@underhill.net> 39 Reviewed by: Legolas <elf-coder@mirkwood.org> 40 Approved by: Gandalf The Grey <rti-advocate@white-council.com>
|
/titanic_50/usr/src/cmd/fm/modules/common/eversholt/ |
H A D | 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
|
/titanic_50/usr/src/uts/sun4u/ml/ |
H A D | wbuf.s | 55 ! misaligned stack. We handle an unmapped stack by simulating 56 ! a pagefault at the trap pc and a misaligned stack by generating 87 ! spill traps increment %cwp by 2, 127 ! We handle it by spilling the window into the user's wbuf. 154 ! We handle it by spilling the window to the wbuf and retrying 189 ! misaligned stack. We handle an unmapped stack by simulating 190 ! a pagefault at the trap pc and a misaligned stack by generating 221 ! spill traps increment %cwp by 2, 261 ! We handle it by spilling the window into the user's wbuf. 288 ! We handle it by spilling the window to the wbuf and retrying [all …]
|
/titanic_50/usr/src/cmd/sgs/gprof/common/ |
H A D | gprof.callg.blurb | 11 accounted for by this function and its 45 called** the number of times this function is called by 50 total* the number of times this function was called by 65 which is due to being called by this function. 69 time which is due to being called by this 72 called** the number of times this child is called by this 76 total* the number of times this child is called by all 96 by a call count of 0.
|