Searched refs:atomicExchange (Results 1 – 11 of 11) sorted by relevance
/external/swiftshader/src/Reactor/ |
D | Thread.hpp | 116 int64_t atomicExchange(int64_t volatile *target, int64_t value); 117 int atomicExchange(int volatile *target, int value); 238 inline int64_t atomicExchange(volatile int64_t *target, int64_t value) in atomicExchange() function 249 inline int atomicExchange(volatile int *target, int value) in atomicExchange() function 324 inline void operator=(const AtomicInt& i) { atomicExchange(&vi, i.vi); } in operator =() 325 inline void operator=(int i) { atomicExchange(&vi, i); } in operator =()
|
/external/swiftshader/src/Common/ |
D | Thread.hpp | 116 int64_t atomicExchange(int64_t volatile *target, int64_t value); 117 int atomicExchange(int volatile *target, int value); 238 inline int64_t atomicExchange(volatile int64_t *target, int64_t value) in atomicExchange() function 249 inline int atomicExchange(volatile int *target, int value) in atomicExchange() function 324 inline void operator=(const AtomicInt& i) { sw::atomicExchange(&vi, i.vi); } in operator =() 325 inline void operator=(int i) { sw::atomicExchange(&vi, i); } in operator =()
|
/external/swiftshader/src/System/ |
D | Thread.hpp | 116 int64_t atomicExchange(int64_t volatile *target, int64_t value); 117 int atomicExchange(int volatile *target, int value); 238 inline int64_t atomicExchange(volatile int64_t *target, int64_t value) in atomicExchange() function 249 inline int atomicExchange(volatile int *target, int value) in atomicExchange() function 324 inline void operator=(const AtomicInt& i) { sw::atomicExchange(&vi, i.vi); } in operator =() 325 inline void operator=(int i) { sw::atomicExchange(&vi, i); } in operator =()
|
/external/swiftshader/src/Device/ |
D | Config.cpp | 58 ropOperationsFrame = sw::atomicExchange(&ropOperations, 0); in nextFrame() 59 texOperationsFrame = sw::atomicExchange(&texOperations, 0); in nextFrame() 60 compressedTexFrame = sw::atomicExchange(&compressedTex, 0); in nextFrame()
|
/external/swiftshader/src/Main/ |
D | Config.cpp | 58 ropOperationsFrame = sw::atomicExchange(&ropOperations, 0); in nextFrame() 59 texOperationsFrame = sw::atomicExchange(&texOperations, 0); in nextFrame() 60 compressedTexFrame = sw::atomicExchange(&compressedTex, 0); in nextFrame()
|
/external/deqp-deps/glslang/Test/ |
D | spv.atomicInt64.comp | 47 i64 += atomicExchange(buf.i64, i64c); 73 i64 += atomicExchange(s.i64, i64c);
|
D | spv.atomic.comp | 45 origi = atomicExchange(atomi, origi);
|
D | spv.memoryScopeSemantics.comp | 36 origi = atomicExchange(atomi, origi, gl_ScopeDevice, 0, 0);
|
D | 310.comp | 161 origi = atomicExchange(atomi, 4);
|
/external/skqp/src/sksl/ |
D | sksl.inc | 528 uint atomicExchange(inout uint mem, uint data); 529 int atomicExchange(inout int mem, int data);
|
/external/skia/src/sksl/ |
D | sksl.inc | 596 uint atomicExchange(inout uint mem, uint data); 597 int atomicExchange(inout int mem, int data);
|