| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeTypes.h | 81 bool IgnoreNodeResults(SDNode *N) const { in IgnoreNodeResults() argument 82 return N->getOpcode() == ISD::TargetConstant || in IgnoreNodeResults() 83 N->getOpcode() == ISD::Register; in IgnoreNodeResults() 209 SDNode *AnalyzeNewNode(SDNode *N); 219 bool CustomLowerNode(SDNode *N, EVT VT, bool LegalizeResult); 220 bool CustomWidenLowerNode(SDNode *N, EVT VT); 225 SDValue DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo); 301 SDValue PromoteIntOpVectorReduction(SDNode *N, SDValue V); 304 void PromoteIntegerResult(SDNode *N, unsigned ResNo); 305 SDValue PromoteIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo); [all …]
|
| H A D | LegalizeFloatTypes.cpp | 51 void DAGTypeLegalizer::SoftenFloatResult(SDNode *N, unsigned ResNo) { in SoftenFloatResult() argument 52 LLVM_DEBUG(dbgs() << "Soften float result " << ResNo << ": "; N->dump(&DAG)); in SoftenFloatResult() 55 switch (N->getOpcode()) { in SoftenFloatResult() 60 N->dump(&DAG); dbgs() << "\n"; in SoftenFloatResult() 64 case ISD::EXTRACT_ELEMENT: R = SoftenFloatRes_EXTRACT_ELEMENT(N); break; in SoftenFloatResult() 65 case ISD::ARITH_FENCE: R = SoftenFloatRes_ARITH_FENCE(N); break; in SoftenFloatResult() 66 case ISD::MERGE_VALUES:R = SoftenFloatRes_MERGE_VALUES(N, ResNo); break; in SoftenFloatResult() 67 case ISD::BITCAST: R = SoftenFloatRes_BITCAST(N); break; in SoftenFloatResult() 68 case ISD::BUILD_PAIR: R = SoftenFloatRes_BUILD_PAIR(N); break; in SoftenFloatResult() 69 case ISD::ConstantFP: R = SoftenFloatRes_ConstantFP(N); break; in SoftenFloatResult() [all …]
|
| H A D | LegalizeIntegerTypes.cpp | 41 void DAGTypeLegalizer::PromoteIntegerResult(SDNode *N, unsigned ResNo) { in PromoteIntegerResult() argument 42 LLVM_DEBUG(dbgs() << "Promote integer result: "; N->dump(&DAG)); in PromoteIntegerResult() 46 if (CustomLowerNode(N, N->getValueType(ResNo), true)) { in PromoteIntegerResult() 51 switch (N->getOpcode()) { in PromoteIntegerResult() 55 N->dump(&DAG); dbgs() << "\n"; in PromoteIntegerResult() 58 case ISD::MERGE_VALUES:Res = PromoteIntRes_MERGE_VALUES(N, ResNo); break; in PromoteIntegerResult() 59 case ISD::AssertSext: Res = PromoteIntRes_AssertSext(N); break; in PromoteIntegerResult() 60 case ISD::AssertZext: Res = PromoteIntRes_AssertZext(N); break; in PromoteIntegerResult() 61 case ISD::BITCAST: Res = PromoteIntRes_BITCAST(N); break; in PromoteIntegerResult() 63 case ISD::BITREVERSE: Res = PromoteIntRes_BITREVERSE(N); break; in PromoteIntegerResult() [all …]
|
| H A D | LegalizeVectorTypes.cpp | 41 void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) { in ScalarizeVectorResult() argument 43 N->dump(&DAG)); in ScalarizeVectorResult() 46 switch (N->getOpcode()) { in ScalarizeVectorResult() 50 N->dump(&DAG); in ScalarizeVectorResult() 56 case ISD::MERGE_VALUES: R = ScalarizeVecRes_MERGE_VALUES(N, ResNo);break; in ScalarizeVectorResult() 57 case ISD::BITCAST: R = ScalarizeVecRes_BITCAST(N); break; in ScalarizeVectorResult() 58 case ISD::BUILD_VECTOR: R = ScalarizeVecRes_BUILD_VECTOR(N); break; in ScalarizeVectorResult() 59 case ISD::EXTRACT_SUBVECTOR: R = ScalarizeVecRes_EXTRACT_SUBVECTOR(N); break; in ScalarizeVectorResult() 60 case ISD::FP_ROUND: R = ScalarizeVecRes_FP_ROUND(N); break; in ScalarizeVectorResult() 65 R = ScalarizeVecRes_UnaryOpWithExtraInput(N); in ScalarizeVectorResult() [all …]
|
| /freebsd/contrib/arm-optimized-routines/math/ |
| H A D | exp2f_data.c | 10 #define N (1 << EXP2F_TABLE_BITS) macro 17 #if N == 8 20 #elif N == 16 25 #elif N == 32 34 #elif N == 64 53 .shift_scaled = 0x1.8p+52 / N, 55 #if N == 8 57 #elif N == 16 59 #elif N == 32 61 #elif N == 64 [all …]
|
| H A D | exp_data.c | 10 #define N (1 << EXP_TABLE_BITS) macro 14 .invln2N = 0x1.71547652b82fep0 * N, 15 .invlog10_2N = 0x1.a934f0979a371p1 * N, 17 #if N == 64 20 #elif N == 128 23 #elif N == 256 26 #elif N == 512 30 .neglog10_2hiN = -0x1.3441350ap-2 / N, 31 .neglog10_2loN = 0x1.0c0219dc1da99p-39 / N, 40 #if N == 64 && EXP_POLY_ORDER == 5 && !EXP_POLY_WIDE [all …]
|
| /freebsd/sys/contrib/ck/include/ |
| H A D | ck_rwcohort.h | 42 #define CK_RWCOHORT_WP_NAME(N) ck_rwcohort_wp_##N argument 43 #define CK_RWCOHORT_WP_INSTANCE(N) struct CK_RWCOHORT_WP_NAME(N) argument 44 #define CK_RWCOHORT_WP_INIT(N, RW, WL) ck_rwcohort_wp_##N##_init(RW, WL) argument 45 #define CK_RWCOHORT_WP_READ_LOCK(N, RW, C, GC, LC) \ argument 46 ck_rwcohort_wp_##N##_read_lock(RW, C, GC, LC) 47 #define CK_RWCOHORT_WP_READ_UNLOCK(N, RW, C, GC, LC) \ argument 48 ck_rwcohort_wp_##N##_read_unlock(RW) 49 #define CK_RWCOHORT_WP_WRITE_LOCK(N, RW, C, GC, LC) \ argument 50 ck_rwcohort_wp_##N##_write_lock(RW, C, GC, LC) 51 #define CK_RWCOHORT_WP_WRITE_UNLOCK(N, RW, C, GC, LC) \ argument [all …]
|
| /freebsd/sbin/pfctl/ |
| H A D | pf.os | 140 # N - NOP option 203 16384:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2 204 16384:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2 205 32768:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2 206 32768:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2 207 65535:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2 208 65535:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2 209 65535:64:0:64:M*,N,W1,N,N,T,N,N,S: AIX:5.3:ML1:AIX 5.3 ML1 222 S4:64:1:60:M1360,S,T,N,W0: Linux:google::Linux (Google crawlbot) 224 S2:64:1:60:M*,S,T,N,W0: Linux:2.4::Linux 2.4 (big boy) [all …]
|
| /freebsd/crypto/heimdal/lib/wind/ |
| H A D | UnicodeData.txt | 1 0000;<control>;Cc;0;BN;;;;;N;NULL;;;; 2 0001;<control>;Cc;0;BN;;;;;N;START OF HEADING;;;; 3 0002;<control>;Cc;0;BN;;;;;N;START OF TEXT;;;; 4 0003;<control>;Cc;0;BN;;;;;N;END OF TEXT;;;; 5 0004;<control>;Cc;0;BN;;;;;N;END OF TRANSMISSION;;;; 6 0005;<control>;Cc;0;BN;;;;;N;ENQUIRY;;;; 7 0006;<control>;Cc;0;BN;;;;;N;ACKNOWLEDGE;;;; 8 0007;<control>;Cc;0;BN;;;;;N;BELL;;;; 9 0008;<control>;Cc;0;BN;;;;;N;BACKSPACE;;;; 10 0009;<control>;Cc;0;S;;;;;N;CHARACTER TABULATION;;;; [all …]
|
| /freebsd/crypto/krb5/src/lib/krb5/unicode/ |
| H A D | UnicodeData.txt | 1 0000;<control>;Cc;0;BN;;;;;N;NULL;;;; 2 0001;<control>;Cc;0;BN;;;;;N;START OF HEADING;;;; 3 0002;<control>;Cc;0;BN;;;;;N;START OF TEXT;;;; 4 0003;<control>;Cc;0;BN;;;;;N;END OF TEXT;;;; 5 0004;<control>;Cc;0;BN;;;;;N;END OF TRANSMISSION;;;; 6 0005;<control>;Cc;0;BN;;;;;N;ENQUIRY;;;; 7 0006;<control>;Cc;0;BN;;;;;N;ACKNOWLEDGE;;;; 8 0007;<control>;Cc;0;BN;;;;;N;BELL;;;; 9 0008;<control>;Cc;0;BN;;;;;N;BACKSPACE;;;; 10 0009;<control>;Cc;0;S;;;;;N;CHARACTER TABULATION;;;; [all …]
|
| /freebsd/usr.bin/bmake/tests/ |
| H A D | common.sh | 40 N=1 41 while [ ${N} -le ${TEST_N} ] ; do 42 if ! skip_test ${N} ; then 43 if [ ! -f ${OUTPUT_DIR}/status.${N} -o \ 44 ! -f ${OUTPUT_DIR}/stdout.${N} -o \ 45 ! -f ${OUTPUT_DIR}/stderr.${N} ] ; then 46 echo "Test ${SUBDIR}/${N} no yet run" 50 N=$((N + 1)) 264 N=1 265 while [ ${N} -le ${TEST_N} ] ; do [all …]
|
| /freebsd/crypto/openssl/test/recipes/10-test_bn_data/ |
| H A D | bnshift.txt | 1216 # These test vectors satisfy A * 2^N = LShift. 1222 N = 1 1226 N = 2 1230 N = 3 1234 N = 4 1238 N = 5 1242 N = 6 1246 N = 7 1250 N = 8 1254 N = 9 [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | BranchProbability.h | 34 uint32_t N; variable 42 explicit BranchProbability(uint32_t n) : N(n) {} in BranchProbability() 45 BranchProbability() : N(UnknownN) {} in BranchProbability() 48 bool isZero() const { return N == 0; } in isZero() 49 bool isUnknown() const { return N == UnknownN; } in isUnknown() 56 static BranchProbability getRaw(uint32_t N) { return BranchProbability(N); } in getRaw() argument 72 uint32_t getNumerator() const { return N; } in getNumerator() 76 BranchProbability getCompl() const { return BranchProbability(D - N); } in getCompl() 101 assert(N != UnknownN && RHS.N != UnknownN && 104 N = (uint64_t(N) + RHS.N > D) ? D : N + RHS.N; [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelDAGToDAG.h | 57 void Select(SDNode *N) override; 60 inline bool SelectAddrGA(SDValue &N, SDValue &R); 61 inline bool SelectAddrGP(SDValue &N, SDValue &R); 62 inline bool SelectAnyImm(SDValue &N, SDValue &R); 63 inline bool SelectAnyInt(SDValue &N, SDValue &R); 64 bool SelectAnyImmediate(SDValue &N, SDValue &R, Align Alignment); 65 bool SelectGlobalAddress(SDValue &N, SDValue &R, bool UseGP, Align Alignment); 66 bool SelectAddrFI(SDValue &N, SDValue &R); 67 bool DetectUseSxtw(SDValue &N, SDValue &R); 69 inline bool SelectAnyImm0(SDValue &N, SDValue &R); [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMISelDAGToDAG.cpp | 80 void Select(SDNode *N) override; 86 bool hasNoVMLxHazardUse(SDNode *N) const; 89 bool SelectRegShifterOperand(SDValue N, SDValue &A, 92 bool SelectImmShifterOperand(SDValue N, SDValue &A, 94 bool SelectShiftRegShifterOperand(SDValue N, SDValue &A, SDValue &B, in SelectShiftRegShifterOperand() argument 97 return SelectRegShifterOperand(N, A, B, C, false); in SelectShiftRegShifterOperand() 99 bool SelectShiftImmShifterOperand(SDValue N, SDValue &A, SDValue &B) { in SelectShiftImmShifterOperand() argument 101 return SelectImmShifterOperand(N, A, B, false); in SelectShiftImmShifterOperand() 103 bool SelectShiftImmShifterOperandOneUse(SDValue N, SDValue &A, SDValue &B) { in SelectShiftImmShifterOperandOneUse() argument 104 if (!N.hasOneUse()) in SelectShiftImmShifterOperandOneUse() [all …]
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DAGISelMatcherGen.cpp | 116 void EmitMatchCode(const TreePatternNode &N, TreePatternNode &NodeNoTypes); 117 void EmitLeafMatchCode(const TreePatternNode &N); 118 void EmitOperatorMatchCode(const TreePatternNode &N, 134 void EmitResultOperand(const TreePatternNode &N, 136 void EmitResultOfNamedOperand(const TreePatternNode &N, 138 void EmitResultLeafAsOperand(const TreePatternNode &N, 140 void EmitResultInstructionAsOperand(const TreePatternNode &N, 142 void EmitResultSDNodeXFormAsOperand(const TreePatternNode &N, 200 void MatcherGen::EmitLeafMatchCode(const TreePatternNode &N) { in EmitLeafMatchCode() argument 201 assert(N.isLeaf() && "Not a leaf?"); in EmitLeafMatchCode() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXISelDAGToDAG.h | 46 NVPTX::DivPrecisionLevel getDivF32Level(const SDNode *N) const; 47 bool usePrecSqrtF32(const SDNode *N) const; 71 void Select(SDNode *N) override; 72 bool tryIntrinsicChain(SDNode *N); 73 bool tryIntrinsicVoid(SDNode *N); 74 void SelectTexSurfHandle(SDNode *N); 75 bool tryLoad(SDNode *N); 76 bool tryLoadVector(SDNode *N); 77 bool tryLDU(SDNode *N); 78 bool tryLDG(MemSDNode *N); [all …]
|
| /freebsd/crypto/krb5/src/lib/krb5/unicode/ucdata/ |
| H A D | MUTTUCData.txt | 212 E900;DEVANAGARI KSHA LIGATURE;Lo;0;L;0915 094D 0937;;;;N;;;;; 213 E901;DEVANAGARI GNYA LIGATURE;Lo;0;L;091C 094D 091E;;;;N;;;;; 214 E902;DEVANAGARI TTA LIGATURE;Lo;0;L;0924 094D 0924;;;;N;;;;; 215 E903;DEVANAGARI TRA LIGATURE;Lo;0;L;0924 094D 0930;;;;N;;;;; 216 E904;DEVANAGARI SHCHA LIGATURE;Lo;0;L;0936 094D 091B;;;;N;;;;; 217 E905;DEVANAGARI SHRA LIGATURE;Lo;0;L;0936 094D 0930;;;;N;;;;; 218 E906;DEVANAGARI SHVA LIGATURE;Lo;0;L;0936 094D 0935;;;;N;;;;; 219 E907;DEVANAGARI KRA LIGATURE;Lo;0;L;;;;;N;;;;; 220 E908;DEVANAGARI JRA LIGATURE;Lo;0;L;;;;;N;;;;; 221 E909;DEVANAGARI ZRA LIGATURE;Lo;0;L;;;;;N;;;;; [all …]
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_rb.h | 52 #define ARCHIVE_RB_TREE_NEXT(T, N) \ argument 53 __archive_rb_tree_iterate((T), (N), ARCHIVE_RB_DIR_RIGHT) 54 #define ARCHIVE_RB_TREE_PREV(T, N) \ argument 55 __archive_rb_tree_iterate((T), (N), ARCHIVE_RB_DIR_LEFT) 56 #define ARCHIVE_RB_TREE_FOREACH(N, T) \ argument 57 for ((N) = ARCHIVE_RB_TREE_MIN(T); (N); \ 58 (N) = ARCHIVE_RB_TREE_NEXT((T), (N))) 59 #define ARCHIVE_RB_TREE_FOREACH_REVERSE(N, T) \ argument 60 for ((N) = ARCHIVE_RB_TREE_MAX(T); (N); \ 61 (N) = ARCHIVE_RB_TREE_PREV((T), (N))) [all …]
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangOpcodesEmitter.cpp | 35 void EmitEnum(raw_ostream &OS, StringRef N, const Record *R); 38 void EmitInterp(raw_ostream &OS, StringRef N, const Record *R); 41 void EmitDisasm(raw_ostream &OS, StringRef N, const Record *R); 44 void EmitEmitter(raw_ostream &OS, StringRef N, const Record *R); 47 void EmitProto(raw_ostream &OS, StringRef N, const Record *R); 50 void EmitGroup(raw_ostream &OS, StringRef N, const Record *R); 53 void EmitEval(raw_ostream &OS, StringRef N, const Record *R); 58 void Enumerate(const Record *R, StringRef N, in Enumerate() argument 81 Rec(0, N); in Enumerate() 89 StringRef N = Opcode->getValueAsString("Name"); in run() local [all …]
|
| H A D | ClangSyntaxEmitter.cpp | 51 for (NodeType &N : AllTypes) { in Hierarchy() 52 sort(N.Derived, [](const NodeType *L, const NodeType *R) { in Hierarchy() 56 assert(N.Rec->isSubClassOf("Alternatives") || in Hierarchy() 57 N.Rec->isSubClassOf("External") || N.Derived.empty()); in Hierarchy() 58 assert(!N.Rec->isSubClassOf("Alternatives") || !N.Derived.empty()); in Hierarchy() 105 const Hierarchy::NodeType &firstConcrete(const Hierarchy::NodeType &N) { in firstConcrete() argument 106 return N.Derived.empty() ? N : firstConcrete(*N.Derived.front()); in firstConcrete() 108 const Hierarchy::NodeType &lastConcrete(const Hierarchy::NodeType &N) { in lastConcrete() argument 109 return N.Derived.empty() ? N : lastConcrete(*N.Derived.back()); in lastConcrete() 149 H.visit([&](const Hierarchy::NodeType &N) { in EmitClangSyntaxNodeList() argument [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | BitcastBuffer.h | 25 size_t N = 0; member 28 explicit Bits(size_t Quantity) : N(Quantity) {} in Bits() 29 size_t getQuantity() const { return N; } in getQuantity() 30 size_t roundToBytes() const { return N / 8; } in roundToBytes() 31 size_t getOffsetInByte() const { return N % 8; } in getOffsetInByte() 32 bool isFullByte() const { return N % 8 == 0; } in isFullByte() 33 bool nonZero() const { return N != 0; } in nonZero() 34 bool isZero() const { return N == 0; } in isZero() 37 Bits operator-(Bits Other) const { return Bits(N - Other.N); } 38 Bits operator+(Bits Other) const { return Bits(N + Other.N); } [all …]
|
| /freebsd/contrib/libpcap/ |
| H A D | scanner.l | 157 N ([0-9]+|(0X|0x)[0-9A-Fa-f]+) 215 V6604 {W}:{W}:{W}:{W}:{W}:{W}:{N}\.{N}\.{N}\.{N} 217 V6504 ::{W}:{W}:{W}:{W}:{W}:{N}\.{N}\.{N}\.{N} 218 V6514 {W}::{W}:{W}:{W}:{W}:{N}\.{N}\.{N}\.{N} 219 V6524 {W}:{W}::{W}:{W}:{W}:{N}\.{N}\.{N}\.{N} 220 V6534 {W}:{W}:{W}::{W}:{W}:{N}\.{N}\.{N}\.{N} 221 V6544 {W}:{W}:{W}:{W}::{W}:{N}\.{N}\.{N}\.{N} 222 V6554 {W}:{W}:{W}:{W}:{W}::{N}\.{N}\.{N}\.{N} 224 V6404 ::{W}:{W}:{W}:{W}:{N}\.{N}\.{N}\.{N} 225 V6414 {W}::{W}:{W}:{W}:{N}\.{N}\.{N}\.{N} [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | DemangledNameInfo.cpp | 116 void TrackingOutputBuffer::printLeft(const Node &N) { in printLeft() argument 117 switch (N.getKind()) { in printLeft() 119 printLeftImpl(static_cast<const FunctionType &>(N)); in printLeft() 122 printLeftImpl(static_cast<const FunctionEncoding &>(N)); in printLeft() 125 printLeftImpl(static_cast<const NestedName &>(N)); in printLeft() 128 printLeftImpl(static_cast<const NameWithTemplateArgs &>(N)); in printLeft() 131 OutputBuffer::printLeft(N); in printLeft() 135 void TrackingOutputBuffer::printRight(const Node &N) { in printRight() argument 136 switch (N.getKind()) { in printRight() 138 printRightImpl(static_cast<const FunctionType &>(N)); in printRight() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/hlsl/ |
| H A D | hlsl_intrinsics.h | 24 template <typename T, int N> 25 constexpr vector<float, N> asfloat(vector<T, N> V) { in asfloat() 26 return __detail::bit_cast<float, T, N>(V); in asfloat() 41 template <typename T, int N> constexpr vector<int, N> asint(vector<T, N> V) { in asint() 42 return __detail::bit_cast<int, T, N>(V); in asint() 59 template <typename T, int N> 64 vector<int16_t, N>> asint16(vector<T, N> V) { in asint16() 65 return __detail::bit_cast<int16_t, T, N>(V); in asint16() 86 template <typename T, int N> constexpr vector<uint, N> asuint(vector<T, N> V) { in asuint() 87 return __detail::bit_cast<uint, T, N>(V); in asuint() [all …]
|