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

12345

/opensolaris-onvv-gate/usr/src/ucblib/libcurses/
H A Did_subwins.c32 _id_subwins(WINDOW *orig) argument
38 realy = orig->_begy + orig->_cury;
39 for (win = orig->_nextp; win != orig; win = win->_nextp) {
47 oy = orig->_cury;
49 win->_y[y] = &orig->_y[oy][win->_ch_off];
H A Dmvwin.c33 WINDOW *orig; local
40 orig = win->_orig;
41 if (orig == NULL) {
42 orig = win;
48 } while (win != orig);
50 if (by < orig->_begy || win->_maxy + dy > orig->_maxy)
52 if (bx < orig->_begx || win->_maxx + dx > orig->_maxx)
57 _set_subwin_(orig, wi
[all...]
H A Dnewwin.c95 subwin(WINDOW *orig, int num_lines, int num_cols, int begy, int begx) argument
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 ||
113 bx + nc > orig->_maxx + orig->_begx)
116 nl = orig->_maxy + orig
133 _set_subwin_(WINDOW *orig, WINDOW *win) argument
[all...]
/opensolaris-onvv-gate/usr/src/lib/libcurses/screen/
H A Dderwin.c50 * orig: the original window
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 ||
68 (bx + nc) > orig->_maxx)
71 nc = orig->_maxx - bx;
73 num_lines = orig->_maxy - by;
76 if ((win = _makenew(num_lines, nc, by + orig->_begy,
77 bx + orig->_begx)) == NULL)
85 win->_bkgd = orig->_bkgd;
86 win->_attrs = orig
[all...]
/opensolaris-onvv-gate/usr/src/lib/libshare/common/
H A Dparser.c44 static char *orig = NULL; local
51 if (string != orig || string == NULL) {
52 orig = string;
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dinc.t99 my ($orig, $suspect) = @_;
102 if (exists $orig->{$key}) {
103 if ($orig->{$key} ne $value) {
104 print "# key '$key' was '$orig->{$key}' now '$value'\n";
108 print "# key '$key' is '$orig->{$key}', unexpect.\n";
112 foreach (keys %$orig) {
114 print "# key '$_' was '$orig->{$_}' now missing\n";
120 my (%orig) = my (%inc) = my (%dec) = my (%postinc) = my (%postdec)
132 check_same (\%orig, \%inc);
141 check_same (\%orig, \
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/IPC/SysV/
H A DMakefile.PL16 $path =~ m:\.(orig|rej)$:
/opensolaris-onvv-gate/usr/src/cmd/sgs/liblddbg/common/
H A Dunused.c90 Dbg_unused_path(Lm_list *lml, const char *path, uint_t orig, uint_t dup, argument
100 if (orig & LA_SER_LIBPATH) {
101 if (orig & LA_SER_CONFIG) {
112 } else if (orig & LA_SER_RUNPATH) {
H A Dlibs.c109 Dbg_libs_path(Lm_list *lml, const char *path, uint_t orig, const char *obj) argument
119 search = orig &
124 if (orig & LA_SER_CONFIG)
135 if (orig & LA_SER_CONFIG)
142 if (orig & LA_SER_CONFIG)
188 Dbg_libs_ylu(Lm_list *lml, const char *path, const char *orig, int index) argument
193 dbg_print(lml, MSG_INTL(MSG_LIB_YPATH), path, orig,
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Dutf8hash.t174 my $orig = {$char => 1};
176 bless $orig, $package;
178 my $just_utf8 = $bypass ? $orig : ${thaw freeze \$orig};
184 $orig = {$bytes => 1};
186 bless $orig, $package;
188 my $just_bytes = $bypass ? $orig : ${thaw freeze \$orig};
198 $orig = {$bytes => length $bytes, $char => length $char};
200 bless $orig,
[all...]
/opensolaris-onvv-gate/usr/src/lib/libnisdb/
H A Ddb_scheme.cc38 * Constructor: create new scheme by making copy of 'orig'.
41 db_scheme::db_scheme(db_scheme* orig) argument
47 if (orig == NULL) {
52 READLOCKV(orig, "r orig db_scheme::db_scheme");
54 numkeys = this->keys.keys_len = orig->keys.keys_len;
56 db_key_desc * srccols = orig->keys.keys_val;
60 READUNLOCKV(orig, "ru orig db_scheme::db_scheme");
69 READUNLOCKV(orig, "r
[all...]
H A Ddb_index.cc401 db_index::move_xdr_db_index(db_index *orig) argument
403 table_size = orig->table_size;
404 orig->table_size = 0;
405 count = orig->count;
406 orig->count = 0;
407 case_insens = orig->case_insens;
408 tab = orig->tab;
409 orig->tab = NULL;
H A Ddb_index_c.x101 % db_status move_xdr_db_index(db_index *orig);
H A Ddb_scheme_c.x114 %/* Constructor: create new scheme by making copy of 'orig'.
116 % db_scheme( db_scheme* orig );
/opensolaris-onvv-gate/usr/src/uts/sparc/os/
H A Dcpr_sparc.c257 cprop_t *orig, *new, *tail; local
281 for (orig = orig_def_info.props, tail = orig + CPR_MAXPROP;
282 orig < tail; orig++, new++) {
283 len = prom_getproplen(node, orig->name);
284 if (len < 0 || len >= (int)sizeof (orig->value)) {
289 bzero(orig->value, sizeof (orig->value));
290 if (prom_getprop(node, orig
[all...]
/opensolaris-onvv-gate/usr/src/cmd/sendmail/db/log/
H A Dlog_archive.c380 char **array, **arrayp, **orig, *strp; local
383 for (len = 0, orig = *listp; *orig != NULL; ++orig)
384 len += sizeof(char *) + strlen(*orig) + 1;
391 strp = (char *)(array + (orig - *listp) + 1);
394 for (orig = *listp, arrayp = array; *orig != NULL; ++orig, ++arrayp) {
395 len = strlen(*orig);
[all...]
/opensolaris-onvv-gate/usr/src/ucbcmd/vipw/
H A Dvipw.c226 editfile(char *editor, char *temp, char *orig, time_t *mtime) argument
230 return (sanity_check(temp, mtime, orig));
259 sanity_check(char *temp, time_t *mtime, char *orig) argument
267 if (!strcmp(orig, shadow))
274 temp, orig);
280 temp, orig);
287 temp, orig);
388 temp, orig);
/opensolaris-onvv-gate/usr/src/lib/libnsl/ipsec/
H A Dalgs.c667 duplicate_intarr(int *orig) argument
670 int *iwalker = orig;
672 if (orig == NULL)
682 (void) memcpy(iwalker, orig, allocsize);
691 duplicate_strarr(char **orig) argument
697 if (orig == NULL)
701 for (swalker = orig; *swalker != NULL; swalker++)
705 newbie = calloc(swalker - orig + 1, sizeof (char *));
709 for (i = 0; orig[i] != NULL; i++) {
710 newbie[i] = strdup(orig[
725 _duplicate_alg(struct ipsecalgent *orig) argument
[all...]
/opensolaris-onvv-gate/usr/src/lib/libmtmalloc/common/
H A Dmtmalloc.c499 oversize_t *orig, *tail; local
505 orig = (oversize_t *)((uintptr_t)alloc_buf -
507 frag_size = orig->size - data_size -
509 orig->size = data_size;
518 oversize_t *orig, *tail, *big; local
587 orig = (oversize_t *)((uintptr_t)alloc_buf -
590 OVSZ_HEADER_SIZE, (orig->size - shift));
594 orig->size = shift - OVSZ_HEADER_SIZE;
597 free_oversize(orig);
605 orig
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/
H A Dwritemain.SH37 orig="$*"
40 for file in $orig ; do
/opensolaris-onvv-gate/usr/src/cmd/rpcgen/
H A Drpc_util.c129 fixit(char *type, char *orig) argument
135 return (orig);
143 return (fixit(def->def.ty.old_type, orig));
145 return (orig);
/opensolaris-onvv-gate/usr/src/lib/libsqlite/src/
H A Dbtree_rb.c260 * A string-manipulation helper function for check_redblack_tree(). If (orig ==
261 * NULL) a copy of val is returned. If (orig != NULL) then a copy of the *
262 * concatenation of orig and val is returned. The original orig is deleted
265 static char *append_val(char * orig, char const * val){ argument
267 if( !orig ){
271 sqliteSetString(&z, orig, val, (char*)0);
272 sqliteFree( orig );
278 * Append a string representation of the entire node to orig and return it.
282 static char *append_node(char * orig, BtRbNod argument
[all...]
/opensolaris-onvv-gate/usr/src/tools/stabs/
H A Dmain.c191 char *new, *orig, c; local
201 orig = --cp;
206 len = cp - orig;
208 while (orig < cp - 1)
209 *new++ = *orig++;
/opensolaris-onvv-gate/usr/src/uts/common/fs/sockfs/
H A Dsockcommon_subr.c2186 so_integrity_check(struct sonode *cur, struct sonode *orig) argument
2188 VERIFY(cur->so_vnode == orig->so_vnode);
2189 VERIFY(cur->so_ops == orig->so_ops);
2198 VERIFY((cur->so_state & (orig->so_state & CHECK_STATE)) ==
2199 (orig->so_state & CHECK_STATE));
2200 VERIFY(cur->so_mode == orig->so_mode);
2201 VERIFY(cur->so_flag == orig->so_flag);
2202 VERIFY(cur->so_count == orig->so_count);
2204 VERIFY(cur->so_sockparams == orig->so_sockparams);
2206 VERIFY(cur->so_error != 0 || orig
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/t/
H A Dtest.pl297 my ($orig, $suspect) = @_;
302 if (exists $orig->{$key}) {
303 if ($orig->{$key} ne $value) {
304 print STDOUT "# key ", _qq($key), " was ", _qq($orig->{$key}),
314 foreach (keys %$orig) {
318 print STDOUT "# key ", _qq($_), " was ", _qq($orig->{$_}), " now missing.\n";

Completed in 145 milliseconds

12345