HomeSort by: relevance | last modified time | path
    Searched defs:old (Results 1 - 25 of 570) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/common/lib/libc/atomic/
atomic_swap_16_cas.c 43 uint16_t old; local
46 old = *addr;
47 } while (atomic_cas_16(addr, old, new) != old);
49 return old;
atomic_swap_32_cas.c 39 uint32_t old; local
42 old = *addr;
43 } while (atomic_cas_32(addr, old, new) != old);
45 return old;
atomic_swap_64_cas.c 41 uint64_t old; local
44 old = *addr;
45 } while (atomic_cas_64(addr, old, new) != old);
47 return old;
atomic_swap_8_cas.c 43 uint8_t old; local
46 old = *addr;
47 } while (atomic_cas_8(addr, old, new) != old);
49 return old;
atomic_add_16_cas.c 44 uint16_t old, new; local
47 old = *addr;
48 new = old + val;
49 } while (atomic_cas_16(addr, old, new) != old);
50 return old;
56 uint16_t old, new; local
59 old = *addr;
60 new = old + val;
61 } while (atomic_cas_16(addr, old, new) != old)
    [all...]
atomic_add_32_cas.c 46 uint32_t old, new; local
49 old = *addr;
50 new = old + val;
51 } while (atomic_cas_32(addr, old, new) != old);
52 return old;
atomic_add_32_nv_cas.c 39 uint32_t old, new; local
42 old = *addr;
43 new = old + val;
44 } while (atomic_cas_32(addr, old, new) != old);
atomic_add_64_cas.c 44 uint64_t old, new; local
47 old = *addr;
48 new = old + val;
49 } while (atomic_cas_64(addr, old, new) != old);
50 return old;
atomic_add_64_nv_cas.c 41 uint64_t old, new; local
44 old = *addr;
45 new = old + val;
46 } while (atomic_cas_64(addr, old, new) != old);
atomic_add_8_cas.c 44 uint8_t old, new; local
47 old = *addr;
48 new = old + val;
49 } while (atomic_cas_8(addr, old, new) != old);
50 return old;
56 uint8_t old, new; local
59 old = *addr;
60 new = old + val;
61 } while (atomic_cas_8(addr, old, new) != old)
    [all...]
atomic_and_16_cas.c 42 uint16_t old, new; local
45 old = *addr;
46 new = old & val;
47 } while (atomic_cas_16(addr, old, new) != old);
48 return old;
atomic_and_16_nv_cas.c 41 uint16_t old, new; local
44 old = *addr;
45 new = old & val;
46 } while (atomic_cas_16(addr, old, new) != old);
atomic_and_32_cas.c 46 uint32_t old, new; local
49 old = *addr;
50 new = old & val;
51 } while (atomic_cas_32(addr, old, new) != old);
52 return old;
atomic_and_32_nv_cas.c 39 uint32_t old, new; local
42 old = *addr;
43 new = old & val;
44 } while (atomic_cas_32(addr, old, new) != old);
atomic_and_64_cas.c 44 uint64_t old, new; local
47 old = *addr;
48 new = old & val;
49 } while (atomic_cas_64(addr, old, new) != old);
50 return old;
atomic_and_64_nv_cas.c 41 uint64_t old, new; local
44 old = *addr;
45 new = old & val;
46 } while (atomic_cas_64(addr, old, new) != old);
atomic_and_8_cas.c 42 uint8_t old, new; local
45 old = *addr;
46 new = old & val;
47 } while (atomic_cas_8(addr, old, new) != old);
48 return old;
atomic_and_8_nv_cas.c 41 uint8_t old, new; local
44 old = *addr;
45 new = old & val;
46 } while (atomic_cas_8(addr, old, new) != old);
atomic_c11_compare_exchange_cas_16.c 49 const uint16_t old = *ep; local
56 const uint16_t prev = atomic_cas_16(mem, old, desired);
57 if (prev == old)
atomic_c11_compare_exchange_cas_32.c 49 const uint32_t old = *ep; local
56 const uint32_t prev = atomic_cas_32(mem, old, desired);
57 if (prev == old)
atomic_c11_compare_exchange_cas_8.c 49 const uint8_t old = *ep; local
56 const uint8_t prev = atomic_cas_8(mem, old, desired);
57 if (prev == old)
atomic_dec_32_cas.c 39 uint32_t old, new; local
42 old = *addr;
43 new = old - 1;
44 } while (atomic_cas_32(addr, old, new) != old);
atomic_dec_32_nv_cas.c 39 uint32_t old, new; local
42 old = *addr;
43 new = old - 1;
44 } while (atomic_cas_32(addr, old, new) != old);
  /src/external/bsd/elftoolchain/dist/libelf/
elf_errno.c 42 int old; local
44 old = LIBELF_PRIVATE(error);
46 return (old & LIBELF_ELF_ERROR_MASK);
elf_version.c 42 unsigned int old; local
44 if ((old = LIBELF_PRIVATE(version)) == EV_NONE)
45 old = EV_CURRENT;
48 return old;
55 return (old);

Completed in 78 milliseconds

1 2 3 4 5 6 7 8 91011>>