HomeSort by relevance Sort by last modified time
    Searched full:interlockedcompareexchange (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/native_client_sdk/src/libraries/sdk_util/
atomicops.h 65 return InterlockedCompareExchange(ptr, newvalue, oldvalue);
78 } while (InterlockedCompareExchange(ptr, newval, oldval) != oldval);
89 } while (InterlockedCompareExchange(ptr,newval, oldval) != oldval);
100 } while (InterlockedCompareExchange(ptr,newval, oldval) != oldval);
  /external/llvm/cmake/modules/
CheckAtomic.cmake 13 InterlockedCompareExchange(&val, 0, 1);
  /external/chromium_org/sdch/open-vcdiff/testdata/
configure.ac.v0.1 46 AC_CHECK_FUNCS([InterlockedCompareExchange])
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
atomic32_win.cc 52 const LONG old_value = InterlockedCompareExchange(
clock.cc 59 compare_flag = InterlockedCompareExchange(
  /external/webrtc/src/system_wrappers/source/
atomic32_win.cc 60 const LONG oldValue = InterlockedCompareExchange(
  /sdk/emulator/opengl/shared/emugl/common/
lazy_instance.cpp 59 return InterlockedCompareExchange(ptr, value, expected);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
atomicops_internals_x86_msvc.cc 55 LONG result = InterlockedCompareExchange(
  /external/llvm/lib/Support/
Atomic.cpp 54 return InterlockedCompareExchange(ptr, new_value, old_value);
  /external/chromium_org/third_party/sqlite/src/src/
mutex_w32.c 114 if( InterlockedCompareExchange(&winMutex_lock, 1, 0)==0 ){
132 if( InterlockedCompareExchange(&winMutex_lock, 0, 1)==1 ){
  /external/chromium_org/chrome/browser/renderer_host/pepper/
pepper_flash_drm_host.cc 62 if (InterlockedCompareExchange(&request_sent_, 1, 0) == 0) {
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
implement.h 291 * routines to attempt an InterlockedCompareExchange on "interlock"
    [all...]
  /external/chromium_org/sandbox/win/src/
sharedmem_ipc_client.cc 125 if (kFreeChannel == ::InterlockedCompareExchange(&channel[ix].state,
  /external/chromium_org/v8/src/base/
atomicops_internals_x86_msvc.h 28 LONG result = InterlockedCompareExchange(
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winbase.h 818 #define InterlockedCompareExchange _InterlockedCompareExchange
851 LONG __cdecl InterlockedCompareExchange(LONG volatile *Destination,LONG ExChange,LONG Comperand);
868 j = InterlockedCompareExchange(Target,i & Set,i);
883 j = InterlockedCompareExchange(Target,i | Set,i);
898 j = InterlockedCompareExchange(Target,i ^ Set,i);
981 #define InterlockedCompareExchange _InterlockedCompareExchange
982 #define InterlockedCompareExchangeAcquire InterlockedCompareExchange
983 #define InterlockedCompareExchangeRelease InterlockedCompareExchange
1024 LONG WINAPI InterlockedCompareExchange(LONG volatile *Destination,LONG Exchange,LONG Comperand);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
atomicops-internals-windows.h 75 return ::InterlockedCompareExchange(const_cast<LONG*>(ptr), newval, oldval);
119 return ::InterlockedCompareExchange(ptr, newval, oldval);
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
atomicops-internals-windows.h 74 return ::InterlockedCompareExchange(const_cast<LONG*>(ptr), newval, oldval);
110 return ::InterlockedCompareExchange(ptr, newval, oldval);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
gthr-default.h 377 /* The Windows95 kernel does not export InterlockedCompareExchange.
397 #define __GTHR_W32_InterlockedCompareExchange InterlockedCompareExchange
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
gthr-default.h 377 /* The Windows95 kernel does not export InterlockedCompareExchange.
397 #define __GTHR_W32_InterlockedCompareExchange InterlockedCompareExchange
  /external/chromium_org/third_party/icu/source/common/
umutex.h 102 return InterlockedCompareExchange(&var, 0, 0);
umutex.cpp 71 int32_t previousState = InterlockedCompareExchange(
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_atomic.h 50 #define atomic_cmpset_int(dst, exp, src) InterlockedCompareExchange((LPLONG)dst, src, exp)
  /external/icu/icu4c/source/common/
umutex.h 101 return InterlockedCompareExchange(&var, 0, 0);
umutex.cpp 71 int32_t previousState = InterlockedCompareExchange(
  /external/compiler-rt/lib/BlocksRuntime/
runtime.c 53 long original = InterlockedCompareExchange(dst, newl, oldl);
59 int original = InterlockedCompareExchange(dst, newi, oldi);

Completed in 1377 milliseconds

1 2