/osnet-11/usr/src/lib/libcurses/screen/ |
H A D | derwin.c | 50 * 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...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
H A D | inc.t | 99 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...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IPC/SysV/ |
H A D | Makefile.PL | 16 $path =~ m:\.(orig|rej)$:
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/ |
H A D | utf8hash.t | 174 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...] |
/osnet-11/usr/src/lib/libnisdb/ |
H A D | db_scheme.cc | 38 * 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 D | db_index.cc | 401 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 D | db_index_c.x | 101 % db_status move_xdr_db_index(db_index *orig);
|
H A D | db_scheme_c.x | 114 %/* Constructor: create new scheme by making copy of 'orig'. 116 % db_scheme( db_scheme* orig );
|
H A D | db_mindex.cc | 492 delete_result_list(db_next_index_desc* orig) argument 495 for (curr = orig; curr != NULL; 0) { 504 copy_result_list(db_index_entry* orig) argument 509 for (current = orig; current != NULL; 527 db_mindex::reset_next(db_next_index_desc *orig) argument 529 if (orig == NULL) 532 delete_result_list(orig);
|
/osnet-11/usr/src/cmd/sendmail/db/log/ |
H A D | log_archive.c | 380 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...] |
/osnet-11/usr/src/grub/grub2/grub-core/gettext/ |
H A D | gettext.c | 142 grub_gettext_translate (const char *orig) argument 157 orig); 168 return orig; 181 if (grub_strcmp (current_string, orig) < 0) 186 else if (grub_strcmp (current_string, orig) > 0) 191 else if (grub_strcmp (current_string, orig) == 0) 199 ret = found ? grub_gettext_gettranslation_from_position (current) : orig; 207 cur->name = grub_strdup (orig);
|
/osnet-11/usr/src/lib/libnsl/ipsec/ |
H A D | algs.c | 666 duplicate_intarr(int *orig) argument 669 int *iwalker = orig; 671 if (orig == NULL) 681 (void) memcpy(iwalker, orig, allocsize); 690 duplicate_strarr(char **orig) argument 696 if (orig == NULL) 700 for (swalker = orig; *swalker != NULL; swalker++) 704 newbie = calloc(swalker - orig + 1, sizeof (char *)); 708 for (i = 0; orig[i] != NULL; i++) { 709 newbie[i] = strdup(orig[ 724 _duplicate_alg(struct ipsecalgent *orig) argument [all...] |
/osnet-11/usr/src/lib/libuvfs/common/ |
H A D | door.c | 66 ucred_t *ucred, *orig; local 68 orig = ucred = pthread_getspecific(libuvfs_tsd_ucred_key); 72 if (orig == NULL)
|
/osnet-11/usr/src/lib/libmtmalloc/common/ |
H A D | mtmalloc.c | 605 oversize_t *orig, *tail; local 611 orig = (oversize_t *)((uintptr_t)alloc_buf - 613 frag_size = orig->size - data_size - 615 orig->size = data_size; 624 oversize_t *orig, *tail, *big; local 693 orig = (oversize_t *)((uintptr_t)alloc_buf - 696 OVSZ_HEADER_SIZE, (orig->size - shift)); 700 orig->size = shift - OVSZ_HEADER_SIZE; 703 free_oversize(orig, 1); 711 orig [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | writemain.SH | 37 orig="$*" 40 for file in $orig ; do
|
/osnet-11/usr/src/lib/libsqlite/src/ |
H A D | btree_rb.c | 260 * 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...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/ |
H A D | test.pl | 297 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";
|
/osnet-11/usr/src/lib/libparted/common/libparted/labels/ |
H A D | dos.c | 172 OrigState* orig; /* used for CHS stuff */ member in struct:__anon2266 444 if (!dos_data->orig) 448 leg_start = legacy_start (disk, bios_geom, &dos_data->orig->raw_part); 449 leg_end = legacy_end (disk, bios_geom, &dos_data->orig->raw_part); 451 if (leg_start && leg_start != dos_data->orig->geom.start) 453 if (leg_end && leg_end != dos_data->orig->geom.end) 583 if (!dos_data->orig) 586 start_chs = &dos_data->orig->raw_part.chs_start; 590 a = dos_data->orig->geom.start; 593 end_chs = &dos_data->orig [all...] |
/osnet-11/usr/src/lib/libslp/clib/ |
H A D | SLPParseSrvURL.c | 49 char *orig; member in struct:slp_type 157 type->orig = typeString;
|
/osnet-11/usr/src/cmd/sendmail/db/btree/ |
H A D | btree_auto.c | 1226 fileid, pgno, lsn, indx, isdeleted, orig, 1237 const DBT *orig; 1262 + sizeof(u_int32_t) + (orig == NULL ? 0 : orig->size) 1289 if (orig == NULL) { 1294 memcpy(bp, &orig->size, sizeof(orig->size)); 1295 bp += sizeof(orig->size); 1296 memcpy(bp, orig->data, orig [all...] |
/osnet-11/usr/src/cmd/sendmail/db/include/ |
H A D | btree_auto.h | 129 DBT orig; member in struct:_bam_repl_args
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | strict.t | 23 next if -d || /(~|\.orig|,v)$/;
|
/osnet-11/usr/src/lib/libc/port/gen/ |
H A D | select_large_fdset.c | 370 * in orig, free the buffer after copying the contents. 373 realloc_fds(int *num, struct pollfd **list_head, struct pollfd *orig) argument 385 if (*list_head != orig)
|
/osnet-11/usr/src/lib/nsswitch/pynss/common/ |
H A D | nssbase.py | 596 """Save away an existing legacy file to ${legacy}.orig.""" 601 orig = '.'.join((legacy, 'orig')) 602 if os.path.exists(orig): # But not 2 copies 604 os.unlink(orig) 608 os.link(legacy, orig) # Avoid losing file temporarily 614 """Remove ${legacy}.orig if a legacy file exists.""" 619 orig = '.'.join((legacy, 'orig')) 620 if os.path.exists(orig) [all...] |
/osnet-11/usr/src/lib/libc/sparc/gen/ |
H A D | strlcpy.s | 118 sub %i2, %i0, %i0 ! len = dst - orig dst 173 sub %i3, %i1, %i0 ! len = src - orig src 230 sub %i3, %i1, %i0 ! len = src - orig src
|