OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isExactlyValue
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/IR/
Constants.h
274
///
isExactlyValue
- We don't rely on operator== working on double values, as
278
/// because it's so convenient to write
isExactlyValue
(2.0), but please use
280
bool
isExactlyValue
(const APFloat &V) const;
282
bool
isExactlyValue
(double V) const {
286
return
isExactlyValue
(FV);
[
all
...]
/external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h
[
all
...]
/external/llvm/lib/IR/
Constants.cpp
650
bool ConstantFP::
isExactlyValue
(const APFloat &V) const {
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp
70
///
isExactlyValue
- We don't rely on operator== working on double values, as
74
bool ConstantFPSDNode::
isExactlyValue
(const APFloat& V) const {
[
all
...]
Completed in 56 milliseconds