Home
last modified time | relevance | path

Searched refs:Sem (Results 1 – 22 of 22) sorted by relevance

/freebsd/sys/contrib/dev/acpica/os_specific/service_layers/
H A Dosunixxf.c882 sem_t *Sem; in AcpiOsCreateSemaphore() local
899 if (!Sem) in AcpiOsCreateSemaphore()
908 if (!Sem) in AcpiOsCreateSemaphore()
915 AcpiOsFree (Sem); in AcpiOsCreateSemaphore()
920 *OutHandle = (ACPI_HANDLE) Sem; in AcpiOsCreateSemaphore()
944 if (!Sem) in AcpiOsDeleteSemaphore()
950 if (sem_close (Sem) == -1) in AcpiOsDeleteSemaphore()
955 if (sem_destroy (Sem) == -1) in AcpiOsDeleteSemaphore()
993 if (!Sem) in AcpiOsWaitSemaphore()
1124 if (!Sem) in AcpiOsSignalSemaphore()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DOpDescriptor.cpp28 auto &Sem = T->getFltSemantics(); in makeConstantsWithType() local
29 Cs.push_back(ConstantFP::get(Ctx, APFloat::getZero(Sem))); in makeConstantsWithType()
30 Cs.push_back(ConstantFP::get(Ctx, APFloat(Sem, 1))); in makeConstantsWithType()
31 Cs.push_back(ConstantFP::get(Ctx, APFloat(Sem, 42))); in makeConstantsWithType()
32 Cs.push_back(ConstantFP::get(Ctx, APFloat::getLargest(Sem))); in makeConstantsWithType()
33 Cs.push_back(ConstantFP::get(Ctx, APFloat::getSmallest(Sem))); in makeConstantsWithType()
34 Cs.push_back(ConstantFP::get(Ctx, APFloat::getInf(Sem))); in makeConstantsWithType()
35 Cs.push_back(ConstantFP::get(Ctx, APFloat::getNaN(Sem))); in makeConstantsWithType()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DFloating.h37 static Floating getInf(const llvm::fltSemantics &Sem) { in getInf() argument
38 return Floating(APFloat::getInf(Sem)); in getInf()
55 Floating toSemantics(const llvm::fltSemantics *Sem, in toSemantics() argument
59 Copy.convert(*Sem, RM, &LosesInfo); in toSemantics()
123 APFloat F = APFloat(Sem); in fromIntegral()
130 const llvm::fltSemantics &Sem) { in bitcastFromMemory() argument
131 size_t Size = APFloat::semanticsSizeInBits(Sem); in bitcastFromMemory()
135 return Floating(APFloat(Sem, API)); in bitcastFromMemory()
154 const llvm::fltSemantics *Sem; in deserialize() local
155 std::memcpy((void *)&Sem, Buff, sizeof(void *)); in deserialize()
[all …]
H A DInterp.h1583 inline bool CastFP(InterpState &S, CodePtr OpPC, const llvm::fltSemantics *Sem, in CastFP() argument
1586 Floating Result = F.toSemantics(Sem, RM); in CastFP()
1609 const llvm::fltSemantics *Sem, in CastIntegralFloating() argument
1615 auto Status = Floating::fromIntegral(FromAP, *Sem, RM, Result); in CastIntegralFloating()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h288 static unsigned getSizeInBits(const fltSemantics &Sem);
958 APFloat Val(Sem, uninitialized);
967 APFloat Val(Sem, uninitialized);
981 return getQNaN(Sem, Negative, &intPayload);
983 return getQNaN(Sem, Negative, nullptr);
990 APFloat Val(Sem, uninitialized);
998 APFloat Val(Sem, uninitialized);
1007 APFloat Val(Sem, uninitialized);
1017 APFloat Val(Sem, uninitialized);
1026 static APFloat getSmallestNormalized(const fltSemantics &Sem,
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp100 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEhalf()) in PickFP()
102 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEsingle()) in PickFP()
117 DenormMin = PickFP(Sem, "5.9604644775390625e-8", "1.40129846e-45", in DefineFloatMacros()
121 int Digits = PickFP(Sem, 3, 6, 15, 18, 31, 33); in DefineFloatMacros()
122 int DecimalDigits = PickFP(Sem, 5, 9, 17, 21, 33, 36); in DefineFloatMacros()
123 Epsilon = PickFP(Sem, "9.765625e-4", "1.19209290e-7", in DefineFloatMacros()
127 int MantissaDigits = PickFP(Sem, 11, 24, 53, 64, 106, 113); in DefineFloatMacros()
128 int Min10Exp = PickFP(Sem, -4, -37, -307, -4931, -291, -4931); in DefineFloatMacros()
129 int Max10Exp = PickFP(Sem, 4, 38, 308, 4932, 308, 4932); in DefineFloatMacros()
130 int MinExp = PickFP(Sem, -13, -125, -1021, -16381, -968, -16381); in DefineFloatMacros()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp332 return Sem.sizeInBits; in getSizeInBits()
3864 if (Sem == &semIEEEhalf) in initFromAPInt()
3866 if (Sem == &semBFloat) in initFromAPInt()
3868 if (Sem == &semIEEEsingle) in initFromAPInt()
3870 if (Sem == &semIEEEdouble) in initFromAPInt()
3874 if (Sem == &semIEEEquad) in initFromAPInt()
3878 if (Sem == &semFloat8E5M2) in initFromAPInt()
3880 if (Sem == &semFloat8E5M2FNUZ) in initFromAPInt()
3882 if (Sem == &semFloat8E4M3FN) in initFromAPInt()
3888 if (Sem == &semFloatTF32) in initFromAPInt()
[all …]
/freebsd/lib/libc/nls/
H A Dpt_BR.ISO8859-1.msg62 28 Sem espa�o no dispositivo
116 55 Sem espa�o de buffer dispon�vel
136 65 Sem rota para o host
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTDC.cpp134 auto &Sem = Op0->getType()->getFltSemantics(); in convertFCmp() local
135 APFloat Smallest = APFloat::getSmallestNormalized(Sem); in convertFCmp()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp850 const fltSemantics &Sem = CE->getOperand(0)->getType()->getFltSemantics(); in getConstantValue() local
851 APFloat apfLHS = APFloat(Sem, LHS.IntVal); in getConstantValue()
855 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue()
859 apfLHS.subtract(APFloat(Sem, RHS.IntVal), in getConstantValue()
864 apfLHS.multiply(APFloat(Sem, RHS.IntVal), in getConstantValue()
869 apfLHS.divide(APFloat(Sem, RHS.IntVal), in getConstantValue()
874 apfLHS.mod(APFloat(Sem, RHS.IntVal)); in getConstantValue()
/freebsd/share/doc/psd/05.sysman/
H A Dspell.ok88 Sem
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordReader.h299 llvm::APFloat readAPFloat(const llvm::fltSemantics &Sem);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp105 void convertToFpType(const fltSemantics &Sem);
110 APFloat createAPFloatFromInt(const fltSemantics &Sem, int Val);
242 void FAddendCoef::convertToFpType(const fltSemantics &Sem) { in convertToFpType() argument
248 new(P) APFloat(Sem, IntVal); in convertToFpType()
250 new(P) APFloat(Sem, 0 - IntVal); in convertToFpType()
256 APFloat FAddendCoef::createAPFloatFromInt(const fltSemantics &Sem, int Val) { in createAPFloatFromInt() argument
258 return APFloat(Sem, Val); in createAPFloatFromInt()
260 APFloat T(Sem, 0 - Val); in createAPFloatFromInt()
H A DInstCombineCasts.cpp1533 static bool fitsInFPType(ConstantFP *CFP, const fltSemantics &Sem) { in fitsInFPType() argument
1536 (void)F.convert(Sem, APFloat::rmNearestTiesToEven, &losesInfo); in fitsInFPType()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp2930 const fltSemantics &Sem = S0.getSemantics(); in ConstantFoldAMDGCNCubeIntrinsic() local
2931 APFloat MA(Sem), SC(Sem), TC(Sem); in ConstantFoldAMDGCNCubeIntrinsic()
2970 return APFloat(Sem, ID); in ConstantFoldAMDGCNCubeIntrinsic()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp2001 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(Ty); in checkTypeSupport() local
2002 if ((&Sem != &llvm::APFloat::PPCDoubleDouble() && in checkTypeSupport()
2004 (&Sem == &llvm::APFloat::PPCDoubleDouble() && in checkTypeSupport()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h1652 void setRawSemantics(llvm::APFloatBase::Semantics Sem) { in setRawSemantics() argument
1653 FloatingLiteralBits.Semantics = Sem; in setRawSemantics()
1664 void setSemantics(const llvm::fltSemantics &Sem) { in setSemantics() argument
1665 FloatingLiteralBits.Semantics = llvm::APFloatBase::SemanticsToEnum(Sem); in setSemantics()
H A DRecursiveASTVisitor.h636 if (auto Sem = ILE->isSemanticForm() ? ILE : ILE->getSemanticForm()) \
637 TRY_TO(WalkUpFrom##CLASS(Sem)); \
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp14368 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy); in TryEvaluateBuiltinNaN() local
14380 Result = llvm::APFloat::getSNaN(Sem, false, &fill); in TryEvaluateBuiltinNaN()
14382 Result = llvm::APFloat::getQNaN(Sem, false, &fill); in TryEvaluateBuiltinNaN()
14390 Result = llvm::APFloat::getQNaN(Sem, false, &fill); in TryEvaluateBuiltinNaN()
14392 Result = llvm::APFloat::getSNaN(Sem, false, &fill); in TryEvaluateBuiltinNaN()
14416 const llvm::fltSemantics &Sem = in VisitCallExpr() local
14418 Result = llvm::APFloat::getInf(Sem); in VisitCallExpr()
14539 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(E->getType()); in VisitUnaryImag() local
14540 Result = llvm::APFloat::getZero(Sem); in VisitUnaryImag()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp9316 llvm::APFloat ASTRecordReader::readAPFloat(const llvm::fltSemantics &Sem) { in readAPFloat() argument
9317 return llvm::APFloat(Sem, readAPInt()); in readAPFloat()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp21639 const fltSemantics &Sem = SelectionDAG::EVTToAPFloatSemantics(VT); in LowerFROUND() local
21642 Point5Pred.convert(Sem, APFloat::rmNearestTiesToEven, &Ignored); in LowerFROUND()
21695 const fltSemantics &Sem = SelectionDAG::EVTToAPFloatSemantics(VT); in LowerFABSorFNEG() local
21696 SDValue Mask = DAG.getConstantFP(APFloat(Sem, MaskElt), dl, LogicVT); in LowerFABSorFNEG()
21738 const fltSemantics &Sem = SelectionDAG::EVTToAPFloatSemantics(VT); in LowerFCOPYSIGN() local
21755 APFloat(Sem, APInt::getSignMask(EltSizeInBits)), dl, LogicVT); in LowerFCOPYSIGN()
21757 APFloat(Sem, APInt::getSignedMaxValue(EltSizeInBits)), dl, LogicVT); in LowerFCOPYSIGN()
/freebsd/contrib/one-true-awk/testdir/
H A Dbib25062 Which was the son of Cainan, which was the son of Arphaxad, which was the son of Sem, which was the…