reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
  212       return &getValue( V1 * V2 );
  215       if (V2 == 0) // Avoid division by zero
  217       return &getValue( V1 / V2 );
  220       if (V2 == 0) // Avoid division by zero
  222       return &getValue( V1 % V2 );
  225       return &getValue( V1 + V2 );
  228       return &getValue( V1 - V2 );
  234       if (V2.isSigned() && V2.isNegative())
  234       if (V2.isSigned() && V2.isNegative())
  237       uint64_t Amt = V2.getZExtValue();
  257       if (V2.isSigned() && V2.isNegative())
  257       if (V2.isSigned() && V2.isNegative())
  260       uint64_t Amt = V2.getZExtValue();
  269       return &getTruthValue( V1 < V2 );
  272       return &getTruthValue( V1 > V2 );
  275       return &getTruthValue( V1 <= V2 );
  278       return &getTruthValue( V1 >= V2 );
  281       return &getTruthValue( V1 == V2 );
  284       return &getTruthValue( V1 != V2 );
  289       return &getValue( V1 & V2 );
  292       return &getValue( V1 | V2 );
  295       return &getValue( V1 ^ V2 );