Searched refs:isVolatile (Results 1 - 25 of 196) sorted by relevance

12345678

/external/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.h26 unsigned Align, bool isVolatile,
H A DAArch64SelectionDAGInfo.cpp21 SDValue Size, unsigned Align, bool isVolatile,
19 EmitTargetCodeForMemset( SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/external/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.h28 bool isVolatile, bool AlwaysInline,
H A DHexagonSelectionDAGInfo.cpp24 bool isVolatile, bool AlwaysInline,
22 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/client/
H A DField.java33 final boolean isVolatile; field in class:Field
40 boolean isProtected, boolean isPublic, boolean isStatic, boolean isTransient, boolean isVolatile, int getter, int setter,
52 this.isVolatile = isVolatile;
125 public boolean isVolatile () { method in class:Field
126 return isVolatile;
137 + isPublic + ", isStatic=" + isStatic + ", isTransient=" + isTransient + ", isVolatile=" + isVolatile + ", getter="
39 Field(String name, Class enclosingType, Class type, boolean isFinal, boolean isDefaultAccess, boolean isPrivate, boolean isProtected, boolean isPublic, boolean isStatic, boolean isTransient, boolean isVolatile, int getter, int setter, Class[] elementTypes, Annotation[] annotations) argument
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.h38 bool isVolatile,
45 bool isVolatile, bool AlwaysInline,
/external/llvm/lib/Target/XCore/
H A DXCoreSelectionDAGInfo.h30 SDValue Op3, unsigned Align, bool isVolatile,
H A DXCoreSelectionDAGInfo.cpp22 bool isVolatile, bool AlwaysInline,
20 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.h45 bool isVolatile, bool AlwaysInline,
52 SDValue Size, unsigned Align, bool isVolatile,
61 bool isVolatile,
/external/skia/src/core/
H A DSkBitmapProvider.h30 bool isVolatile() const;
H A DSkBitmapProvider.cpp55 bool SkBitmapProvider::isVolatile() const { function in class:SkBitmapProvider
59 return fBitmap.isVolatile();
/external/llvm/include/llvm/Target/
H A DTargetSelectionDAGInfo.h52 SDValue Op3, unsigned Align, bool isVolatile,
69 SDValue Op3, unsigned Align, bool isVolatile,
85 SDValue Op3, unsigned Align, bool isVolatile,
49 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
66 EmitTargetCodeForMemmove(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
82 EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/external/jdiff/src/jdiff/
H A DFieldAPI.java47 boolean isTransient, boolean isVolatile,
52 isVolatile_ = isVolatile;
46 FieldAPI(String name, String type, boolean isTransient, boolean isVolatile, String value, Modifiers modifiers) argument
/external/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAlloca.cpp88 if (LI && LI->getPointerOperand() == allocaInst && !LI->isVolatile()) {
93 if (SI && SI->getPointerOperand() == allocaInst && !SI->isVolatile()) {
H A DNVPTXLowerAggrCopies.cpp295 /* SrcIsVolatile */ LI->isVolatile(),
296 /* DstIsVolatile */ SI->isVolatile(),
311 /* SrcIsVolatile */ Memcpy->isVolatile(),
312 /* DstIsVolatile */ Memcpy->isVolatile(),
320 /* SrcIsVolatile */ Memmove->isVolatile(),
321 /* DstIsVolatile */ Memmove->isVolatile(),
/external/skia/src/gpu/batches/
H A DGrStencilAndCoverPathRenderer.cpp51 bool isVolatile; local
52 GrPath::ComputeKey(skPath, stroke, &key, &isVolatile);
57 if (!isVolatile) {
/external/skia/tests/
H A DGpuDrawPathTest.cpp106 bool isVolatile; local
109 GrPath::ComputeKey(path1, stroke, &key1, &isVolatile);
110 GrPath::ComputeKey(path2, stroke, &key2, &isVolatile);
/external/guava/guava/src/com/google/common/reflect/
H A DElement.java144 final boolean isVolatile() { method in class:Element
145 return Modifier.isVolatile(getModifiers());
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/reflect/
H A DField.java90 public boolean isVolatile () { method in class:Field
91 return field.isVolatile();
/external/llvm/lib/IR/
H A DInstruction.cpp283 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
289 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
313 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
322 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
/external/llvm/lib/Transforms/Utils/
H A DGlobalStatus.cpp79 if (LI->isVolatile())
88 if (SI->isVolatile())
146 if (MTI->isVolatile())
154 if (MSI->isVolatile())
/external/opencv3/modules/core/include/opencv2/core/cuda/
H A Dtype_traits.hpp71 enum { isVolatile = type_traits_detail::UnVolatile<T>::value }; enumerator in enum:cv::cuda::device::TypeTraits::__anon15632
/external/libgdx/gdx/src/com/badlogic/gdx/utils/reflect/
H A DField.java93 public boolean isVolatile () { method in class:Field
94 return Modifier.isVolatile(field.getModifiers());
/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h177 bool isVolatile() const { return Flags & MOVolatile; } function in class:llvm::MachineMemOperand
188 bool isUnordered() const { return !isVolatile(); }
/external/skia/src/gpu/
H A DGrImageIDTextureAdjuster.cpp27 if (fBmp->isVolatile()) {
76 if (!bitmap.isVolatile()) {

Completed in 1547 milliseconds

12345678