共用方式為


atomic_fetch_xor 函式

以不可切割的方式執行位元之間的XOR 運算對於一個值和記憶體位置。

inline int atomic_fetch_xor(
   _Inout_ int * _Dest,
   int _Value                     
) restrict(amp);
                     
inline unsigned int atomic_fetch_xor(
   _Inout_ unsigned int * _Dest,
   unsigned int _Value                     
) restrict(amp);

參數

  • _Dest
    指向記憶體位置的指標。

  • _Value
    使用的值在 XOR 計算。

傳回值

位於該記憶體位置中的原始值。

需求

標頭檔: amp.h

**命名空間:**並行

請參閱

參考

Concurrency 命名空間 (C++ AMP)