HomeSort by relevance Sort by last modified time
    Searched refs:isVolatile (Results 1 - 25 of 250) sorted by null

1 2 3 4 5 6 7 8 910

  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.h 38 bool isVolatile,
45 bool isVolatile, bool AlwaysInline,
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.h 26 unsigned Align, bool isVolatile,
AArch64SelectionDAGInfo.cpp 21 SDValue Size, unsigned Align, bool isVolatile,
  /external/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.h 28 bool isVolatile, bool AlwaysInline,
HexagonSelectionDAGInfo.cpp 24 bool isVolatile, bool AlwaysInline,
  /external/llvm/lib/Target/XCore/
XCoreSelectionDAGInfo.h 30 SDValue Op3, unsigned Align, bool isVolatile,
XCoreSelectionDAGInfo.cpp 22 bool isVolatile, bool AlwaysInline,
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.h 45 bool isVolatile, bool AlwaysInline,
52 SDValue Size, unsigned Align, bool isVolatile,
61 bool isVolatile,
  /external/skia/src/core/
SkBitmapProvider.h 30 bool isVolatile() const;
SkBitmapProvider.cpp 55 bool SkBitmapProvider::isVolatile() const {
59 return fBitmap.isVolatile();
  /external/llvm/include/llvm/Target/
TargetSelectionDAGInfo.h 52 SDValue Op3, unsigned Align, bool isVolatile,
69 SDValue Op3, unsigned Align, bool isVolatile,
85 SDValue Op3, unsigned Align, bool isVolatile,
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
EncodedField.java 43 public boolean isVolatile() {
  /external/jdiff/src/jdiff/
FieldAPI.java 47 boolean isTransient, boolean isVolatile,
52 isVolatile_ = isVolatile;
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAlloca.cpp 88 if (LI && LI->getPointerOperand() == allocaInst && !LI->isVolatile()) {
93 if (SI && SI->getPointerOperand() == allocaInst && !SI->isVolatile()) {
NVPTXLowerAggrCopies.cpp 295 /* 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/
GrStencilAndCoverPathRenderer.cpp 51 bool isVolatile;
52 GrPath::ComputeKey(skPath, stroke, &key, &isVolatile);
57 if (!isVolatile) {
  /external/skia/tests/
GpuDrawPathTest.cpp 106 bool isVolatile;
109 GrPath::ComputeKey(path1, stroke, &key1, &isVolatile);
110 GrPath::ComputeKey(path2, stroke, &key2, &isVolatile);
  /external/guava/guava/src/com/google/common/reflect/
Element.java 144 final boolean isVolatile() {
145 return Modifier.isVolatile(getModifiers());
  /external/llvm/lib/IR/
Instruction.cpp 283 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() &&
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ModifierTest.java 98 assertTrue(Modifier.isVolatile(Modifier.VOLATILE));
99 assertTrue(!Modifier.isVolatile(-1 & ~Modifier.VOLATILE));
  /external/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 79 if (LI->isVolatile())
88 if (SI->isVolatile())
146 if (MTI->isVolatile())
154 if (MSI->isVolatile())
  /external/opencv3/modules/core/include/opencv2/core/cuda/
type_traits.hpp 71 enum { isVolatile = type_traits_detail::UnVolatile<T>::value };
  /external/llvm/include/llvm/CodeGen/
MachineMemOperand.h 177 bool isVolatile() const { return Flags & MOVolatile; }
188 bool isUnordered() const { return !isVolatile(); }
  /external/skia/src/gpu/
GrImageIDTextureAdjuster.cpp 27 if (fBmp->isVolatile()) {
76 if (!bitmap.isVolatile()) {
  /external/javassist/src/main/javassist/
Modifier.java 107 public static boolean isVolatile(int mod) {

Completed in 390 milliseconds

1 2 3 4 5 6 7 8 910