Searched refs:old (Results 1 - 25 of 623) sorted by relevance

1234567891011>>

/freebsd-current/contrib/ntp/scripts/stats/
H A Ddupe.awk5 if (old != $0)
7 old = $0
/freebsd-current/contrib/elftoolchain/libelf/
H A Delf_errno.c36 int old; local
38 old = LIBELF_PRIVATE(error);
40 return (old & LIBELF_ELF_ERROR_MASK);
H A Delf_version.c36 unsigned int old; local
38 if ((old = LIBELF_PRIVATE(version)) == EV_NONE)
39 old = EV_CURRENT;
42 return old;
49 return (old);
/freebsd-current/crypto/heimdal/lib/roken/
H A Dstrdup.c40 strdup(const char *old) argument
42 char *t = malloc(strlen(old)+1);
44 strcpy(t, old);
H A Dstrndup.c42 strndup(const char *old, size_t sz) argument
44 size_t len = strnlen (old, sz);
48 memcpy (t, old, len);
/freebsd-current/lib/libc/softfloat/
H A Dfpsetsticky.c50 fp_except old; local
52 old = float_exception_flags;
54 return old;
H A Dfpsetround.c50 fp_rnd_t old; local
52 old = float_rounding_mode;
54 return old;
H A Dfpsetmask.c50 fp_except old; local
52 old = float_exception_mask;
54 return old;
/freebsd-current/lib/libc/arm/gen/
H A Dfpgetsticky_vfp.c36 fp_except old; local
38 __asm __volatile("vmrs %0, fpscr" : "=&r"(old));
40 return (old & FP_X_MASK);
H A Dfpsetround_vfp.c38 uint32_t old, new; local
40 __asm __volatile("vmrs %0, fpscr" : "=&r"(old));
41 new = old & ~(3 << 22);
45 return ((old >> 22) & 3);
H A Dfpsetmask_vfp.c40 fp_except old, new; local
42 __asm __volatile("vmrs %0, fpscr" : "=&r"(old));
44 new = (old & ~(FP_X_MASK << 8)) | mask;
47 return ((old >> 8) & FP_X_MASK);
H A Dfpsetsticky_vfp.c40 fp_except old, new; local
42 __asm __volatile("vmrs %0, fpscr" : "=&r"(old));
43 new = old & ~(FP_X_MASK);
47 return (old & except);
/freebsd-current/sbin/hastd/
H A Drefcnt.h54 unsigned int old; local
57 old = atomic_fetchadd_int(count, -1);
58 PJDLOG_ASSERT(old > 0);
59 return (old - 1);
/freebsd-current/tools/tools/iso/
H A Dcheck-iso639.pl16 my %old = ();
34 $old{$bib}{a2} = $a2;
35 $old{$bib}{bib} = $bib;
36 $old{$bib}{term} = $term;
37 $old{$bib}{name} = $name;
66 foreach my $bib (sort(keys(%old))) {
68 print "In old but not new: $old{$bib}{a2}\t$old{$bib}{bib}\t$old{
[all...]
/freebsd-current/tools/test/stress2/tools/
H A Ddf.sh33 old=x
38 [ $p1 -lt 80 -a $p2 -lt 80 -a $old != x ] && continue
39 [ "$old" != "$d" ] && echo `date '+%T'` $d
40 old=$d
/freebsd-current/lib/libc/aarch64/gen/
H A Dfpsetmask.c37 uint64_t old, new; local
42 __asm __volatile("mrs %0, fpcr" : "=&r"(old));
43 new = old & ~FP_X_MASK;
47 return ((fp_except_t)old);
/freebsd-current/sys/sys/
H A Drefcount.h76 u_int old; local
78 old = atomic_fetchadd_int(count, 1);
79 if (__predict_false(REFCOUNT_SATURATED(old)))
82 return (old);
88 u_int old; local
92 old = atomic_fetchadd_int(count, n);
93 if (__predict_false(REFCOUNT_SATURATED(old)))
96 return (old);
102 u_int old;
104 old
[all...]
H A Dblockcount.h44 void _blockcount_wakeup(blockcount_t *bc, u_int old);
56 u_int old; local
58 old = atomic_fetchadd_int(&bc->__count, n);
59 KASSERT(old + n > old, ("%s: counter overflow %p", __func__, bc));
68 u_int old; local
71 old = atomic_fetchadd_int(&bc->__count, -n);
72 KASSERT(old >= n, ("%s: counter underflow %p", __func__, bc));
73 if (_BLOCKCOUNT_COUNT(old) == n && _BLOCKCOUNT_WAITERS(old))
[all...]
/freebsd-current/lib/libc/powerpc64/gen/
H A Dfpsetmask.c43 fp_except_t old; local
46 old = (fp_except_t)((fpscr >> 3) & 0x1f);
49 return (old);
H A Dfpsetround.c43 fp_rnd_t old; local
46 old = (fp_rnd_t)(fpscr & 0x3);
49 return (old);
/freebsd-current/lib/libc/powerpc/gen/
H A Dfpsetmask.c43 fp_except_t old; local
46 old = (fp_except_t)((fpscr >> 3) & 0x1f);
49 return (old);
H A Dfpsetround.c43 fp_rnd_t old; local
46 old = (fp_rnd_t)(fpscr & 0x3);
49 return (old);
/freebsd-current/contrib/file/src/
H A Dpread.c10 off_t old; local
13 if ((old = lseek(fd, off, SEEK_SET)) == -1)
19 if (lseek(fd, old, SEEK_SET) == -1)
/freebsd-current/lib/libc/powerpcspe/gen/
H A Dfpsetmask.c42 fp_except_t old; local
45 old = (fp_except_t)((fpscr >> 2) & 0x1f);
48 return (old);
H A Dfpsetround.c42 fp_rnd_t old; local
45 old = (fp_rnd_t)(fpscr & 0x3);
48 return (old);

Completed in 138 milliseconds

1234567891011>>