HomeSort by relevance Sort by last modified time
    Searched refs:OldV (Results 1 - 8 of 8) sorted by null

  /external/compiler-rt/lib/profile/
InstrProfilingPort.h 59 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \
61 (LONGLONG)OldV) == (LONGLONG)OldV)
66 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \
67 (InterlockedCompareExchange((LONG volatile *)Ptr, (LONG)NewV, (LONG)OldV) == \
68 (LONG)OldV)
74 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \
75 __sync_bool_compare_and_swap(Ptr, OldV, NewV)
81 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV) \
82 lprofBoolCmpXchg((void **)Ptr, OldV, NewV
    [all...]
InstrProfilingUtil.h 30 unsigned lprofBoolCmpXchg(void **Ptr, void *OldV, void *NewV);
InstrProfilingUtil.c 51 uint32_t lprofBoolCmpXchg(void **Ptr, void *OldV, void *NewV) {
53 if (R == OldV) {
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.cpp 218 WeakVH &OldV = ValuePtrs[Idx];
219 if (OldV == 0) {
220 OldV = V;
226 if (Constant *PHC = dyn_cast<Constant>(&*OldV)) {
228 OldV = V;
231 Value *PrevVal = OldV;
232 OldV->replaceAllUsesWith(V);
363 WeakVH &OldV = MDValuePtrs[Idx];
364 if (OldV == 0) {
365 OldV = V
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 586 WeakVH &OldV = ValuePtrs[Idx];
587 if (!OldV) {
588 OldV = V;
594 if (Constant *PHC = dyn_cast<Constant>(&*OldV)) {
596 OldV = V;
599 Value *PrevVal = OldV;
600 OldV->replaceAllUsesWith(V);
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 861 WeakVH &OldV = ValuePtrs[Idx];
862 if (!OldV) {
863 OldV = V;
869 if (Constant *PHC = dyn_cast<Constant>(&*OldV)) {
871 OldV = V;
874 Value *PrevVal = OldV;
875 OldV->replaceAllUsesWith(V);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]

Completed in 134 milliseconds