Searched defs:Volatile (Results 1 - 5 of 5) sorted by relevance

/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
H A Dp2.cpp11 struct Volatile { struct in namespace:move
12 Volatile(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move constructor may not be volatile}}
13 Volatile& operator=(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move assignment operator may not be volatile}}
30 struct Volatile { struct in namespace:copy
31 Volatile(const volatile Volatile&) = default; // expected-error {{the parameter for an explicitly-defaulted copy constructor may not be volatile}}
32 Volatile& operator=(const volatile Volatile
[all...]
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp1309 bool Volatile = local
1349 Result->setVolatile(Volatile);
1377 RMW->setVolatile(Volatile);
1395 bool Volatile = local
1405 StoreInst *Store = Builder.CreateStore(NewVal, Ptr, Volatile);
1437 StoreInst *Store = Builder.CreateStore(NewVal, Ptr, Volatile);
H A DCGExpr.cpp1236 llvm::Value *CodeGenFunction::EmitLoadOfScalar(Address Addr, bool Volatile, argument
1258 llvm::Value *V = Builder.CreateLoad(Cast, Volatile, "loadVec4");
1268 if (Ty->isAtomicType() || typeIsSuitableForInlineAtomic(Ty, Volatile)) {
1274 llvm::LoadInst *Load = Builder.CreateLoad(Addr, Volatile);
1349 bool Volatile, QualType Ty,
1380 (!isInit && typeIsSuitableForInlineAtomic(Ty, Volatile))) {
1388 llvm::StoreInst *Store = Builder.CreateStore(Value, Addr, Volatile);
3147 if (cvr & Qualifiers::Volatile) load->setVolatile(true);
1348 EmitStoreOfScalar(llvm::Value *Value, Address Addr, bool Volatile, QualType Ty, AlignmentSource AlignSource, llvm::MDNode *TBAAInfo, bool isInit, QualType TBAABaseType, uint64_t TBAAOffset, bool isNontemporal) argument
/external/clang/include/clang/AST/
H A DType.h121 Volatile = 0x4, enumerator in enum:clang::Qualifiers::TQ
122 CVRMask = Const | Volatile | Restrict
236 bool hasVolatile() const { return Mask & Volatile; }
238 Mask = (Mask & ~Volatile) | (flag ? Volatile : 0);
240 void removeVolatile() { Mask &= ~Volatile; }
241 void addVolatile() { Mask |= Volatile; }
670 return (getLocalFastQualifiers() & Qualifiers::Volatile);
747 addFastQualifiers(Qualifiers::Volatile);
750 return withFastQualifiers(Qualifiers::Volatile);
[all...]
/external/libgdx/backends/gdx-backend-moe/libs/
H A Dintel-moe-ios.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE com/ com/intel/ com/intel/moe/ com/intel/moe/ ...

Completed in 826 milliseconds