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

1 2

  /external/clang/test/CodeGen/
ms-intrinsics.c 17 void *Exchange, void *Comparand) {
18 return _InterlockedCompareExchangePointer(Destination, Exchange, Comparand);
21 // CHECK: define{{.*}}i8* @test_InterlockedCompareExchangePointer(i8** %Destination, i8* %Exchange, i8* %Comparand){{.*}}{
24 // CHECK: %[[COMPARAND:[0-9]+]] = ptrtoint i8* %Comparand to i32
25 // CHECK: %[[XCHG:[0-9]+]] = cmpxchg volatile i32* %[[DEST:[0-9]+]], i32 %[[COMPARAND:[0-9]+]], i32 %[[EXCHANGE:[0-9]+]] seq_cst seq_cst
  /external/chromium_org/v8/src/
regexp-macro-assembler-tracer.h 54 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
55 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
regexp-macro-assembler-tracer.cc 379 int comparand, Label* if_lt) {
381 register_index, comparand, LabelToInt(if_lt));
382 assembler_->IfRegisterLT(register_index, comparand, if_lt);
395 int comparand, Label* if_ge) {
397 register_index, comparand, LabelToInt(if_ge));
398 assembler_->IfRegisterGE(register_index, comparand, if_ge);
regexp-macro-assembler-irregexp.h 86 virtual void IfRegisterLT(int register_index, int comparand, Label* if_lt);
87 virtual void IfRegisterGE(int register_index, int comparand, Label* if_ge);
regexp-macro-assembler-irregexp.cc 392 int comparand,
397 Emit32(comparand);
403 int comparand,
408 Emit32(comparand);
regexp-macro-assembler.h 117 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge) = 0;
120 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt) = 0;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_atomic_msvc.h 29 short Exchange, short Comparand); // NOLINT
34 long long Exchange, long long Comparand); // NOLINT
38 void *Exchange, void *Comparand);
43 long Exchange, long Comparand); // NOLINT
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
implement.h 770 # define PTW32_INTERLOCKED_COMPARE_EXCHANGE_64(location, value, comparand) \
778 :"r" (location), "r" (value), "a" (comparand) \
830 # define PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG(location, value, comparand) \
838 :"r" (location), "r" (value), "a" (comparand) \
889 # define PTW32_INTERLOCKED_COMPARE_EXCHANGE_PTR(location, value, comparand) \
892 (PTW32_INTERLOCKED_SIZE)comparand
    [all...]
  /external/chromium_org/v8/src/arm/
regexp-macro-assembler-arm.h 64 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
65 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
regexp-macro-assembler-arm.cc 863 int comparand,
866 __ cmp(r0, Operand(comparand));
872 int comparand,
875 __ cmp(r0, Operand(comparand));
    [all...]
  /external/chromium_org/v8/src/ia32/
regexp-macro-assembler-ia32.h 62 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
63 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
regexp-macro-assembler-ia32.cc 918 int comparand,
920 __ cmp(register_location(reg), Immediate(comparand));
926 int comparand,
928 __ cmp(register_location(reg), Immediate(comparand));
    [all...]
  /external/chromium_org/v8/src/mips/
regexp-macro-assembler-mips.h 65 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
66 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
regexp-macro-assembler-mips.cc 879 int comparand,
882 BranchOrBacktrack(if_ge, ge, a0, Operand(comparand));
    [all...]
  /external/chromium_org/v8/src/x87/
regexp-macro-assembler-x87.h 62 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
63 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
regexp-macro-assembler-x87.cc 917 int comparand,
919 __ cmp(register_location(reg), Immediate(comparand));
925 int comparand,
927 __ cmp(register_location(reg), Immediate(comparand));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
intrin.h 290 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand))
291 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128_acq(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand))
292 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128_rel(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand))
293 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand))
294 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128_acq(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand))
295 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128_rel(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand))
    [all...]
  /external/chromium_org/v8/src/arm64/
regexp-macro-assembler-arm64.h 69 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
70 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
regexp-macro-assembler-arm64.cc     [all...]
  /external/chromium_org/v8/src/mips64/
regexp-macro-assembler-mips64.h 65 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
66 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
regexp-macro-assembler-mips64.cc     [all...]
  /external/chromium_org/v8/src/x64/
regexp-macro-assembler-x64.h 65 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
66 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
regexp-macro-assembler-x64.cc     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sets.py 123 # NotImplemented instead of True or False. Then the other comparand
124 # would get a chance to determine the result, and if the other comparand
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sets.py 123 # NotImplemented instead of True or False. Then the other comparand
124 # would get a chance to determine the result, and if the other comparand

Completed in 915 milliseconds

1 2