Home
last modified time | relevance | path

Searched refs:castFrom32Bit (Results 1 – 1 of 1) sorted by relevance

/dports/audio/carla/Carla-2.4.1/source/modules/water/memory/
H A DAtomic.h170 …static inline Type castFrom32Bit (int32 value) noexcept { return castTo <Type, int32> (value); } in castFrom32Bit() function
172 …static inline Type castFrom32Bit (uint32 value) noexcept { return castTo <Type, uint32> (value); } in castFrom32Bit() function
205 return castFrom32Bit ((int32) __sync_add_and_fetch (const_cast<volatile int32*>(&value), 0)); in get()
223 return castFrom32Bit ((uint32) __sync_add_and_fetch (const_cast<volatile uint32*>(&value), 0)); in get()
279 …return sizeof (Type) == 4 ? castFrom32Bit ((int32) __sync_val_compare_and_swap ((volatile int32*) … in compareAndSetValue()