Home
last modified time | relevance | path

Searched refs:isVolatile (Results 1 – 25 of 246) sorted by relevance

12345678910

/external/skia/tests/
DGpuDrawPathTest.cpp115 bool isVolatile; variable
116 GrPath::ComputeKey(GrShape(path1, GrStyle::SimpleFill()), &key1, &isVolatile);
117 REPORTER_ASSERT(reporter, !isVolatile);
119 GrPath::ComputeKey(GrShape(path2, GrStyle::SimpleFill()), &key2, &isVolatile);
120 REPORTER_ASSERT(reporter, !isVolatile);
126 GrPath::ComputeKey(GrShape(path1, style), &key1, &isVolatile);
127 REPORTER_ASSERT(reporter, isVolatile);
134 GrPath::ComputeKey(GrShape(path2, GrStyle::SimpleFill()), &tempKey, &isVolatile);
149 GrPath::ComputeKey(GrShape(path3, style), &key3, &isVolatile);
150 REPORTER_ASSERT(reporter, !isVolatile);
[all …]
/external/swiftshader/third_party/LLVM/lib/VMCore/
DInstruction.cpp198 return LI->isVolatile() == cast<LoadInst>(I)->isVolatile() && in isIdenticalToWhenDefined()
203 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile() && in isIdenticalToWhenDefined()
224 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I)->isVolatile() && in isIdenticalToWhenDefined()
229 RMWI->isVolatile() == cast<AtomicRMWInst>(I)->isVolatile() && in isIdenticalToWhenDefined()
253 return LI->isVolatile() == cast<LoadInst>(I)->isVolatile() && in isSameOperationAs()
258 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile() && in isSameOperationAs()
280 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I)->isVolatile() && in isSameOperationAs()
285 RMWI->isVolatile() == cast<AtomicRMWInst>(I)->isVolatile() && in isSameOperationAs()
DIRBuilder.cpp65 bool isVolatile, MDNode *TBAATag) { in CreateMemSet() argument
67 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) }; in CreateMemSet()
83 bool isVolatile, MDNode *TBAATag) { in CreateMemCpy() argument
87 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) }; in CreateMemCpy()
103 bool isVolatile, MDNode *TBAATag) { in CreateMemMove() argument
107 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) }; in CreateMemMove()
/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetSelectionDAGInfo.h60 SDValue Op3, unsigned Align, bool isVolatile, in EmitTargetCodeForMemcpy() argument
77 SDValue Op3, unsigned Align, bool isVolatile, in EmitTargetCodeForMemmove() argument
93 SDValue Op3, unsigned Align, bool isVolatile, in EmitTargetCodeForMemset() argument
/external/llvm/lib/Target/ARM/
DARMSelectionDAGInfo.h43 SDValue Size, unsigned Align, bool isVolatile,
51 unsigned Align, bool isVolatile,
58 SDValue Op3, unsigned Align, bool isVolatile,
/external/skia/src/gpu/ops/
DGrStencilAndCoverPathRenderer.cpp50 bool isVolatile; in get_gr_path() local
51 GrPath::ComputeKey(shape, &key, &isVolatile); in get_gr_path()
53 if (!isVolatile) { in get_gr_path()
61 if (!isVolatile) { in get_gr_path()
/external/llvm/lib/Analysis/
DCaptureTracking.cpp249 if (MI->isVolatile()) in PointerMayBeCaptured()
271 if (cast<LoadInst>(I)->isVolatile()) in PointerMayBeCaptured()
281 if (V == I->getOperand(0) || cast<StoreInst>(I)->isVolatile()) in PointerMayBeCaptured()
292 if (ARMWI->getValOperand() == V || ARMWI->isVolatile()) in PointerMayBeCaptured()
305 ACXI->isVolatile()) in PointerMayBeCaptured()
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
DPTXSelectionDAGInfo.cpp33 bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy() argument
72 SrcPtrInfo.getWithOffset(SrcOff), isVolatile, in EmitTargetCodeForMemcpy()
85 isVolatile, false, 0); in EmitTargetCodeForMemcpy()
145 unsigned Align, bool isVolatile, in EmitTargetCodeForMemset() argument
DPTXSelectionDAGInfo.h37 bool isVolatile, bool AlwaysInline,
46 bool isVolatile,
/external/llvm/lib/Target/NVPTX/
DNVPTXLowerAggrCopies.cpp295 /* SrcIsVolatile */ LI->isVolatile(), in runOnFunction()
296 /* DstIsVolatile */ SI->isVolatile(), in runOnFunction()
311 /* SrcIsVolatile */ Memcpy->isVolatile(), in runOnFunction()
312 /* DstIsVolatile */ Memcpy->isVolatile(), in runOnFunction()
320 /* SrcIsVolatile */ Memmove->isVolatile(), in runOnFunction()
321 /* DstIsVolatile */ Memmove->isVolatile(), in runOnFunction()
DNVPTXLowerAlloca.cpp91 if (LI && LI->getPointerOperand() == allocaInst && !LI->isVolatile()) { in runOnBasicBlock()
96 if (SI && SI->getPointerOperand() == allocaInst && !SI->isVolatile()) { in runOnBasicBlock()
/external/llvm/lib/Transforms/Utils/
DGlobalStatus.cpp79 if (LI->isVolatile()) in analyzeGlobalAux()
88 if (SI->isVolatile()) in analyzeGlobalAux()
146 if (MTI->isVolatile()) in analyzeGlobalAux()
154 if (MSI->isVolatile()) in analyzeGlobalAux()
/external/skia/src/core/
DSkBitmapProvider.cpp28 bool SkBitmapProvider::isVolatile() const { in isVolatile() function in SkBitmapProvider
31 return bm ? bm->isVolatile() : false; in isVolatile()
/external/llvm/lib/Target/X86/
DX86SelectionDAGInfo.h37 SDValue Size, unsigned Align, bool isVolatile,
42 SDValue Size, unsigned Align, bool isVolatile,
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86SelectionDAGInfo.h41 bool isVolatile,
49 bool isVolatile, bool AlwaysInline,
DX86SelectionDAGInfo.cpp34 bool isVolatile, in EmitTargetCodeForMemset() argument
167 Align, isVolatile, DstPtrInfo.getWithOffset(Offset)); in EmitTargetCodeForMemset()
178 bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy() argument
252 Align, isVolatile, AlwaysInline, in EmitTargetCodeForMemcpy()
/external/llvm/include/llvm/CodeGen/
DSelectionDAGTargetInfo.h52 unsigned Align, bool isVolatile, in EmitTargetCodeForMemcpy() argument
67 SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, in EmitTargetCodeForMemmove() argument
81 unsigned Align, bool isVolatile, in EmitTargetCodeForMemset() argument
/external/llvm/lib/IR/
DInstruction.cpp351 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() && in haveSameSpecialState()
357 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() && in haveSameSpecialState()
381 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() && in haveSameSpecialState()
390 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() && in haveSameSpecialState()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMSelectionDAGInfo.cpp33 bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy() argument
69 SrcPtrInfo.getWithOffset(SrcOff), isVolatile, in EmitTargetCodeForMemcpy()
82 isVolatile, false, 0); in EmitTargetCodeForMemcpy()
145 unsigned Align, bool isVolatile, in EmitTargetCodeForMemset() argument
DARMSelectionDAGInfo.h52 bool isVolatile, bool AlwaysInline,
62 bool isVolatile,
/external/jdiff/src/jdiff/
DFieldAPI.java47 boolean isTransient, boolean isVolatile, in FieldAPI() argument
52 isVolatile_ = isVolatile; in FieldAPI()
/external/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp421 bool isVolatile() const { in isVolatile() function in __anon59dad36c0311::EarlyCSE::ParseMemoryInst
427 return LI->isVolatile(); in isVolatile()
429 return SI->isVolatile(); in isVolatile()
623 if (MemInst.isVolatile() || !MemInst.isUnordered()) { in processNode()
641 !MemInst.isVolatile() && MemInst.isUnordered() && in processNode()
720 !MemInst.isVolatile() && MemInst.isUnordered()) { in processNode()
752 !LastStoreMemInst.isVolatile() && in processNode()
782 if (MemInst.isUnordered() && !MemInst.isVolatile()) in processNode()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DLegalizeTypesGeneric.cpp213 bool isVolatile = LD->isVolatile(); in ExpandRes_NormalLoad() local
219 isVolatile, isNonTemporal, Alignment); in ExpandRes_NormalLoad()
227 isVolatile, isNonTemporal, in ExpandRes_NormalLoad()
398 bool isVolatile = St->isVolatile(); in ExpandOp_NormalStore() local
411 isVolatile, isNonTemporal, Alignment); in ExpandOp_NormalStore()
418 isVolatile, isNonTemporal, in ExpandOp_NormalStore()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeTypesGeneric.cpp266 bool isVolatile = LD->isVolatile(); in ExpandRes_NormalLoad() local
274 isVolatile, isNonTemporal, isInvariant, Alignment, in ExpandRes_NormalLoad()
283 isVolatile, isNonTemporal, isInvariant, in ExpandRes_NormalLoad()
481 bool isVolatile = St->isVolatile(); in ExpandOp_NormalStore() local
495 isVolatile, isNonTemporal, Alignment, AAInfo); in ExpandOp_NormalStore()
501 isVolatile, isNonTemporal, in ExpandOp_NormalStore()
/external/guava/guava/src/com/google/common/reflect/
DElement.java144 final boolean isVolatile() { in isVolatile() method in Element
145 return Modifier.isVolatile(getModifiers()); in isVolatile()

12345678910