HomeSort by: relevance | last modified time | path
    Searched defs:Inverse (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
GraphTraits.h 12 // This file also defines the marker class Inverse that is used to iterate over
13 // graphs in a graph defined, inverse ordering...
81 // Inverse - This class is used as a little marker class to tell the graph
82 // iterator to iterate over the graph in a graph defined "Inverse" ordering.
83 // Not all graphs define an inverse ordering, and if they do, it depends on
91 // df_iterator<Inverse<Method*>> I = idf_begin(M), E = idf_end(M);
95 struct Inverse {
98 inline Inverse(const GraphType &G) : Graph(G) {}
101 // Provide a partial specialization of GraphTraits so that the inverse of an
102 // inverse falls back to the original graph
    [all...]
  /src/external/bsd/nvi/dist/gtk/
gtkviscreen.c 655 #define Inverse(screen,y,x) \
677 gchar inverse; local
678 inverse = Inverse(vi,y,x);
682 Inverse(vi,y,x+len) == inverse; ++len);
683 if (inverse) {
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.cpp 2269 // If the right hand side is a bitcast, try using its inverse to simplify
2278 Constant *Inverse = ConstantExpr::getBitCast(C1, CE2Op0->getType());
2279 return ConstantExpr::getICmp(pred, Inverse, CE2Op0);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 4832 bool Inverse = false;
4837 Inverse = true;
4843 Inverse = true;
4849 Inverse = true;
4854 if (Inverse) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 3626 bool Inverse = (N1C->isNullValue() && Cond == ISD::SETEQ) ||
3629 if (!Inverse)
5012 /// with the multiplicative inverse of the constant.
5035 // Calculate the multiplicative inverse, using Newton's method.
5460 // - P is the multiplicative inverse of D0 modulo 2^W
5533 assert(!P.isNullValue() && "No multiplicative inverse!"); // unreachable
5534 assert((D0 * P).isOneValue() && "Multiplicative inverse sanity check.");
5703 // - P is the multiplicative inverse of D0 modulo 2^W
5774 assert(!P.isNullValue() && "No multiplicative inverse!"); // unreachable
5775 assert((D0 * P).isOneValue() && "Multiplicative inverse sanity check.")
    [all...]

Completed in 51 milliseconds