OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getSemantics
(Results
1 - 25
of
34
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APFloat.h
27
if (usesLayout<IEEEFloat>(
getSemantics
())) \
29
if (usesLayout<DoubleAPFloat>(
getSemantics
())) \
376
const fltSemantics &
getSemantics
() const { return *semantics; }
853
assert(&
getSemantics
() == &RHS.
getSemantics
() &&
855
if (usesLayout<IEEEFloat>(
getSemantics
()))
857
if (usesLayout<DoubleAPFloat>(
getSemantics
()))
973
assert(&
getSemantics
() == &RHS.
getSemantics
() &&
975
if (usesLayout<IEEEFloat>(
getSemantics
()))
[
all
...]
APFixedPoint.h
120
FixedPointSemantics
getSemantics
() const { return Sema; }
/src/external/apache2/llvm/dist/clang/include/clang/AST/
OptionalDiagnostic.h
57
unsigned precision = llvm::APFloat::semanticsPrecision(F.
getSemantics
());
APValue.h
605
assert(&R.
getSemantics
() == &I.
getSemantics
() &&
Expr.h
1644
return APFloatStorage::getValue(
getSemantics
());
1647
assert(&
getSemantics
() == &Val.
getSemantics
() && "Inconsistent semantics");
1665
const llvm::fltSemantics &
getSemantics
() const {
/src/external/apache2/llvm/dist/llvm/lib/Support/
APFixedPoint.cpp
178
auto CommonFXSema = Sema.getCommonSemantics(Other.
getSemantics
());
202
auto CommonFXSema = Sema.getCommonSemantics(Other.
getSemantics
());
226
auto CommonFXSema = Sema.getCommonSemantics(Other.
getSemantics
());
283
auto CommonFXSema = Sema.getCommonSemantics(Other.
getSemantics
());
511
const fltSemantics &FloatSema = Value.
getSemantics
();
APFloat.cpp
31
if (usesLayout<IEEEFloat>(
getSemantics
())) \
33
if (usesLayout<DoubleAPFloat>(
getSemantics
())) \
4176
int SignificandBits = Arg.
getSemantics
().precision - 1;
4184
auto MaxExp = X.
getSemantics
().maxExponent;
4185
auto MinExp = X.
getSemantics
().minExponent;
4193
int SignificandBits = X.
getSemantics
().precision - 1;
4255
assert(&Floats[0].
getSemantics
() == &semIEEEdouble);
4256
assert(&Floats[1].
getSemantics
() == &semIEEEdouble);
4403
assert(&A.
getSemantics
() == &semIEEEdouble);
4404
assert(&AA.
getSemantics
() == &semIEEEdouble)
[
all
...]
Z3Solver.cpp
750
getFloatSort(llvm::APFloat::semanticsSizeInBits(Float.
getSemantics
()));
796
if (useSemantics && !areEquivalent(Float.
getSemantics
(), Semantics)) {
/src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyInstPrinter.cpp
270
if (FP.isNaN() && !FP.bitwiseIsEqual(APFloat::getQNaN(FP.
getSemantics
())) &&
272
APFloat::getQNaN(FP.
getSemantics
(), /*Negative=*/true))) {
/src/external/apache2/llvm/dist/llvm/lib/IR/
Constants.cpp
1047
Type *Ty = Type::getFloatingPointTy(Context, V.
getSemantics
());
1066
assert(&V.
getSemantics
() == &Ty->getFltSemantics() &&
1612
if (&Val2.
getSemantics
() == &APFloat::IEEEhalf())
1618
if (&Val2.
getSemantics
() == &APFloat::BFloat())
1624
if (&Val2.
getSemantics
() == &APFloat::IEEEsingle())
1630
if (&Val2.
getSemantics
() == &APFloat::IEEEhalf() ||
1631
&Val2.
getSemantics
() == &APFloat::BFloat() ||
1632
&Val2.
getSemantics
() == &APFloat::IEEEsingle() ||
1633
&Val2.
getSemantics
() == &APFloat::IEEEdouble())
1639
return &Val2.
getSemantics
() == &APFloat::IEEEhalf() |
[
all
...]
AsmWriter.cpp
1359
if (&APF.
getSemantics
() == &APFloat::IEEEsingle() ||
1360
&APF.
getSemantics
() == &APFloat::IEEEdouble()) {
1367
bool isDouble = &APF.
getSemantics
() == &APFloat::IEEEdouble();
1417
if (&APF.
getSemantics
() == &APFloat::x87DoubleExtended()) {
1424
} else if (&APF.
getSemantics
() == &APFloat::IEEEquad()) {
1430
} else if (&APF.
getSemantics
() == &APFloat::PPCDoubleDouble()) {
1436
} else if (&APF.
getSemantics
() == &APFloat::IEEEhalf()) {
1440
} else if (&APF.
getSemantics
() == &APFloat::BFloat()) {
/src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp
4521
APFloat One(Value.
getSemantics
(), 1);
12546
LHS.FloatImag = APFloat(LHS.FloatReal.
getSemantics
());
12558
RHS.FloatImag = APFloat(RHS.FloatReal.
getSemantics
());
13474
APFixedPoint Result(LHSFX.
getSemantics
());
13502
FixedPointSemantics LHSSema = LHSFX.
getSemantics
();
13857
Result.FloatReal = APFloat(Imag.
getSemantics
());
13947
Result.FloatImag = APFloat(Real.
getSemantics
());
14035
Result.FloatImag = APFloat(Real.
getSemantics
());
14050
RHS.FloatImag = APFloat(Real.
getSemantics
());
14121
APFloat(A.
getSemantics
(), A.isInfinity() ? 1 : 0), A)
[
all
...]
MicrosoftMangle.cpp
813
switch (APFloat::SemanticsToEnum(Number.
getSemantics
())) {
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGDumper.cpp
616
if (&CSDN->getValueAPF().
getSemantics
() == &APFloat::IEEEsingle())
618
else if (&CSDN->getValueAPF().
getSemantics
() == &APFloat::IEEEdouble())
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
FunctionComparator.cpp
82
const fltSemantics &SL = L.
getSemantics
(), &SR = R.
getSemantics
();
SimplifyLibCalls.cpp
1536
BaseR.convert(BaseF->
getSemantics
(), APFloat::rmTowardZero, &Ignored);
1723
APFloat LimF(ExpoF->
getSemantics
(), 33),
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp
285
convertToFpType(T.
getSemantics
());
291
T.add(createAPFloatFromInt(T.
getSemantics
(), That.IntVal), RndMode);
311
isInt() ? That.getFpVal().
getSemantics
() : getFpVal().
getSemantics
();
386
Addend0.set(APFloat(C0->getValueAPF().
getSemantics
()), nullptr);
InstCombineCompares.cpp
5860
int MaxExponent = ilogb(APFloat::getLargest(RHS.
getSemantics
()));
5920
APFloat SMax(RHS.
getSemantics
());
5932
APFloat UMax(RHS.
getSemantics
());
5945
APFloat SMin(RHS.
getSemantics
());
5956
APFloat UMin(RHS.
getSemantics
());
/src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h
1782
if ((&Node.
getSemantics
()) == &llvm::APFloat::IEEEsingle())
1784
if ((&Node.
getSemantics
()) == &llvm::APFloat::IEEEdouble())
1791
if ((&Node.
getSemantics
()) == &llvm::APFloat::IEEEsingle())
1793
if ((&Node.
getSemantics
()) == &llvm::APFloat::IEEEdouble())
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp
1958
APFloat AlmostOne(U.
getSemantics
(), 1);
2005
U = APFloat::getQNaN(U.
getSemantics
());
2625
const fltSemantics &Sem = S0.
getSemantics
();
3090
return !(Op < APFloat(Op.
getSemantics
(), "-1") ||
3091
Op > APFloat(Op.
getSemantics
(), "1"));
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Constants.h
321
FV.convert(Val.
getSemantics
(), APFloat::rmNearestTiesToEven, &ignored);
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUInstCombineIntrinsic.cpp
210
APFloat Val(ArgVal.
getSemantics
(), 1);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
MachineIRBuilder.cpp
289
assert(APFloat::getSizeInBits(Val.getValueAPF().
getSemantics
())
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprConstant.cpp
2063
if (&Init.
getSemantics
() == &llvm::APFloat::IEEEhalf() &&
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
642
E->setValue(Record.getContext(), Record.readAPFloat(E->
getSemantics
()));
Completed in 60 milliseconds
1
2
Indexes created Mon Jun 08 00:24:58 UTC 2026