| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | APFloat.h | 152 enum Semantics { enum 162 static const llvm::fltSemantics &EnumToSemantics(Semantics S); 163 static Semantics SemanticsToEnum(const llvm::fltSemantics &Sem); 604 const fltSemantics *Semantics; variable 719 Storage(const fltSemantics &Semantics, ArgTypes &&... Args) { in Storage() argument 720 if (usesLayout<IEEEFloat>(Semantics)) { in Storage() 721 new (&IEEE) IEEEFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage() 724 if (usesLayout<DoubleAPFloat>(Semantics)) { in Storage() 725 new (&Double) DoubleAPFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage() 796 template <typename T> static bool usesLayout(const fltSemantics &Semantics) { in usesLayout() argument [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | APFloat.cpp | 124 const llvm::fltSemantics &APFloatBase::EnumToSemantics(Semantics S) { in EnumToSemantics() 144 APFloatBase::Semantics 4224 : Semantics(&S), in DoubleAPFloat() 4226 assert(Semantics == &semPPCDoubleDouble); 4230 : Semantics(&S), in DoubleAPFloat() 4233 assert(Semantics == &semPPCDoubleDouble); 4237 : Semantics(&S), Floats(new APFloat[2]{APFloat(semIEEEdouble, I), in DoubleAPFloat() 4239 assert(Semantics == &semPPCDoubleDouble); 4243 : Semantics(&S), in DoubleAPFloat() 4247 assert(Semantics == &semPPCDoubleDouble); [all …]
|
| H A D | Z3Solver.cpp | 789 const llvm::fltSemantics &Semantics = in toAPFloat() local 796 if (useSemantics && !areEquivalent(Float.getSemantics(), Semantics)) { in toAPFloat() 801 Float = llvm::APFloat(Semantics, Int); in toAPFloat()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | PthreadLockChecker.cpp | 196 LockingSemantics Semantics, CheckerKind CheckKind) const; 212 LockingSemantics Semantics, CheckerKind CheckKind) const; 397 enum LockingSemantics Semantics, in AcquireLockAux() argument 429 switch (Semantics) { in AcquireLockAux() 444 } else if (Semantics == PthreadSemantics) { in AcquireLockAux() 457 assert((Semantics == XNUSemantics) && "Unknown locking semantics"); in AcquireLockAux() 536 enum LockingSemantics Semantics, in DestroyLockAux() argument 554 if (Semantics == PthreadSemantics) { in DestroyLockAux()
|
| /netbsd-src/external/gpl3/binutils/dist/opcodes/ |
| H A D | ia64-war.tbl | 1 Resource Name; Readers; Writers; Semantics of Dependency
|
| /netbsd-src/external/gpl3/gdb.old/dist/opcodes/ |
| H A D | ia64-war.tbl | 1 Resource Name; Readers; Writers; Semantics of Dependency
|
| /netbsd-src/external/gpl3/binutils.old/dist/opcodes/ |
| H A D | ia64-war.tbl | 1 Resource Name; Readers; Writers; Semantics of Dependency
|
| /netbsd-src/external/gpl3/gdb/dist/opcodes/ |
| H A D | ia64-war.tbl | 1 Resource Name; Readers; Writers; Semantics of Dependency
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaPseudoObject.cpp | 185 SmallVector<Expr *, 4> Semantics; member in __anon178e46e70111::PseudoOpBuilder 195 Semantics.push_back(semantic); in addSemanticExpr() 201 ResultIndex = Semantics.size(); in addResultSemanticExpr() 202 Semantics.push_back(resultExpr); in addResultSemanticExpr() 204 if (auto *OVE = dyn_cast<OpaqueValueExpr>(Semantics.back())) in addResultSemanticExpr() 224 ResultIndex = Semantics.size() - 1; in setResultToLastSemantic() 226 if (auto *OVE = dyn_cast<OpaqueValueExpr>(Semantics.back())) in setResultToLastSemantic() 394 assert(index < Semantics.size() && in captureValueAsResult() 396 if (e == Semantics[index]) break; in captureValueAsResult() 407 Semantics, ResultIndex); in complete() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
| H A D | MasmParser.cpp | 531 bool parseRealValue(const fltSemantics &Semantics, APInt &Res); 804 bool emitRealValues(const fltSemantics &Semantics, unsigned *Count = nullptr); 805 bool addRealField(StringRef Name, const fltSemantics &Semantics, size_t Size); 806 bool parseDirectiveRealValue(StringRef IDVal, const fltSemantics &Semantics, 809 const fltSemantics &Semantics, SmallVectorImpl<APInt> &Values, 812 const fltSemantics &Semantics, 3610 bool MasmParser::parseRealValue(const fltSemantics &Semantics, APInt &Res) { in parseRealValue() argument 3631 APFloat Value(Semantics); in parseRealValue() 3635 Value = APFloat::getInf(Semantics); in parseRealValue() 3637 Value = APFloat::getNaN(Semantics, false, ~0); in parseRealValue() [all …]
|
| H A D | AsmParser.cpp | 275 bool parseRealValue(const fltSemantics &Semantics, APInt &Res); 3217 bool AsmParser::parseRealValue(const fltSemantics &Semantics, APInt &Res) { in parseRealValue() argument 3234 APFloat Value(Semantics); in parseRealValue() 3238 Value = APFloat::getInf(Semantics); in parseRealValue() 3240 Value = APFloat::getNaN(Semantics, false, ~0); in parseRealValue() 3261 const fltSemantics &Semantics) { in parseDirectiveRealValue() argument 3264 if (checkForValidSection() || parseRealValue(Semantics, AsInt)) in parseDirectiveRealValue() 4858 bool AsmParser::parseDirectiveRealDCB(StringRef IDVal, const fltSemantics &Semantics) { in parseDirectiveRealDCB() argument 4873 if (parseRealValue(Semantics, AsInt) || parseEOL()) in parseDirectiveRealDCB()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
| H A D | LangRef.rst | 5725 :ref:`Semantics<tbaa_node_semantics>` talks about high level issues, and 5737 Semantics subsubsection 7732 Semantics: 7781 Semantics: 7832 Semantics: 7899 Semantics: 7993 Semantics: 8081 Semantics: 8134 Semantics: 8183 Semantics: [all …]
|
| H A D | Coroutines.rst | 785 Semantics: 812 Semantics: argument 840 Semantics: argument 879 Semantics: 945 Semantics: 974 Semantics: argument 1056 Semantics: 1101 Semantics: 1127 Semantics: argument 1168 Semantics: [all …]
|
| H A D | StackMaps.rst | 121 Semantics: 214 Semantics:
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/ |
| H A D | package.d | 124 $(REG_TITLE Pattern element, Semantics ) 223 $(REG_TITLE Pattern element, Semantics ) 235 $(REG_TITLE Flag, Semantics )
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | Constants.cpp | 988 const fltSemantics &Semantics = Ty->getScalarType()->getFltSemantics(); in getNaN() local 989 APFloat NaN = APFloat::getNaN(Semantics, Negative, Payload); in getNaN() 999 const fltSemantics &Semantics = Ty->getScalarType()->getFltSemantics(); in getQNaN() local 1000 APFloat NaN = APFloat::getQNaN(Semantics, Negative, Payload); in getQNaN() 1010 const fltSemantics &Semantics = Ty->getScalarType()->getFltSemantics(); in getSNaN() local 1011 APFloat NaN = APFloat::getSNaN(Semantics, Negative, Payload); in getSNaN() 1021 const fltSemantics &Semantics = Ty->getScalarType()->getFltSemantics(); in getNegativeZero() local 1022 APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true); in getNegativeZero() 1055 const fltSemantics &Semantics = Ty->getScalarType()->getFltSemantics(); in getInfinity() local 1056 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative)); in getInfinity()
|
| /netbsd-src/external/bsd/openldap/dist/doc/drafts/ |
| H A D | draft-masarati-ldap-whatfailed-xx.txt | 72 2.1. Control Semantics . . . . . . . . . . . . . . . . . . . . 4 174 2.1. Control Semantics
|
| H A D | draft-ietf-ldapext-ldapv3-dupent-xx.txt | 114 5.1.1 AttributeDescriptionList Semantics 151 [RFC2251]. Semantics are undefined if an attribute description 169 5.1.2 PartialApplicationAllowed Semantics
|
| H A D | draft-masarati-ldap-deref-xx.txt | 72 2.1. Control Semantics . . . . . . . . . . . . . . . . . . . . 4 174 2.1. Control Semantics
|
| H A D | draft-ietf-ldapext-acl-model-xx.txt | 179 Semantics of Access Control Operations". 423 Semantics of Access Control" section of this document. 1973 9. Operational Semantics of Access Control Operations 2026 9.2 Semantics of Histories 2762 9. Operational Semantics of Access Control 2765 9.2 Semantics of Histories....................... 32
|
| /netbsd-src/external/bsd/openldap/dist/doc/rfc/ |
| H A D | rfc4373.txt | 90 6. Semantics of the Incremental Update Style ......................11 91 7. General LBURP Semantics ........................................11 573 6. Semantics of the Incremental Update Style 584 7. General LBURP Semantics
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | Expr.h | 1476 llvm::APFloat getValue(const llvm::fltSemantics &Semantics) const { in getValue() argument 1477 return llvm::APFloat(Semantics, getIntValue()); in getValue() 1653 llvm::APFloatBase::Semantics getRawSemantics() const { in getRawSemantics() 1654 return static_cast<llvm::APFloatBase::Semantics>( in getRawSemantics() 1655 FloatingLiteralBits.Semantics); in getRawSemantics() 1660 void setRawSemantics(llvm::APFloatBase::Semantics Sem) { in setRawSemantics() 1661 FloatingLiteralBits.Semantics = Sem; in setRawSemantics() 1667 static_cast<llvm::APFloatBase::Semantics>( in getSemantics() 1668 FloatingLiteralBits.Semantics)); in getSemantics() 1673 FloatingLiteralBits.Semantics = llvm::APFloatBase::SemanticsToEnum(Sem); in setSemantics()
|
| H A D | PropertiesBase.td | 277 static_cast<llvm::APFloatBase::Semantics>(semantics)); 319 static_cast<llvm::APFloatBase::Semantics>(semantics));
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| H A D | README.txt | 34 * https://github.com/WebAssembly/design/blob/master/Semantics.md
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/ |
| H A D | package.d | 115 $(REG_TITLE Pattern element, Semantics ) 210 $(REG_TITLE Pattern element, Semantics ) 221 $(REG_TITLE Flag, Semantics )
|