Home
last modified time | relevance | path

Searched refs:old (Results 1 – 25 of 654) sorted by relevance

12345678910>>...27

/mirbsd/src/sys/ufs/ext2fs/
Dext2fs_bswap.c50 e2fs_sb_bswap(struct ext2fs *old, struct ext2fs *new) in e2fs_sb_bswap() argument
53 memcpy(new, old, sizeof(struct ext2fs)); in e2fs_sb_bswap()
54 new->e2fs_icount = swap32(old->e2fs_icount); in e2fs_sb_bswap()
55 new->e2fs_bcount = swap32(old->e2fs_bcount); in e2fs_sb_bswap()
56 new->e2fs_rbcount = swap32(old->e2fs_rbcount); in e2fs_sb_bswap()
57 new->e2fs_fbcount = swap32(old->e2fs_fbcount); in e2fs_sb_bswap()
58 new->e2fs_ficount = swap32(old->e2fs_ficount); in e2fs_sb_bswap()
59 new->e2fs_first_dblock = swap32(old->e2fs_first_dblock); in e2fs_sb_bswap()
60 new->e2fs_log_bsize = swap32(old->e2fs_log_bsize); in e2fs_sb_bswap()
61 new->e2fs_fsize = swap32(old->e2fs_fsize); in e2fs_sb_bswap()
[all …]
Dext2fs.h248 #define e2fs_sbload(old, new) memcpy((new), (old), SBSIZE); argument
249 #define e2fs_cgload(old, new, size) memcpy((new), (old), (size)); argument
250 #define e2fs_sbsave(old, new) memcpy((new), (old), SBSIZE); argument
251 #define e2fs_cgsave(old, new, size) memcpy((new), (old), (size)); argument
255 #define e2fs_sbload(old, new) e2fs_sb_bswap((old), (new)) argument
256 #define e2fs_cgload(old, new, size) e2fs_cg_bswap((old), (new), (size)); argument
257 #define e2fs_sbsave(old, new) e2fs_sb_bswap((old), (new)) argument
258 #define e2fs_cgsave(old, new, size) e2fs_cg_bswap((old), (new), (size)); argument
Dext2fs_dinode.h138 # define e2fs_iload(old, new) memcpy((new),(old),sizeof(struct ext2fs_dinode)) argument
139 # define e2fs_isave(old, new) memcpy((new),(old),sizeof(struct ext2fs_dinode)) argument
142 # define e2fs_iload(old, new) e2fs_i_bswap((old), (new)) argument
143 # define e2fs_isave(old, new) e2fs_i_bswap((old), (new)) argument
/mirbsd/src/usr.bin/diff3/
Ddiff3prog.c104 struct range old; member
238 (*dd)[i].old.from = a; in readin()
239 (*dd)[i].old.to = b; in readin()
244 (*dd)[i].old.from = (*dd)[i-1].old.to; in readin()
313 d1->old.from,d1->old.to, in merge()
315 d2->old.from,d2->old.to, in merge()
323 change(1, &d1->old, 0); in merge()
335 change(2, &d2->old, 0); in merge()
346 d1[1].old.from = d1->old.from; in merge()
354 d2[1].old.from = d2->old.from; in merge()
[all …]
/mirbsd/src/usr.bin/man/
Dman.conf28 _default /usr/{share,X11,contrib,local}/{man,man/old}/
36 old /usr/share/man/old/
39 1 /usr/{share,X11R4,contrib,local}/{man/,man/old/}cat1
40 2 /usr/{share,X11R4,contrib,local}/{man/,man/old/}cat2
41 3 /usr/{share,X11R4,contrib,local}/{man/,man/old/}cat3
44 4 /usr/{share,X11R4,contrib,local}/{man/,man/old/}cat4
45 5 /usr/{share,X11R4,contrib,local}/{man/,man/old/}cat5
46 6 /usr/{share,X11R4,contrib,local}/{man/,man/old/}cat6
47 7 /usr/{share,X11R4,contrib,local}/{man/,man/old/}cat7
48 8 /usr/{share,X11R4,contrib,local}/{man/,man/old/}cat8
/mirbsd/src/gnu/usr.bin/perl/ext/IO/lib/IO/
DHandle.pm467 my $old = new SelectSaver qualify($_[0], caller);
506 my $old;
507 $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
514 my $old;
515 $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
522 my $old;
523 $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
530 my $old;
531 $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
538 my $old;
[all …]
/mirbsd/src/gnu/usr.bin/binutils/bfd/
Drs6000-core.c114 struct core_dump old; /* old AIX 4.2- core dump, still used on member
127 struct vm_info old; member
134 # define CORE_NEW(c) (!(c).old.c_entries)
274 size = sizeof (core->old); in read_hdr()
343 c_flag = core.old.c_flag;
344 c_stack = (file_ptr) core.old.c_stack;
345 c_size = core.old.c_size;
348 c_loader = (file_ptr) COLD_LOADER (core.old);
364 c_regsize = sizeof (COLD_MSTSAVE (core.old));
365 c_regptr = &COLD_MSTSAVE (core.old);
[all …]
/mirbsd/src/sys/uvm/
Duvm_unix.c79 vaddr_t new, old; local
82 old = (vaddr_t)vm->vm_daddr;
84 if ((new - old) > p->p_rlimit[RLIMIT_DATA].rlim_cur)
87 old = round_page(old + ptoa(vm->vm_dsize));
89 if (new == old)
95 if (new > old) {
96 error = uvm_map(&vm->vm_map, &old, new - old, NULL,
103 new - old, error);
106 vm->vm_dsize += atop(new - old);
108 uvm_deallocate(&vm->vm_map, new, old - new);
[all …]
/mirbsd/src/gnu/usr.bin/perl/
Dmakedepend.SH190 rm -f .shlist.old
191 mv .shlist .shlist.old
192 $egrep -v '^makedepend\.SH' <.shlist.old >.shlist
193 rm -f .shlist.old
194 mv .shlist .shlist.old
195 $egrep -v '^Makefile\.SH' <.shlist.old >.shlist
196 rm -f .shlist.old
197 mv .shlist .shlist.old
198 $egrep -v '^perl_exp\.SH' <.shlist.old >.shlist
199 rm -f .shlist.old
[all …]
/mirbsd/src/lib/libpthread/uthread/
Duthread_clean.c61 struct pthread_cleanup *old; in pthread_cleanup_pop() local
63 if ((old = curthread->cleanup) != NULL) { in pthread_cleanup_pop()
64 curthread->cleanup = old->next; in pthread_cleanup_pop()
66 old->routine(old->routine_arg); in pthread_cleanup_pop()
68 free(old); in pthread_cleanup_pop()
/mirbsd/src/sys/dev/raidframe/
Drf_pq.c304 RF_PhysDiskAddr_t *old, *new; in rf_RegularONQFunc() local
314 old = (RF_PhysDiskAddr_t *) node->params[2 * i].p; in rf_RegularONQFunc()
318 RF_ASSERT(new->numSector == old->numSector); in rf_RegularONQFunc()
319 RF_ASSERT(new->raidAddress == old->raidAddress); in rf_RegularONQFunc()
332 old->startSector % secPerSU); in rf_RegularONQFunc()
334 old->numSector), coeff); in rf_RegularONQFunc()
377 RF_PhysDiskAddr_t *old, *new; in rf_SimpleONQFunc() local
386 old = (RF_PhysDiskAddr_t *) node->params[2 * i].p; in rf_SimpleONQFunc()
390 RF_ASSERT(new->numSector == old->numSector); in rf_SimpleONQFunc()
391 RF_ASSERT(new->raidAddress == old->raidAddress); in rf_SimpleONQFunc()
[all …]
/mirbsd/src/gnu/usr.bin/perl/ext/B/t/
Df_sort45 @new = @old[ sort {
48 } 0..$#old ];
54 } map { [$_, /=(\d+)/, uc($_)] } @old;
61 @new = sort other::backwards @old;
65 @new = sort other::backwards @old;
69 @new = sort { substr($a, 3, 5) cmp substr($b, 3, 5) } @old;
73 @new = sort { substr($a, 3, 5) cmp substr($b, 3, 5) } @old;
/mirbsd/src/usr.bin/file/magdir/
Dtimezone10 0 string \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0 old timezone data
11 0 string \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0 old timezone data
12 0 string \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0 old timezone data
13 0 string \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0 old timezone data
14 0 string \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0 old timezone data
15 0 string \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0 old timezone data
/mirbsd/src/lib/libpthread/arch/i386/
D_atomic_lock.c13 _spinlock_lock_t old; in _atomic_lock() local
19 old = _SPINLOCK_LOCKED; in _atomic_lock()
21 : "=r" (old), "=m" (*lock) in _atomic_lock()
22 : "0" (old), "1" (*lock)); in _atomic_lock()
24 return (old != _SPINLOCK_UNLOCKED); in _atomic_lock()
/mirbsd/src/lib/libc/time/
Dialloc.c46 icatalloc(old, new) in icatalloc() argument
47 char * const old; in icatalloc()
54 if (old == NULL)
57 return old;
59 oldsize = strlen(old);
60 if ((result = irealloc(old, oldsize + newsize + 1)) != NULL)
/mirbsd/src/libexec/makewhatis/OpenBSD/
DMakewhatis.pm113 if (open(my $old, '<', $whatis)) {
114 while (my $l = <$old>) {
118 close($old);
136 open(my $old, '<', $whatis) or
141 while (my $l = <$old>) {
145 close($old);
/mirbsd/src/gnu/usr.bin/texinfo/info/
Ddisplay.c524 register int i, old, new; /* Indices into the line starts arrays. */ in display_scroll_line_starts() local
544 for (old = old_first, new = new_first; in display_scroll_line_starts()
545 old < last_old && new < last_new; in display_scroll_line_starts()
546 old++, new++) in display_scroll_line_starts()
547 if (old_starts[old] != window->line_starts[new]) in display_scroll_line_starts()
553 for (old = old_first + unchanged_at_top; old < last_old; old++) in display_scroll_line_starts()
556 if (old_starts[old] == window->line_starts[new]) in display_scroll_line_starts()
559 for (i = 0; (old + i) < last_old; i++) in display_scroll_line_starts()
560 if (old_starts[old + i] != window->line_starts[new + i]) in display_scroll_line_starts()
568 + ((old + already_scrolled) - old_pagetop)); in display_scroll_line_starts()
[all …]
/mirbsd/src/usr.bin/file/
Dcompress.c247 uncompressgzipped(struct magic_set *ms, const unsigned char *old, in uncompressgzipped() argument
250 unsigned char flg = old[3]; in uncompressgzipped()
258 data_start += 2 + old[data_start] + old[data_start + 1] * 256; in uncompressgzipped()
261 while(data_start < n && old[data_start]) in uncompressgzipped()
266 while(data_start < n && old[data_start]) in uncompressgzipped()
280 z.next_in = (Bytef *)strchr((const char *)old + data_start, in uncompressgzipped()
281 old[data_start]); in uncompressgzipped()
312 uncompressbuf(struct magic_set *ms, size_t method, const unsigned char *old, in uncompressbuf() argument
323 return uncompressgzipped(ms, old, newch, n); in uncompressbuf()
366 if ((size_t)swrite(fdin[1], old, n) != n) in uncompressbuf()
/mirbsd/src/lib/libedit/
Drefresh.c447 re_update_line(EditLine *el, char *old, char *new, int i) in re_update_line() argument
457 for (o = old, n = new; *o && (*o == *n); o++, n++) in re_update_line()
638 ofd - old, osb - old, ose - old, ols - old, oe - old)); in re_update_line()
646 re_printstr(el, "old- oe", old, oe); in re_update_line()
648 re_printstr(el, "old-ofd", old, ofd); in re_update_line()
711 ((p - old) + fx <= el->el_term.t_size.h)) { in re_update_line()
730 re_insert(el, old, ofd - old, in re_update_line()
751 (__F, "first diff delete at %d...\r\n", ofd - old)); in re_update_line()
755 term_move_to_char(el, ofd - old); in re_update_line()
769 re_delete(el, old, ofd - old, in re_update_line()
[all …]
/mirbsd/src/gnu/usr.bin/perl/lib/
Dflush.pl17 local($old) = select(shift);
21 select($old);
25 local($old) = select(shift);
29 select($old);
/mirbsd/src/usr.sbin/popa3d/
Dmailbox.c427 unsigned long old, new; in mailbox_write() local
432 old = new = 0; in mailbox_write()
435 old = msg->raw_offset; in mailbox_write()
437 if (old == new) { in mailbox_write()
438 old = (new += msg->raw_size); in mailbox_write()
442 while ((size = msg->raw_size - (old - msg->raw_offset))) { in mailbox_write()
443 if (lseek(mailbox_fd, old, SEEK_SET) < 0) return 1; in mailbox_write()
447 if (!block && old == mailbox_size) break; in mailbox_write()
454 old += block; new += block; in mailbox_write()
458 old = mailbox_size; in mailbox_write()
[all …]
/mirbsd/src/distrib/generic/
DMakefile33 elif [[ ! -e /bsd.old ]]; then \
34 echo Back up your old kernel to /bsd.old!; \
52 elif [[ ! -e /bsd.old ]]; then \
53 echo Back up your old kernel to /bsd.old!; \
/mirbsd/src/lib/libc/arch/sparc/gen/
Dfpsetround.c13 fp_rnd old; local
16 __asm__("st %%fsr,%0" : "=m" (*&old));
18 new = old;
24 return (old >> 30) & 0x03;
Dfpsetmask.c13 fp_except old; local
16 __asm__("st %%fsr,%0" : "=m" (*&old));
18 new = old;
24 return (old >> 23) & 0x1f;
Dfpsetsticky.c13 fp_except old; local
16 __asm__("st %%fsr,%0" : "=m" (*&old));
18 new = old;
24 return (old >> 5) & 0x1f;

12345678910>>...27