/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
H A D | LegalityPredicates.cpp | 30 [=](const LegalityQuery &Query) { return Query.Types[TypeIdx] == Type; }; in typeIs() argument 37 return [=](const LegalityQuery &Query) { in typeInSet() argument 38 return llvm::is_contained(Types, Query.Types[TypeIdx]); in typeInSet() 46 return [=](const LegalityQuery &Query) { in typePairInSet() argument 47 std::pair<LLT, LLT> Match = {Query.Types[TypeIdx0], Query.Types[TypeIdx1]}; in typePairInSet() 56 return [=](const LegalityQuery &Query) { in typePairAndMemDescInSet() argument 57 TypePairAndMemDesc Match = {Query.Types[TypeIdx0], Query.Types[TypeIdx1], in typePairAndMemDescInSet() 58 Query.MMODescrs[MMOIdx].SizeInBits, in typePairAndMemDescInSet() 59 Query.MMODescrs[MMOIdx].AlignInBits}; in typePairAndMemDescInSet() 68 return [=](const LegalityQuery &Query) { in isScalar() argument [all …]
|
H A D | LegalizeMutations.cpp | 19 [=](const LegalityQuery &Query) { return std::make_pair(TypeIdx, Ty); }; in changeTo() argument 24 return [=](const LegalityQuery &Query) { in changeTo() argument 25 return std::make_pair(TypeIdx, Query.Types[FromTypeIdx]); in changeTo() 31 return [=](const LegalityQuery &Query) { in changeElementTo() argument 32 const LLT OldTy = Query.Types[TypeIdx]; in changeElementTo() 33 const LLT NewTy = Query.Types[FromTypeIdx]; in changeElementTo() 40 return [=](const LegalityQuery &Query) { in changeElementTo() argument 41 const LLT OldTy = Query.Types[TypeIdx]; in changeElementTo() 48 return [=](const LegalityQuery &Query) { in changeElementSizeTo() argument 49 const LLT OldTy = Query.Types[TypeIdx]; in changeElementSizeTo() [all …]
|
H A D | LegalizerInfo.cpp | 190 LegalizeActionStep LegalizeRuleSet::apply(const LegalityQuery &Query) const { in apply() 191 LLVM_DEBUG(dbgs() << "Applying legalizer ruleset to: "; Query.print(dbgs()); in apply() 198 if (Rule.match(Query)) { in apply() 200 std::pair<unsigned, LLT> Mutation = Rule.determineMutation(Query); in apply() 203 assert(mutationIsSane(Rule, Query, Mutation) && in apply() 205 assert(hasNoSimpleLoops(Rule, Query, Mutation) && "Simple loop detected"); in apply() 466 LegalizerInfo::getAction(const LegalityQuery &Query) const { in getAction() 467 LegalizeActionStep Step = getActionDefinitions(Query.Opcode).apply(Query); in getAction() 472 for (unsigned i = 0; i < Query.Types.size(); ++i) { in getAction() 473 auto Action = getAspectAction({Query.Opcode, i, Query.Types[i]}); in getAction()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/ |
H A D | AArch64LegalizerInfo.cpp | 87 [=](const LegalityQuery &Query) { in AArch64LegalizerInfo() argument 88 return Query.Types[0].isVector() && in AArch64LegalizerInfo() 89 (Query.Types[0].getElementType() != s64 || in AArch64LegalizerInfo() 90 Query.Types[0].getNumElements() != 2); in AArch64LegalizerInfo() 92 [=](const LegalityQuery &Query) { in AArch64LegalizerInfo() argument 93 LLT EltTy = Query.Types[0].getElementType(); in AArch64LegalizerInfo() 112 [=](const LegalityQuery &Query) { in AArch64LegalizerInfo() argument 113 return Query.Opcode == G_MUL && Query.Types[0] == v2s64; in AArch64LegalizerInfo() 124 .customIf([=](const LegalityQuery &Query) { in AArch64LegalizerInfo() argument 125 const auto &SrcTy = Query.Types[0]; in AArch64LegalizerInfo() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
H A D | MipsLegalizerInfo.cpp | 38 CheckTy0Ty1MemSizeAlign(const LegalityQuery &Query, in CheckTy0Ty1MemSizeAlign() argument 40 unsigned QueryMemSize = Query.MMODescrs[0].SizeInBits; in CheckTy0Ty1MemSizeAlign() 47 if (Val.ValTy != Query.Types[0]) in CheckTy0Ty1MemSizeAlign() 49 if (Val.PtrTy != Query.Types[1]) in CheckTy0Ty1MemSizeAlign() 54 isUnalignedMemmoryAccess(QueryMemSize, Query.MMODescrs[0].AlignInBits)) in CheckTy0Ty1MemSizeAlign() 61 static bool CheckTyN(unsigned N, const LegalityQuery &Query, in CheckTyN() argument 63 return llvm::is_contained(SupportedValues, Query.Types[N]); in CheckTyN() 79 .legalIf([=, &ST](const LegalityQuery &Query) { in MipsLegalizerInfo() argument 80 if (CheckTyN(0, Query, {s32})) in MipsLegalizerInfo() 82 if (ST.hasMSA() && CheckTyN(0, Query, {v16s8, v8s16, v4s32, v2s64})) in MipsLegalizerInfo() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | LegalizerInfo.h | 197 return [=](const LegalityQuery &Query) { in all() 198 return P0(Query) && P1(Query); in all() 210 return [=](const LegalityQuery &Query) { in any() 211 return P0(Query) || P1(Query); in any() 228 return [=](const LegalityQuery &Query) { in typeIsNot() 229 return Query.Types[TypeIdx] != Type; in typeIsNot() 349 bool match(const LegalityQuery &Query) const { in match() argument 350 return Predicate(Query); in match() 356 std::pair<unsigned, LLT> determineMutation(const LegalityQuery &Query) const { in determineMutation() argument 358 return Mutation(Query); in determineMutation() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | AutoConvert.cpp | 32 struct f_cnvrt Query = { in enableAutoConversion() local 38 if (fcntl(FD, F_CONTROL_CVT, &Query) == -1) in enableAutoConversion() 41 Query.cvtcmd = SETCVTALL; in enableAutoConversion() 42 Query.pccsid = in enableAutoConversion() 47 Query.fccsid = (Query.fccsid == FT_UNTAGGED) ? CCSID_IBM_1047 : Query.fccsid; in enableAutoConversion() 48 if (fcntl(FD, F_CONTROL_CVT, &Query) == -1) in enableAutoConversion()
|
H A D | SpecialCaseList.cpp | 61 unsigned SpecialCaseList::Matcher::match(StringRef Query) const { in match() 62 auto It = Strings.find(Query); in match() 65 if (Trigrams.isDefinitelyOut(Query)) in match() 68 if (RegExKV.first->match(Query)) in match() 205 StringRef Query, StringRef Category) const { in inSection() argument 206 return inSectionBlame(Section, Prefix, Query, Category); in inSection() 210 StringRef Query, in inSectionBlame() argument 215 inSectionBlame(SectionIter.Entries, Prefix, Query, Category); in inSectionBlame() 223 StringRef Prefix, StringRef Query, in inSectionBlame() argument 230 return II->getValue().match(Query); in inSectionBlame()
|
H A D | TrigramIndex.cpp | 85 bool TrigramIndex::isDefinitelyOut(StringRef Query) const { in isDefinitelyOut() 90 for (size_t I = 0; I < Query.size(); I++) { in isDefinitelyOut() 91 Tri = ((Tri << 8) + Query[I]) & 0xFFFFFF; in isDefinitelyOut()
|
/netbsd-src/external/bsd/openldap/dist/tests/data/ |
H A D | proxycache.out | 1 # Query 1: filter:(sn=Jon) attrs:all (expect nothing) 2 # Query 2: filter:(|(cn=*Jon*)(sn=Jon*)) attrs:cn sn title uid 27 # Query 3: filter:(sn=Smith*) attrs:cn sn uid 34 # Query 4: filter:(sn=Doe*) attrs:cn sn title uid 58 # Query 5: filter:(uid=johnd) attrs:mail postaladdress telephonenumber cn uid 67 # Query 6: filter:(mail=*@mail.alumni.example.com) attrs:cn sn title uid 103 # Query 7: filter:(mail=*) attrs:cn sn title uid 178 # Query 8: filter:(mail=*example.com) attrs:cn sn title uid 187 # Query 9: filter:(uid=b*) attrs:mail 192 # Query 10: filter:(|(cn=All Staff)(sn=All Staff)) attrs:sn cn title uid undefinedAttr [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | LiveIntervalUnion.h | 112 class Query { 124 Query() = default; 125 Query(const LiveRange &LR, const LiveIntervalUnion &LIU) in Query() function 127 Query(const Query &) = delete; 128 Query &operator=(const Query &) = delete;
|
H A D | LiveRegMatrix.h | 53 std::unique_ptr<LiveIntervalUnion::Query[]> Queries; 151 LiveIntervalUnion::Query &query(const LiveRange &LR, MCRegister RegUnit);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULegalizerInfo.cpp | 66 return [=](const LegalityQuery &Query) { in isSmallOddVector() argument 67 const LLT Ty = Query.Types[TypeIdx]; in isSmallOddVector() 80 return [=](const LegalityQuery &Query) { in sizeIsMultipleOf32() argument 81 const LLT Ty = Query.Types[TypeIdx]; in sizeIsMultipleOf32() 87 return [=](const LegalityQuery &Query) { in isWideVec16() argument 88 const LLT Ty = Query.Types[TypeIdx]; in isWideVec16() 95 return [=](const LegalityQuery &Query) { in oneMoreElement() argument 96 const LLT Ty = Query.Types[TypeIdx]; in oneMoreElement() 103 return [=](const LegalityQuery &Query) { in fewerEltsToSize64Vector() argument 104 const LLT Ty = Query.Types[TypeIdx]; in fewerEltsToSize64Vector() [all …]
|
/netbsd-src/external/bsd/unbound/dist/testdata/ |
H A D | edns_downstream_cookies.rpl | 17 ; Query without a client cookie ... 33 ; Query without a client cookie on TCP ... 52 ; Query with only a client cookie ... 74 ; Query with an invalid cookie ... 99 ; Query with an invalid cookie from a non-cookie protected address ... 126 ; Query with a valid cookie ... 153 ; Query with a valid >30 minutes old cookie ... 182 ; Query with a hash-valid >60 minutes old cookie ... 208 ; Query with a valid future (<5 minutes) cookie ...
|
H A D | serve_expired_cached_servfail_refresh.rpl | 74 ; Query with RD flag 91 ; Query again 111 ; Query again 128 ; Query again, upstream has the real answer available
|
H A D | serve_expired_0ttl_nxdomain.rpl | 71 ; Query with RD flag 90 ; Query again 112 ; Query again 131 ; Query again
|
H A D | serve_expired_0ttl_nodata.rpl | 71 ; Query with RD flag 90 ; Query again 112 ; Query again 131 ; Query again
|
H A D | serve_expired_0ttl_servfail.rpl | 69 ; Query with RD flag 86 ; Query again 106 ; Query again
|
H A D | serve_expired_cached_servfail.rpl | 70 ; Query with RD flag 87 ; Query again 107 ; Query again
|
H A D | serve_expired.rpl | 54 ; Query with RD flag 80 ; Query again without RD bit 103 ; Query with RD bit (the record should have been prefetched)
|
H A D | serve_original_ttl.rpl | 59 ; Query with RD flag 85 ; Query again 112 ; Query again
|
/netbsd-src/external/bsd/unbound/dist/testdata/proxy_protocol.tdir/ |
H A D | proxy_protocol.test.scenario | 107 # Query without PROXYv2 119 # Query with PROXYv2 131 # Query with PROXYv2 143 # Query with PROXYv2 155 # Query with PROXYv2 167 # Query with PROXYv2 179 # Query with PROXYv2
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
H A D | SpecialCaseList.h | 92 bool inSection(StringRef Section, StringRef Prefix, StringRef Query, 103 unsigned inSectionBlame(StringRef Section, StringRef Prefix, StringRef Query, 126 unsigned match(StringRef Query) const; 152 StringRef Query, StringRef Category) const;
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | LiveRegMatrix.cpp | 62 Queries.reset(new LiveIntervalUnion::Query[NumRegUnits]); in runOnMachineFunction() 178 LiveIntervalUnion::Query &LiveRegMatrix::query(const LiveRange &LR, in query() 180 LiveIntervalUnion::Query &Q = Queries[RegUnit]; in query() 231 LiveIntervalUnion::Query Q; in checkInterference()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/ |
H A D | SanitizerSpecialCaseList.cpp | 57 StringRef Query, in inSection() argument 61 SpecialCaseList::inSectionBlame(S.Entries, Prefix, Query, Category)) in inSection()
|