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

1234567891011>>

/haiku-buildtools/gcc/fixincludes/tests/base/Xm/
H A DTraversal.h15 Widget old, c_new; member in struct:wedge
17 Widget old, new;
20 extern Wedged( Widget c_new, Widget old );
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dmregtst.c4 int old, new, i; local
6 old = 0;
10 if (new < old)
12 old = new;
13 if (old == 0)
H A D920428-6.c9 func (new, old)
10 register tree new, old;
12 if (old->type == 0 || new->type == 0)
14 register tree t = old->type;
/haiku-buildtools/gcc/libbacktrace/
H A Datomic.c81 void *old; local
84 old = *pp;
85 while (!__sync_bool_compare_and_swap (pp, old, p))
86 old = *pp;
94 size_t old; local
96 old = *p;
97 while (!__sync_bool_compare_and_swap (p, old, v))
98 old = *p;
106 size_t old; local
108 old
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/sparc/
H A Dcas64.c7 extern int64_t *val, old, new;
12 return __sync_bool_compare_and_swap (val, old, new);
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dpr64530.f908 double precision,save :: old(asize) variable in program:bug
12 old(:) = 3.d0
15 call buggy(2.d0,asize,ave,old,tmp)
19 subroutine buggy(scale_factor, asize, ave, old, tmp)
26 double precision old(asize) local in subroutine:buggy
33 tmp(i) = ave(i) - old(i)
34 old(i) = ave(i)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dia64-sync-4.c12 compare_and_swap(long *addr, long old, long new_val) argument
14 return __sync_bool_compare_and_swap(addr, old, new_val);
H A Dpr27363.c14 struct snd_mask old; local
16 old = *mask;
20 return old.bits[0] != mask->bits[0];
/haiku-buildtools/gcc/libsanitizer/tsan/
H A Dtsan_update_shadow_word_inl.h18 old = LoadShadow(sp);
19 if (old.IsZero()) {
28 if (Shadow::Addr0AndSizeAreEqual(cur, old)) {
31 if (Shadow::TidsAreEqual(old, cur)) {
33 if (old.IsRWWeakerOrEqual(kAccessIsWrite, kIsAtomic))
38 if (HappensBefore(old, thr)) {
42 if (old.IsBothReadsOrAtomic(kAccessIsWrite, kIsAtomic))
47 if (Shadow::TwoRangesIntersect(old, cur, kAccessSize)) {
49 if (Shadow::TidsAreEqual(old, cur)) {
54 if (old
[all...]
/haiku-buildtools/gcc/libgomp/testsuite/libgomp.c/
H A Dcritical-1.c17 int old; local
21 old = __sync_lock_test_and_set (&test, iam);
22 assert (old == -1);
H A Dsingle-1.c19 int old = __sync_lock_test_and_set (&test, iam); local
20 assert (old == -1);
30 int old = __sync_lock_test_and_set (&test, iam); local
31 assert (old == -1);
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dnet15.C6 void *old; variable
27 old = this;
43 // if old and o are not the same, fail the test case.
44 if (old != o)
/haiku-buildtools/legacy/gcc/libiberty/
H A Dsigsetmask.c21 sigset_t old; variable
25 abort(); /* FIXME, we don't know how to translate old mask to new */
27 sigprocmask(SIG_SETMASK, &new, &old);
28 return 1; /* FIXME, we always return 1 as old value. */
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A D20020616-1.c31 int old = k; local
33 k = old;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/debug/
H A Dpr41343-1.c3 #define X(new,old) int i ## new = i ## old + i ## old;
/haiku-buildtools/legacy/gcc/gcc/
H A Dcppalloc.c59 xrealloc (old, size)
60 PTR old;
64 if (old)
65 ptr = (PTR) realloc (old, size);
/haiku-buildtools/legacy/gcc/texinfo/intl/
H A Dtextdomain.c69 char *old; local
75 old = (char *) _nl_current_default_domain;
97 if (old != _nl_default_default_domain)
98 free (old);
/haiku-buildtools/gcc/libstdc++-v3/libsupc++/
H A Deh_terminate.cc76 std::terminate_handler old; local
78 __atomic_exchange (&__terminate_handler, &func, &old, __ATOMIC_ACQ_REL);
81 old = __terminate_handler;
84 return old;
103 std::unexpected_handler old; local
105 __atomic_exchange (&__unexpected_handler, &func, &old, __ATOMIC_ACQ_REL);
108 old = __unexpected_handler;
111 return old;
/haiku-buildtools/gcc/libgomp/
H A Dalloc.c53 gomp_realloc (void *old, size_t size) argument
55 void *ret = realloc (old, size);
/haiku-buildtools/gcc/contrib/
H A Ddg-cmp-results.sh12 dg-cmp-results.sh [-v] [-v] [-v] <variant-name> <old-file> <new-file>
84 # Copy out the old file's section 0.
92 # Create a temporary file from the old file's interesting section.
139 old = peek()
140 if (old == 0) {
145 # Compare this new test to the first queued old one.
148 status[old], name[old], st, nm)
150 if (name[old] != nm) {
151 # The old tes
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lto/
H A D20091004-1_0.C18 explicit DVector(const Vector& old);
30 DVector::DVector(const Vector& old) : Vector(0, 0) argument
32 *this = old;
H A D20091004-2_1.C14 explicit DVector(const Vector& old);
26 DVector::DVector(const Vector& old) : Vector(0, 0) argument
28 *this = old;
/haiku-buildtools/gcc/libgcc/config/pa/
H A Dstublib.c84 unsigned long *old)
86 if (old)
87 *old = 0;
83 pthread_default_stacksize_np(__attribute__((unused)) unsigned long new, unsigned long *old) argument
/haiku-buildtools/gcc/libgcc/config/arm/
H A Dfreebsd-atomic.c63 unsigned int old, temp, ras_start; \
74 "\t"LDR" %0, %4\n" /* Load old value. */ \
83 : "=&r" (old), "=m" (*mem), "=&r" (temp) \
85 return (old); \
103 unsigned int old, temp, ras_start; \
114 "\t"LDR" %0, %5\n" /* Load old value. */ \
124 : "=&r" (old), "=m" (*mem), "=&r" (temp) \
127 return (old); \
146 unsigned int old, temp, ras_start; \
157 "\t"LDR" %0, %4\n" /* Load old valu
[all...]
/haiku-buildtools/legacy/gcc/libio/
H A DSFile.h47 int setsize(int s) { int old = sz; sz = s; return old; } local

Completed in 285 milliseconds

1234567891011>>