Searched defs:isVolatile (Results 1 - 25 of 46) sorted by relevance

12

/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 DXMLToAPI.java313 boolean isVolatile, String value, Modifiers modifiers) {
317 api_.currField_ = new FieldAPI(name, t, isTransient, isVolatile, value, modifiers);
312 addField(String name, String type, boolean isTransient, boolean isVolatile, String value, Modifiers modifiers) argument
/external/llvm/include/llvm/Target/
H A DTargetSelectionDAGInfo.h60 SDValue Op3, unsigned Align, bool isVolatile,
77 SDValue Op3, unsigned Align, bool isVolatile,
93 SDValue Op3, unsigned Align, bool isVolatile,
57 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
74 EmitTargetCodeForMemmove(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
90 EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/external/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp32 bool isVolatile, bool AlwaysInline,
30 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/javassist/src/main/javassist/
H A DModifier.java107 public static boolean isVolatile(int mod) { method in class:Modifier
/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h150 bool isVolatile() const { return Flags & MOVolatile; } function in class:llvm::MachineMemOperand
161 bool isUnordered() const { return !isVolatile(); }
/external/llvm/lib/IR/
H A DIRBuilder.cpp65 bool isVolatile, MDNode *TBAATag) {
67 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) };
83 bool isVolatile, MDNode *TBAATag, MDNode *TBAAStructTag) {
87 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
107 bool isVolatile, MDNode *TBAATag) {
111 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
64 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, bool isVolatile, MDNode *TBAATag) argument
82 CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align, bool isVolatile, MDNode *TBAATag, MDNode *TBAAStructTag) argument
106 CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align, bool isVolatile, MDNode *TBAATag) argument
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp33 bool isVolatile, bool AlwaysInline,
69 SrcPtrInfo.getWithOffset(SrcOff), isVolatile,
82 isVolatile, false, 0);
146 unsigned Align, bool isVolatile,
29 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
143 EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/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(),
397 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
H A DInfoBuilder.java757 modifiers.isVolatile(), modifiers.isSynthetic(),
1934 public boolean isVolatile() { method in class:InfoBuilder.Modifiers
/external/llvm/include/llvm/IR/
H A DIntrinsicInst.h134 bool isVolatile() const { function in class:llvm::MemIntrinsic
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp34 bool isVolatile,
170 Align, isVolatile, DstPtrInfo.getWithOffset(Offset));
181 bool isVolatile, bool AlwaysInline,
263 Align, isVolatile, AlwaysInline,
30 EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
178 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/clang/lib/Basic/
H A DFileManager.cpp502 bool isVolatile) {
509 if (isVolatile)
501 getBufferForFile(const FileEntry *Entry, std::string *ErrorStr, bool isVolatile) argument
H A DSourceManager.cpp100 bool isVolatile = SM.userFilesAreVolatile() && !IsSystemFile; local
103 isVolatile));
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp181 bool isVolatile = LD->isVolatile(); local
185 isVolatile = false;
234 SDValue Ops[] = { getI32Imm(isVolatile),
254 SDValue Ops[] = { getI32Imm(isVolatile),
286 SDValue Ops[] = { getI32Imm(isVolatile),
317 SDValue Ops[] = { getI32Imm(isVolatile),
356 bool IsVolatile = MemSD->isVolatile();
718 bool isVolatile = ST->isVolatile(); local
[all...]
/external/clang/lib/CodeGen/
H A DCGCall.h296 bool isVolatile() const { return Value.getInt(); } function in class:clang::CodeGen::ReturnValueSlot
H A DCGExprComplex.cpp292 bool isVolatile = lvalue.isVolatileQualified(); local
296 if (!IgnoreReal || isVolatile) {
299 Real = Builder.CreateLoad(RealP, isVolatile, SrcPtr->getName() + ".real");
302 if (!IgnoreImag || isVolatile) {
305 Imag = Builder.CreateLoad(ImagP, isVolatile, SrcPtr->getName() + ".imag");
H A DCGValue.h228 bool isVolatile() const { function in class:clang::CodeGen::LValue
445 bool isVolatile() const { function in class:clang::CodeGen::AggValueSlot
485 return RValue::getAggregate(getAddr(), isVolatile());
H A DCGDecl.cpp711 bool isVolatile, CGBuilderTy &Builder) {
718 Builder.CreateStore(Init, Loc, isVolatile);
730 isVolatile, Builder);
744 isVolatile, Builder);
1054 bool isVolatile = type.isVolatileQualified(); local
1069 alignment.getQuantity(), isVolatile);
1073 emitStoresForInitAfterMemset(constant, Loc, isVolatile, Builder);
1091 isVolatile);
710 emitStoresForInitAfterMemset(llvm::Constant *Init, llvm::Value *Loc, bool isVolatile, CGBuilderTy &Builder) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp320 ST->isVolatile(), ST->isNonTemporal(), Alignment);
355 ST->isVolatile(), ST->isNonTemporal(),
378 MemVT, ST->isVolatile(),
406 ST->isVolatile(), ST->isNonTemporal(), Alignment);
412 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
438 LD->isVolatile(),
471 LD->isVolatile(), LD->isNonTemporal(),
489 MemVT, LD->isVolatile(),
534 NewLoadedVT, LD->isVolatile(),
540 NewLoadedVT, LD->isVolatile(),
652 bool isVolatile = ST->isVolatile(); local
705 bool isVolatile = ST->isVolatile(); local
798 ExtraVT, isVolatile, isNonTemporal, local
[all...]
H A DLegalizeTypesGeneric.cpp255 bool isVolatile = LD->isVolatile(); local
262 isVolatile, isNonTemporal, isInvariant, Alignment);
270 isVolatile, isNonTemporal, isInvariant,
441 bool isVolatile = St->isVolatile(); local
454 isVolatile, isNonTemporal, Alignment);
461 isVolatile, isNonTemporal,
H A DLegalizeVectorOps.cpp418 LD->isVolatile(), LD->isNonTemporal(),
428 LoadVT, LD->isVolatile(),
499 LD->isVolatile(), LD->isNonTemporal(),
530 bool isVolatile = ST->isVolatile(); local
559 isVolatile, isNonTemporal, Alignment);
/external/clang/lib/Parse/
H A DParseStmt.cpp1810 bool isVolatile = DS.getTypeQualifiers() & DeclSpec::TQ_volatile; local
1834 return Actions.ActOnGCCAsmStmt(AsmLoc, /*isSimple*/ true, isVolatile,
1898 return Actions.ActOnGCCAsmStmt(AsmLoc, false, isVolatile, NumOutputs,
/external/skia/legacy/src/core/
H A DSkBitmap.cpp566 bool SkBitmap::isVolatile() const { function in class:SkBitmap
570 void SkBitmap::setIsVolatile(bool isVolatile) { argument
571 if (isVolatile) {
824 dst.setIsVolatile(this->isVolatile());
/external/skia/src/core/
H A DSkBitmap.cpp573 bool SkBitmap::isVolatile() const { function in class:SkBitmap
577 void SkBitmap::setIsVolatile(bool isVolatile) { argument
578 if (isVolatile) {
928 dst.setIsVolatile(this->isVolatile());
977 dst.setIsVolatile(this->isVolatile());

Completed in 1533 milliseconds

12