HomeSort by relevance Sort by last modified time
    Searched defs:isAtomic (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.h 228 bool isAtomic() const { return m_refCountAndFlags & s_refCountFlagIsAtomic; }
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 238 static bool isAtomic(Instruction *I) {
240 return LI->isAtomic() && LI->getSynchScope() == CrossThread;
242 return SI->isAtomic() && SI->getSynchScope() == CrossThread;
268 if (isAtomic(BI))
  /external/llvm/include/llvm/
Instructions.h 213 bool isAtomic() const { return getOrdering() != NotAtomic; }
220 bool isSimple() const { return !isAtomic() && !isVolatile(); }
333 bool isAtomic() const { return getOrdering() != NotAtomic; }
340 bool isSimple() const { return !isAtomic() && !isVolatile(); }
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h     [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 487 bool isAtomic, bool hasStrong) {
495 // sizeof (Type of Ivar), isAtomic, false);
506 args.add(RValue::get(CGF.Builder.getInt1(isAtomic)), Context.BoolTy);
563 bool isAtomic() const { return IsAtomic; }
574 unsigned IsAtomic : 1;
590 IsAtomic = prop->isAtomic();
615 } else if (CGM.getLangOpts().ObjCAutoRefCount && !IsAtomic) {
631 } else if (!IsAtomic) {
    [all...]

Completed in 238 milliseconds