MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/PhysX / atomicAdd

Function atomicAdd

physx/source/foundation/src/unix/PsUnixAtomic.cpp:63–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63int32_t atomicAdd(volatile int32_t* val, int32_t delta)
64{
65 return __sync_add_and_fetch(val, delta);
66}
67
68int32_t atomicMax(volatile int32_t* val, int32_t val2)
69{

Callers 15

onContactMethod · 0.50
runInternalMethod · 0.50
runInternalMethod · 0.50
runInternalMethod · 0.50
runInternalMethod · 0.50
copyBuffersFunction · 0.50
eventValueMethod · 0.50
doAddEventMethod · 0.50
sendEventMethod · 0.50
solveV_BlocksMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected