OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:allowreciprocal
(Results
1 - 8
of
8
) sorted by null
/external/llvm/include/llvm/IR/
Operator.h
176
AllowReciprocal
= (1 << 4)
192
bool
allowReciprocal
() const { return 0 != (Flags &
AllowReciprocal
); }
199
void setAllowReciprocal() { Flags |=
AllowReciprocal
; }
250
(SubclassOptionalData & ~FastMathFlags::
AllowReciprocal
) |
251
(B * FastMathFlags::
AllowReciprocal
);
294
return (SubclassOptionalData & FastMathFlags::
AllowReciprocal
) != 0;
/external/llvm/unittests/IR/
IRBuilderTest.cpp
186
EXPECT_TRUE(Builder.getFastMathFlags().
AllowReciprocal
);
204
EXPECT_TRUE(Builder.getFastMathFlags().
AllowReciprocal
);
296
EXPECT_FALSE(Builder.getFastMathFlags().
allowReciprocal
());
310
EXPECT_TRUE(Builder.getFastMathFlags().
allowReciprocal
());
314
EXPECT_FALSE(Builder.getFastMathFlags().
allowReciprocal
());
/external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp
[
all
...]
/external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h
330
bool
AllowReciprocal
: 1;
342
AllowReciprocal
= false;
353
void setAllowReciprocal(bool b) {
AllowReciprocal
= b; }
363
bool hasAllowReciprocal() const { return
AllowReciprocal
; }
370
(NoSignedZeros << 6) | (
AllowReciprocal
<< 7);
[
all
...]
/frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp
562
Flags |= FastMathFlags::
AllowReciprocal
;
[
all
...]
/external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
824
Flags |= FastMathFlags::
AllowReciprocal
;
[
all
...]
/external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp
839
if (0 != (Val & FastMathFlags::
AllowReciprocal
))
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp
[
all
...]
Completed in 583 milliseconds