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

1234567

/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.h47 bool isVolatile, bool AlwaysInline,
56 bool isVolatile,
H A DARMSelectionDAGInfo.cpp32 bool isVolatile, bool AlwaysInline,
71 SrcPtrInfo.getWithOffset(SrcOff), isVolatile,
85 isVolatile, false, 0);
152 unsigned Align, bool isVolatile,
28 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
149 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/X86/
H A DX86SelectionDAGInfo.h39 bool isVolatile,
46 bool isVolatile, bool AlwaysInline,
/external/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.h28 unsigned Align, bool isVolatile,
H A DAArch64SelectionDAGInfo.cpp26 SDValue Size, unsigned Align, bool isVolatile,
24 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.h30 bool isVolatile, bool AlwaysInline,
H A DHexagonSelectionDAGInfo.cpp31 bool isVolatile, bool AlwaysInline,
29 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/XCore/
H A DXCoreSelectionDAGInfo.h32 SDValue Op3, unsigned Align, bool isVolatile,
H A DXCoreSelectionDAGInfo.cpp28 bool isVolatile, bool AlwaysInline,
26 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/Transforms/Utils/
H A DGlobalStatus.cpp75 if (LI->isVolatile())
84 if (SI->isVolatile())
142 if (MTI->isVolatile())
150 if (MSI->isVolatile())
/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
H A DAPIHandler.java131 boolean isVolatile = false;
133 isVolatile = true;
135 XMLToAPI.addField(fieldName, fieldType, isTransient, isVolatile,
/external/llvm/include/llvm/Target/
H A DTargetSelectionDAGInfo.h59 SDValue Op3, unsigned Align, bool isVolatile,
76 SDValue Op3, unsigned Align, bool isVolatile,
92 SDValue Op3, unsigned Align, bool isVolatile,
56 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
73 EmitTargetCodeForMemmove(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
89 EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/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/llvm/lib/IR/
H A DInstruction.cpp267 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
273 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
296 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
305 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
H A DIRBuilder.cpp67 bool isVolatile, MDNode *TBAATag, MDNode *ScopeTag,
70 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) };
92 bool isVolatile, MDNode *TBAATag, MDNode *TBAAStructTag,
97 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
123 bool isVolatile, MDNode *TBAATag, MDNode *ScopeTag,
128 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
66 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, bool isVolatile, MDNode *TBAATag, MDNode *ScopeTag, MDNode *NoAliasTag) argument
91 CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align, bool isVolatile, MDNode *TBAATag, MDNode *TBAAStructTag, MDNode *ScopeTag, MDNode *NoAliasTag) argument
122 CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align, bool isVolatile, MDNode *TBAATag, MDNode *ScopeTag, MDNode *NoAliasTag) argument
/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h174 bool isVolatile() const { return Flags & MOVolatile; } function in class:llvm::MachineMemOperand
185 bool isUnordered() const { return !isVolatile(); }
/external/javassist/src/main/javassist/
H A DModifier.java107 public static boolean isVolatile(int mod) { method in class:Modifier
/external/jetty/src/java/org/eclipse/jetty/io/
H A DBuffer.java181 boolean isVolatile(); method in interface:Buffer
H A DByteArrayBuffer.java39 protected ByteArrayBuffer(int size, int access, boolean isVolatile) argument
41 this(new byte[size],0,0,access, isVolatile);
63 public ByteArrayBuffer(byte[] bytes, int index, int length, int access, boolean isVolatile) argument
65 super(READWRITE, isVolatile);
H A DThreadLocalBuffers.java106 if (buffer.isVolatile() || buffer.isImmutable())
H A DPooledBuffers.java98 if (buffer.isVolatile() || buffer.isImmutable())
H A DView.java156 * @return Whether the underlying buffer is {@link Buffer#isVolatile volatile}
159 public boolean isVolatile() method in class:View
/external/clang/lib/CodeGen/
H A DCGCall.h167 bool isVolatile() const { return Value.getInt(); } function in class:clang::CodeGen::ReturnValueSlot
/external/doclava/src/com/google/doclava/
H A DFieldInfo.java33 boolean isFinal, boolean isStatic, boolean isTransient, boolean isVolatile,
40 mIsVolatile = isVolatile;
48 isVolatile(), isSynthetic(), mType, getRawCommentText(), mConstantValue, position(),
402 public boolean isVolatile() { method in class:FieldInfo
31 FieldInfo(String name, ClassInfo containingClass, ClassInfo realContainingClass, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isFinal, boolean isStatic, boolean isTransient, boolean isVolatile, boolean isSynthetic, TypeInfo type, String rawCommentText, Object constantValue, SourcePositionInfo position, ArrayList<AnnotationInstanceInfo> annotations) argument

Completed in 701 milliseconds

1234567