HomeSort by relevance Sort by last modified time
    Searched refs:Other (Results 201 - 225 of 330) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 338 // 64-bit FILD followed by conditional FADD for other targets.
341 // FILD for other targets.
449 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
450 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
560 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
564 // other SjLj exception interfaces are implemented and please don't build
568 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
597 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
599 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
616 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand)
    [all...]
X86ISelDAGToDAG.cpp 333 // If the other operand is a 8-bit immediate we should fold the immediate
347 // If the other operand is a TLS address, we should fold it instead.
386 CurDAG->getNode(ISD::TokenFactor, SDLoc(Load), MVT::Other, Ops);
529 // FPStack has extload and truncstore. SSE can fold direct loads into other
551 // anything below the conversion could be folded into other existing nodes.
655 // FIXME: This can be improved for kernel and other models?
751 // TODO: Which other code models can use this?
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/
nacl_llvm.mk 94 # $6 = Other Linker Args
  /external/chromium_org/v8/test/mjsunit/
debug-liveedit-restart-frame.js 10 // disclaimer in the documentation and/or other materials provided
118 print("Other: " + event);
md5.js 10 // disclaimer in the documentation and/or other materials provided
31 // Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
  /external/chromium_org/v8/test/webkit/fast/js/
regexp-unicode-handling.js 11 // documentation and/or other materials provided with the distribution.
33 // Other RegExs from Gmail source
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 146 CheckName(const CheckName &Other) : Name(Other.Name) {}
419 /// Unlike most other callbacks, any checker can simply implement the virtual
  /external/clang/utils/TableGen/
NeonEmitter.cpp 156 bool operator==(const Type &Other) const { return str() == Other.str(); }
157 bool operator!=(const Type &Other) const { return !operator==(Other); }
292 /// NeededEarly - set if any other intrinsic depends on this intrinsic.
408 bool operator<(const Intrinsic &Other) const {
410 if (Guard != Other.Guard)
411 return Guard < Other.Guard;
412 return Name < Other.Name;
    [all...]
  /external/llvm/include/llvm/CodeGen/PBQP/
Graph.h 229 Graph(const Graph &Other) {}
230 void operator=(const Graph &Other) {}
467 /// \brief Get the "other" node connected to this edge.
470 /// @return The iterator for the "other" node connected to this edge.
516 /// will appear in an iteration over the 'other', unnamed node's edges.
  /external/llvm/include/llvm/Object/
COFF.h 484 bool operator==(const ImportDirectoryEntryRef &Other) const;
508 bool operator==(const ExportDirectoryEntryRef &Other) const;
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGDumper.cpp 266 // Other operators
350 if (getValueType(i) == MVT::Other)
627 if (N->getOperand(i).getValueType() == MVT::Other)
SelectionDAG.cpp 774 // recursive merging of other unrelated nodes down the line.
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp     [all...]
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 44 case MVT::Other: return "UNKNOWN";
53 case MVT::Other: return "MVT::Other";
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/managed_bookmarks/
background.js 10 'Other Bookmarks': '2'
36 * A CallbackChain can be used to wrap other callbacks and perform a list of
261 this._root.appendChild(new Node(this._nodesMap, '2', 'Other Bookmarks'));
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/llvm/include/llvm/ADT/
StringRef.h 37 /// situations where the character data resides in some other buffer, whose
168 /// \param Other the string to compare this string against.
181 /// transform one of the given strings into the other. If zero,
183 unsigned edit_distance(StringRef Other, bool AllowReplacements = true,
  /external/llvm/include/llvm/IR/
DerivedTypes.h 183 /// other (if the struct is packed) or (if not packed) with padding between the
283 bool isLayoutIdentical(StructType *Other) const;
  /art/test/046-reflect/src/
Main.java 83 Class target = otherpackage.Other.class;
84 Object instance = new otherpackage.Other();
98 instance = otherpackage.Other.getInnerClassInstance();
215 System.out.println(" got the other expected access exc");
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 128 RedeclarableResult(const RedeclarableResult &Other)
129 : Reader(Other.Reader), FirstID(Other.FirstID), Owning(Other.Owning) ,
130 DeclKind(Other.DeclKind)
132 Other.Owning = false;
171 FindExistingResult(const FindExistingResult &Other)
172 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
    [all...]
  /external/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.cpp 91 unsigned Other = (Parent == Group1) ? Group2 : Group1;
92 GroupNodes.at(Other) = Parent;
99 // stay as is because there could be other GroupNodes referring to
287 // other types of edges.
604 // registers are available for the other group subregisters, then we
611 TRI->getMinimalPhysRegClass(SuperReg, MVT::Other);
839 // If the SUnit has other dependencies on the SUnit that
842 // units from being scheduled past each other
845 // Also, if there are dependencies on other SUnits with the
867 DEBUG(dbgs() << " (other dependency)\n")
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 1 //==-- RetainCountChecker.cpp - Checks for leaks and other issues -*- C++ -*--//
415 bool operator==(const RetainSummary &Other) const {
416 return Args == Other.Args && DefaultArgEffect == Other.DefaultArgEffect &&
417 Receiver == Other.Receiver && Ret == Other.Ret;
428 /// A retain summary is simple if it has no ArgEffects other than the default.
592 /// and all other data used by the checker.
    [all...]
  /external/clang/include/clang/AST/
Type.h 359 // If the other set doesn't have any non-boolean qualifiers, just
376 // If the other set doesn't have any non-boolean qualifiers, just
404 /// Generally this answers the question of whether an object with the other
406 bool compatiblyIncludes(Qualifiers other) const {
409 getAddressSpace() == other.getAddressSpace() &&
412 (getObjCGCAttr() == other.getObjCGCAttr() ||
413 !hasObjCGCAttr() || !other.hasObjCGCAttr()) &&
415 getObjCLifetime() == other.getObjCLifetime() &&
417 (((Mask & CVRMask) | (other.Mask & CVRMask)) == (Mask & CVRMask));
423 /// One set of Objective-C lifetime qualifiers compatibly includes the other
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp     [all...]

Completed in 1271 milliseconds

1 2 3 4 5 6 7 891011>>