Searched refs:PtrVar (Results 1 – 1 of 1) sorted by relevance
/external/compiler-rt/lib/profile/ |
D | InstrProfilingPort.h | 62 #define COMPILER_RT_PTR_FETCH_ADD(DomType, PtrVar, PtrIncr) \ argument 63 (DomType *)InterlockedExchangeAdd64((LONGLONG volatile *)&PtrVar, \ 69 #define COMPILER_RT_PTR_FETCH_ADD(DomType, PtrVar, PtrIncr) \ argument 70 (DomType *)InterlockedExchangeAdd((LONG volatile *)&PtrVar, \ 76 #define COMPILER_RT_PTR_FETCH_ADD(DomType, PtrVar, PtrIncr) \ argument 77 (DomType *)__sync_fetch_and_add((long *)&PtrVar, sizeof(DomType) * PtrIncr) 83 #define COMPILER_RT_PTR_FETCH_ADD(DomType, PtrVar, PtrIncr) \ argument 84 (DomType *)lprofPtrFetchAdd((void **)&PtrVar, sizeof(DomType) * PtrIncr)
|