| /src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/ |
| new_opva.cc | 27 #include "new" 30 operator new[] (std::size_t sz, std::align_val_t al) 32 return ::operator new(sz, al);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/ |
| new_opva.cc | 27 #include "new" 30 operator new[] (std::size_t sz, std::align_val_t al) 32 return ::operator new(sz, al);
|
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| new-op.cc | 1 /* Replace operator new/new[], for GDB, the GNU debugger. 27 #include <new> 29 /* These are declared in <new> starting C++14, but removing them 34 /* Override operator new / operator new[], in order to internal_error 37 new-handler function instead (std::set_new_handler) because we want 41 Address sanitizer wants to override operator new/delete too in 42 order to detect malloc+delete and new+free mismatches. Our 52 operator new (std::size_t sz [all...] |
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| new-op.cc | 1 /* Replace operator new/new[], for GDB, the GNU debugger. 27 #include <new> 29 /* These are declared in <new> starting C++14, but removing them 34 /* Override operator new / operator new[], in order to internal_error 37 new-handler function instead (std::set_new_handler) because we want 41 Address sanitizer wants to override operator new/delete too in 42 order to detect malloc+delete and new+free mismatches. Our 52 operator new (std::size_t sz [all...] |
| /src/common/lib/libc/atomic/ |
| atomic_add_16_cas.c | 44 uint16_t old, new; local 48 new = old + val; 49 } while (atomic_cas_16(addr, old, new) != old); 56 uint16_t old, new; local 60 new = old + val; 61 } while (atomic_cas_16(addr, old, new) != old); 62 return new;
|
| atomic_add_32_cas.c | 46 uint32_t old, new; local 50 new = old + val; 51 } while (atomic_cas_32(addr, old, new) != old);
|
| atomic_add_32_nv_cas.c | 39 uint32_t old, new; local 43 new = old + val; 44 } while (atomic_cas_32(addr, old, new) != old); 46 return new;
|
| atomic_add_64_cas.c | 44 uint64_t old, new; local 48 new = old + val; 49 } while (atomic_cas_64(addr, old, new) != old);
|
| atomic_add_64_nv_cas.c | 41 uint64_t old, new; local 45 new = old + val; 46 } while (atomic_cas_64(addr, old, new) != old); 48 return new;
|
| atomic_add_8_cas.c | 44 uint8_t old, new; local 48 new = old + val; 49 } while (atomic_cas_8(addr, old, new) != old); 56 uint8_t old, new; local 60 new = old + val; 61 } while (atomic_cas_8(addr, old, new) != old); 62 return new;
|
| atomic_and_16_cas.c | 42 uint16_t old, new; local 46 new = old & val; 47 } while (atomic_cas_16(addr, old, new) != old);
|
| atomic_and_16_nv_cas.c | 41 uint16_t old, new; local 45 new = old & val; 46 } while (atomic_cas_16(addr, old, new) != old); 48 return new;
|
| atomic_and_32_cas.c | 46 uint32_t old, new; local 50 new = old & val; 51 } while (atomic_cas_32(addr, old, new) != old);
|
| atomic_and_32_nv_cas.c | 39 uint32_t old, new; local 43 new = old & val; 44 } while (atomic_cas_32(addr, old, new) != old); 46 return new;
|
| atomic_and_64_cas.c | 44 uint64_t old, new; local 48 new = old & val; 49 } while (atomic_cas_64(addr, old, new) != old);
|
| atomic_and_64_nv_cas.c | 41 uint64_t old, new; local 45 new = old & val; 46 } while (atomic_cas_64(addr, old, new) != old); 48 return new;
|
| atomic_and_8_cas.c | 42 uint8_t old, new; local 46 new = old & val; 47 } while (atomic_cas_8(addr, old, new) != old);
|
| atomic_and_8_nv_cas.c | 41 uint8_t old, new; local 45 new = old & val; 46 } while (atomic_cas_8(addr, old, new) != old); 48 return new;
|
| atomic_dec_32_cas.c | 39 uint32_t old, new; local 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 43 new = old - 1; 44 } while (atomic_cas_32(addr, old, new) != old); 46 return new;
|
| atomic_dec_64_cas.c | 41 uint64_t old, new; local 45 new = old - 1; 46 } while (atomic_cas_64(addr, old, new) != old);
|
| atomic_dec_64_nv_cas.c | 41 uint64_t old, new; local 45 new = old - 1; 46 } while (atomic_cas_64(addr, old, new) != old); 48 return new;
|
| atomic_inc_32_cas.c | 39 uint32_t old, new; local 43 new = old + 1; 44 } while (atomic_cas_32(addr, old, new) != old);
|
| atomic_inc_32_nv_cas.c | 39 uint32_t old, new; local 43 new = old + 1; 44 } while (atomic_cas_32(addr, old, new) != old); 46 return new;
|
| atomic_inc_64_cas.c | 41 uint64_t old, new; local 45 new = old + 1; 46 } while (atomic_cas_64(addr, old, new) != old);
|