Searched refs:oldval (Results 1 - 25 of 46) sorted by relevance

12

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/pa/
H A Dlinux-atomic.c52 __kernel_cmpxchg (int oldval, int newval, int *mem) argument
57 register int lws_old asm("r25") = oldval;
72 if (!lws_errno && lws_ret != oldval)
119 unsigned int mask, shift, oldval, newval; \
126 oldval = *wordptr; \
127 newval = ((PFX_OP ((oldval & mask) >> shift) \
129 newval |= oldval & ~mask; \
130 failure = __kernel_cmpxchg (oldval, newval, wordptr); \
136 SUBWORD_SYNC_OP (add, , +, short, 2, oldval)
137 SUBWORD_SYNC_OP (sub, , -, short, 2, oldval)
186 __sync_val_compare_and_swap_4(int *ptr, int oldval, int newval) argument
239 __sync_bool_compare_and_swap_4(int *ptr, int oldval, int newval) argument
261 int failure, oldval; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/arm/
H A Dlinux-atomic.c27 typedef int (__kernel_cmpxchg_t) (int oldval, int newval, int *ptr);
83 unsigned int mask, shift, oldval, newval; \
90 oldval = *wordptr; \
91 newval = ((PFX_OP (((oldval & mask) >> shift) \
93 newval |= oldval & ~mask; \
94 failure = __kernel_cmpxchg (oldval, newval, wordptr); \
100 SUBWORD_SYNC_OP (add, , +, unsigned short, 2, oldval)
101 SUBWORD_SYNC_OP (sub, , -, unsigned short, 2, oldval)
102 SUBWORD_SYNC_OP (or, , |, unsigned short, 2, oldval)
103 SUBWORD_SYNC_OP (and, , &, unsigned short, 2, oldval)
150 __sync_val_compare_and_swap_4(int *ptr, int oldval, int newval) argument
203 __sync_bool_compare_and_swap_4(int *ptr, int oldval, int newval) argument
231 int failure, oldval; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgomp/config/linux/
H A Dmutex.c39 int oldval = __sync_val_compare_and_swap (mutex, 1, 2); local
40 if (oldval != 0)
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-c/detail/
H A Denv_test.c77 char *oldval; local
80 RE(atf_text_format(&oldval, "%s", atf_env_get("PATH")));
82 ATF_REQUIRE(strcmp(atf_env_get("PATH"), oldval) != 0);
84 free(oldval);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-c/detail/
H A Denv_test.c79 char *oldval; local
82 RE(atf_text_format(&oldval, "%s", atf_env_get("PATH")));
84 ATF_REQUIRE(strcmp(atf_env_get("PATH"), oldval) != 0);
86 free(oldval);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/testsuite/sim/cris/c/
H A Dsysctl1.c20 void *oldval; member in struct:__sysctl_args
H A Dsysctl2.c23 void *oldval; member in struct:__sysctl_args
/netbsd-6-1-5-RELEASE/sys/arch/hpcarm/dev/
H A Dj720pcic.c134 int newval, oldval, s; local
153 oldval = bus_space_read_4(sc->sc_iot, sc->sc_ioh, SACCGPIOA_DVR);
157 newval = newval | (oldval & 0xc);
160 newval = (newval << 2) | (oldval & 3);
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-c++/detail/
H A Denv_test.cpp59 const std::string& oldval = atf::env::get("PATH"); local
61 ATF_REQUIRE(atf::env::get("PATH") != oldval);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-c++/detail/
H A Denv_test.cpp59 const std::string& oldval = atf::env::get("PATH"); local
61 ATF_REQUIRE(atf::env::get("PATH") != oldval);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Ddump.exp230 proc test_reload_saved_value { filename msg oldval newval } {
234 if { ![string compare $oldval \
242 proc test_restore_saved_value { restore_args msg oldval newval } {
248 if { ![string compare $oldval \
/netbsd-6-1-5-RELEASE/sys/compat/linux/common/
H A Dlinux_futex.c552 int error, oldval, cval; local
585 error = ucas_int(uaddr, cval, nval, &oldval);
586 if (oldval == cval || error) {
589 cval = oldval;
597 return (oldval == cmparg);
599 return (oldval != cmparg);
601 return (oldval < cmparg);
603 return (oldval >= cmparg);
605 return (oldval <= cmparg);
607 return (oldval > cmpar
[all...]
H A Dlinux_types.h102 void *oldval; member in struct:linux___sysctl
H A Dlinux_sysctl.c195 ls.oldval, &oldlen,
213 if (error == 0 && ls.oldval != NULL && savelen < oldlen)
/netbsd-6-1-5-RELEASE/sys/dev/isa/
H A Dpcdisplay.c140 u_int16_t oldval, val; local
144 oldval = bus_space_read_2(memt, memh, 0);
147 bus_space_write_2(memt, memh, 0, oldval);
163 u_int16_t oldval, val; local
167 oldval = bus_space_read_2(memt, memh, 0);
170 bus_space_write_2(memt, memh, 0, oldval);
H A Dega.c237 u_int16_t oldval, val; local
241 oldval = bus_space_read_2(memt, memh, 0);
244 bus_space_write_2(memt, memh, 0, oldval);
260 u_int16_t oldval, val; local
264 oldval = bus_space_read_2(memt, memh, 0);
267 bus_space_write_2(memt, memh, 0, oldval);
/netbsd-6-1-5-RELEASE/sys/compat/linux32/common/
H A Dlinux32_types.h76 netbsd32_voidp oldval; member in struct:linux32_sysctl
H A Dlinux32_sysctl.c205 NETBSD32PTR64(ls32.oldval), &oldlen,
239 (NETBSD32PTR64(ls32.oldval) != NULL) &&
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/amd/
H A Dinfo_nis.c309 char *oldval = *pval; local
310 *pval = sun_entry2amd(key, oldval);
312 XFREE(oldval);
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dcmd-set-option.c270 char *oldval, *newval; local
273 oldval = options_get_string(oo, oe->name);
274 xasprintf(&newval, "%s%s", oldval, value);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/cp/
H A Dname-lookup.c2204 do_nonmember_using_decl (tree scope, tree name, tree oldval, tree oldtype,
2222 if (oldval && DECL_IMPLICIT_TYPEDEF_P (oldval))
2224 oldtype = oldval;
2225 oldval = NULL_TREE;
2237 if (oldval
2238 && TREE_CODE (oldval) == FUNCTION_DECL
2239 && DECL_ANTICIPATED (oldval)
2240 && !DECL_HIDDEN_FRIEND_P (oldval))
2241 oldval
2201 do_nonmember_using_decl(tree scope, tree name, tree oldval, tree oldtype, tree *newval, tree *newtype) argument
2351 tree oldval, oldtype, newval, newtype; local
3511 tree oldval, oldtype, newval, newtype; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/cp/
H A Dname-lookup.c2058 do_nonmember_using_decl (tree scope, tree name, tree oldval, tree oldtype,
2077 if (oldval
2078 && TREE_CODE (oldval) == FUNCTION_DECL
2079 && DECL_ANTICIPATED (oldval)
2080 && !DECL_HIDDEN_FRIEND_P (oldval))
2081 oldval = NULL_TREE;
2088 if (oldval && !is_overloaded_fn (oldval))
2090 if (!DECL_IMPLICIT_TYPEDEF_P (oldval))
2092 oldval
2055 do_nonmember_using_decl(tree scope, tree name, tree oldval, tree oldtype, tree *newval, tree *newtype) argument
2176 tree oldval, oldtype, newval, newtype; local
3238 tree oldval, oldtype, newval, newtype; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/sh/
H A Dinterp.c1583 int oldval = RBAT (addr); local
1587 WBAT (addr, oldval & ~imm);
1590 WBAT (addr, oldval | imm);
1594 WBAT (addr, oldval | imm);
1596 WBAT (addr, oldval & ~imm);
1599 SET_SR_T ((oldval & imm) != 0);
1602 SET_SR_T (T && ((oldval & imm) != 0));
1605 SET_SR_T (T || ((oldval & imm) != 0));
1608 SET_SR_T (T ^ ((oldval & imm) != 0));
1611 SET_SR_T ((oldval
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/servers/slapd/overlays/
H A Drwmmap.c896 oldval; local
900 oldval = a_vals[i];
901 rc = ldap_url_parse( oldval.bv_val, &ludp );
905 ber_dupbv( &(*pa_nvals)[i], &oldval );
978 a_vals[i] = oldval;
989 ch_free( oldval.bv_val );
/netbsd-6-1-5-RELEASE/bin/ksh/
H A Dmisc.c293 int oldval; local
295 oldval = Flag(f);
299 if (what != OF_CMDLINE && newval != oldval)
325 if (f == FPRIVILEGED && oldval && !newval) {

Completed in 233 milliseconds

12