Home
last modified time | relevance | path

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

/freebsd-11-stable/sys/contrib/dev/acpica/os_specific/service_layers/
HDosunixxf.c882 sem_t *Sem; in AcpiOsCreateSemaphore() local
898 Sem = sem_open (SemaphoreName, O_EXCL|O_CREAT, 0755, InitialUnits); in AcpiOsCreateSemaphore()
899 if (!Sem) in AcpiOsCreateSemaphore()
907 Sem = AcpiOsAllocate (sizeof (sem_t)); in AcpiOsCreateSemaphore()
908 if (!Sem) in AcpiOsCreateSemaphore()
913 if (sem_init (Sem, 0, InitialUnits) == -1) in AcpiOsCreateSemaphore()
915 AcpiOsFree (Sem); in AcpiOsCreateSemaphore()
920 *OutHandle = (ACPI_HANDLE) Sem; in AcpiOsCreateSemaphore()
941 sem_t *Sem = (sem_t *) Handle; in AcpiOsDeleteSemaphore() local
944 if (!Sem) in AcpiOsDeleteSemaphore()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/FuzzMutate/
HDOpDescriptor.cpp25 auto &Sem = T->getFltSemantics(); in makeConstantsWithType() local
26 Cs.push_back(ConstantFP::get(Ctx, APFloat::getZero(Sem))); in makeConstantsWithType()
27 Cs.push_back(ConstantFP::get(Ctx, APFloat::getLargest(Sem))); in makeConstantsWithType()
28 Cs.push_back(ConstantFP::get(Ctx, APFloat::getSmallest(Sem))); in makeConstantsWithType()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDAPFloat.h161 static Semantics SemanticsToEnum(const llvm::fltSemantics &Sem);
237 static unsigned getSizeInBits(const fltSemantics &Sem);
545 void initFromAPInt(const fltSemantics *Sem, const APInt &api);
875 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
876 APFloat Val(Sem, uninitialized);
884 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
885 APFloat Val(Sem, uninitialized);
895 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false,
899 return getQNaN(Sem, Negative, &intPayload);
901 return getQNaN(Sem, Negative, nullptr);
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
HDInitPreprocessor.cpp95 static T PickFP(const llvm::fltSemantics *Sem, T IEEEHalfVal, T IEEESingleVal, in PickFP() argument
98 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEhalf()) in PickFP()
100 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEsingle()) in PickFP()
102 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEdouble()) in PickFP()
104 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::x87DoubleExtended()) in PickFP()
106 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::PPCDoubleDouble()) in PickFP()
108 assert(Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEquad()); in PickFP()
113 const llvm::fltSemantics *Sem, StringRef Ext) { in DefineFloatMacros() argument
115 DenormMin = PickFP(Sem, "5.9604644775390625e-8", "1.40129846e-45", in DefineFloatMacros()
119 int Digits = PickFP(Sem, 3, 6, 15, 18, 31, 33); in DefineFloatMacros()
[all …]
/freebsd-11-stable/lib/libc/nls/
HDpt_BR.ISO8859-1.msg63 28 Sem espa�o no dispositivo
117 55 Sem espa�o de buffer dispon�vel
137 65 Sem rota para o host
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
HDAPFloat.cpp135 APFloatBase::SemanticsToEnum(const llvm::fltSemantics &Sem) { in SemanticsToEnum() argument
136 if (&Sem == &llvm::APFloat::IEEEhalf()) in SemanticsToEnum()
138 else if (&Sem == &llvm::APFloat::IEEEsingle()) in SemanticsToEnum()
140 else if (&Sem == &llvm::APFloat::IEEEdouble()) in SemanticsToEnum()
142 else if (&Sem == &llvm::APFloat::x87DoubleExtended()) in SemanticsToEnum()
144 else if (&Sem == &llvm::APFloat::IEEEquad()) in SemanticsToEnum()
146 else if (&Sem == &llvm::APFloat::PPCDoubleDouble()) in SemanticsToEnum()
205 unsigned APFloatBase::getSizeInBits(const fltSemantics &Sem) { in getSizeInBits() argument
206 return Sem.sizeInBits; in getSizeInBits()
3308 void IEEEFloat::initFromAPInt(const fltSemantics *Sem, const APInt &api) { in initFromAPInt() argument
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
HDSystemZTDC.cpp130 auto &Sem = Op0->getType()->getFltSemantics(); in convertFCmp() local
131 APFloat Smallest = APFloat::getSmallestNormalized(Sem); in convertFCmp()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
HDExecutionEngine.cpp844 const fltSemantics &Sem = CE->getOperand(0)->getType()->getFltSemantics(); in getConstantValue() local
845 APFloat apfLHS = APFloat(Sem, LHS.IntVal); in getConstantValue()
849 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); in getConstantValue()
853 apfLHS.subtract(APFloat(Sem, RHS.IntVal), in getConstantValue()
858 apfLHS.multiply(APFloat(Sem, RHS.IntVal), in getConstantValue()
863 apfLHS.divide(APFloat(Sem, RHS.IntVal), in getConstantValue()
868 apfLHS.mod(APFloat(Sem, RHS.IntVal)); in getConstantValue()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
HDInstCombineAddSub.cpp104 void convertToFpType(const fltSemantics &Sem);
109 APFloat createAPFloatFromInt(const fltSemantics &Sem, int Val);
241 void FAddendCoef::convertToFpType(const fltSemantics &Sem) { in convertToFpType() argument
247 new(P) APFloat(Sem, IntVal); in convertToFpType()
249 new(P) APFloat(Sem, 0 - IntVal); in convertToFpType()
255 APFloat FAddendCoef::createAPFloatFromInt(const fltSemantics &Sem, int Val) { in createAPFloatFromInt() argument
257 return APFloat(Sem, Val); in createAPFloatFromInt()
259 APFloat T(Sem, 0 - Val); in createAPFloatFromInt()
HDInstCombineCasts.cpp1452 static bool fitsInFPType(ConstantFP *CFP, const fltSemantics &Sem) { in fitsInFPType() argument
1455 (void)F.convert(Sem, APFloat::rmNearestTiesToEven, &losesInfo); in fitsInFPType()
/freebsd-11-stable/share/doc/psd/05.sysman/
HDspell.ok88 Sem
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
HDASTRecordReader.h284 llvm::APFloat readAPFloat(const llvm::fltSemantics &Sem);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDExpr.h1614 void setRawSemantics(llvm::APFloatBase::Semantics Sem) { in setRawSemantics() argument
1615 FloatingLiteralBits.Semantics = Sem; in setRawSemantics()
1626 void setSemantics(const llvm::fltSemantics &Sem) { in setSemantics() argument
1627 FloatingLiteralBits.Semantics = llvm::APFloatBase::SemanticsToEnum(Sem); in setSemantics()
HDRecursiveASTVisitor.h619 if (auto Sem = ILE->isSemanticForm() ? ILE : ILE->getSemanticForm()) \
620 TRY_TO(WalkUpFrom##CLASS(Sem)); \
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDExprConstant.cpp9441 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(EltTy); in VisitCastExpr() local
9443 if (&Sem == &APFloat::x87DoubleExtended()) in VisitCastExpr()
9451 Elts.push_back(APValue(APFloat(Sem, Elt))); in VisitCastExpr()
12705 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy); in TryEvaluateBuiltinNaN() local
12717 Result = llvm::APFloat::getSNaN(Sem, false, &fill); in TryEvaluateBuiltinNaN()
12719 Result = llvm::APFloat::getQNaN(Sem, false, &fill); in TryEvaluateBuiltinNaN()
12727 Result = llvm::APFloat::getQNaN(Sem, false, &fill); in TryEvaluateBuiltinNaN()
12729 Result = llvm::APFloat::getSNaN(Sem, false, &fill); in TryEvaluateBuiltinNaN()
12748 const llvm::fltSemantics &Sem = in VisitCallExpr() local
12750 Result = llvm::APFloat::getInf(Sem); in VisitCallExpr()
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTReader.cpp8878 llvm::APFloat ASTRecordReader::readAPFloat(const llvm::fltSemantics &Sem) { in readAPFloat() argument
8879 return llvm::APFloat(Sem, readAPInt()); in readAPFloat()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86ISelLowering.cpp20457 const fltSemantics &Sem = SelectionDAG::EVTToAPFloatSemantics(VT); in LowerFABSorFNEG() local
20458 SDValue Mask = DAG.getConstantFP(APFloat(Sem, MaskElt), dl, LogicVT); in LowerFABSorFNEG()
20500 const fltSemantics &Sem = SelectionDAG::EVTToAPFloatSemantics(VT); in LowerFCOPYSIGN() local
20515 APFloat(Sem, APInt::getSignMask(EltSizeInBits)), dl, LogicVT); in LowerFCOPYSIGN()
20517 APFloat(Sem, APInt::getSignedMaxValue(EltSizeInBits)), dl, LogicVT); in LowerFCOPYSIGN()