Lines Matching refs:old

30 #define __TEST_AND_BEGIN_NON_STOP(old, new) do {} while ((old) * (new) * 0 != 0)  argument
31 #define __TEST_AND_END_NON_STOP(old, new) do {} while ((old) * (new) * 0 != 0) argument
40 fenv_union_t old, new; in libc_feholdexcept_setround_ppc() local
42 old.fenv = *envp = fegetenv_register (); in libc_feholdexcept_setround_ppc()
44 __TEST_AND_BEGIN_NON_STOP (old.l, 0ULL); in libc_feholdexcept_setround_ppc()
55 fenv_union_t old, new; in __libc_femergeenv_ppc() local
58 old.fenv = fegetenv_register (); in __libc_femergeenv_ppc()
61 new.l = (old.l & old_mask) | (new.l & new_mask); in __libc_femergeenv_ppc()
63 __TEST_AND_END_NON_STOP (old.l, new.l); in __libc_femergeenv_ppc()
64 __TEST_AND_BEGIN_NON_STOP (old.l, new.l); in __libc_femergeenv_ppc()
73 (old.l & FPSCR_EXCEPTIONS_MASK) == (new.l & FPSCR_EXCEPTIONS_MASK)) in __libc_femergeenv_ppc()
81 return old.l; in __libc_femergeenv_ppc()
137 fenv_union_t old; in libc_feholdsetround_ppc_ctx() local
139 ctx->env = old.fenv = fegetenv_and_set_rn (r); in libc_feholdsetround_ppc_ctx()
140 ctx->updated_status = (r != (old.l & FPSCR_RN_MASK)); in libc_feholdsetround_ppc_ctx()
146 fenv_union_t old, new; in libc_feholdsetround_noex_ppc_ctx() local
148 old.fenv = fegetenv_register (); in libc_feholdsetround_noex_ppc_ctx()
150 new.l = (old.l & ~(FPSCR_ENABLES_MASK|FPSCR_RN_MASK)) | r; in libc_feholdsetround_noex_ppc_ctx()
152 ctx->env = old.fenv; in libc_feholdsetround_noex_ppc_ctx()
153 if (__glibc_unlikely (new.l != old.l)) in libc_feholdsetround_noex_ppc_ctx()
155 __TEST_AND_BEGIN_NON_STOP (old.l, 0ULL); in libc_feholdsetround_noex_ppc_ctx()