| /freebsd/contrib/llvm-project/llvm/lib/XRay/ |
| H A D | FDRRecords.cpp | 18 Error BufferExtents::apply(RecordVisitor &V) { return V.visit(*this); } in apply() function in llvm::xray::BufferExtents 19 Error WallclockRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() function in llvm::xray::WallclockRecord 20 Error NewCPUIDRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() function in llvm::xray::NewCPUIDRecord 21 Error TSCWrapRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() function in llvm::xray::TSCWrapRecord 22 Error CustomEventRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() function in llvm::xray::CustomEventRecord 23 Error CallArgRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() function in llvm::xray::CallArgRecord 24 Error PIDRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() function in llvm::xray::PIDRecord 25 Error NewBufferRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() function in llvm::xray::NewBufferRecord 26 Error EndBufferRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() function in llvm::xray::EndBufferRecord 27 Error FunctionRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() function in llvm::xray::FunctionRecord [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/ |
| H A D | Combine.td | 33 def apply; 66 /// Declares data that is passed from the match stage to the apply stage. 79 // match (Action0) + apply (Action1). 120 // In an apply pattern, GITypeOf can be used to set the type of a new temporary 123 // This can only be used on temporary registers defined by the apply pattern. 153 // (apply (GIReplaceReg $old, $new)) 160 // - Can only appear in an 'apply' pattern. 168 // (apply (GIEraseRoot)) 171 // - Can only appear as the only pattern of an 'apply' pattern list. 175 // TODO: Allow using this directly, like (apply GIEraseRoot) [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64Combine.td | 18 (apply [{ applyFConstantToConstant(*${root}); }])>; 25 (apply [{ applyICmpRedundantTrunc(*${root}, MRI, B, Observer, ${matchinfo}); }])>; 33 (apply [{ applyFoldGlobalOffset(*${root}, MRI, B, Observer, ${matchinfo});}]) 43 (apply [{ applyExtAddvToUdotAddv(*${root}, MRI, B, Observer, STI, ${matchinfo}); }]) 52 (apply [{ applyExtUaddvToUaddlv(*${root}, MRI, B, Observer, ${matchinfo}); }]) 61 …(apply [{ applyPushAddSubExt(*${root}, MRI, B, ${ExtMI}->getOpcode() == TargetOpcode::G_SEXT, ${ds… 96 (apply [{ applyShuffleVectorPseudo(*${root}, ${matchinfo}); }]) 103 (apply [{ applyShuffleVectorPseudo(*${root}, ${matchinfo}); }]) 110 (apply [{ applyShuffleVectorPseudo(*${root}, ${matchinfo}); }]) 117 (apply [{ applyShuffleVectorPseudo(*${root}, ${matchinfo}); }]) [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUCombine.td | 21 (apply [{ applySelectFCmpToFMinFMaxLegacy(*${select}, ${matchinfo}); }])>; 28 (apply [{ applyUCharToFloat(*${itofp}); }])>; 35 (apply [{ Helper.applyBuildFn(*${rcp}, ${matchinfo}); }])>; 42 (apply [{ applyFDivSqrtToRsqF16(*${root}, ${x}.getReg()); }])>; 53 (apply [{ applyCvtF32UByteN(*${cvt_f32_ubyteN}, ${matchinfo}); }])>; 61 (apply [{ applyClampI64ToI16(*${clamp_i64_to_i16}, ${matchinfo}); }])>; 72 (apply [{ applyMed3(*${min_or_max}, ${matchinfo}); }])>; 81 (apply [{ applyMed3(*${min_or_max}, ${matchinfo}); }])>; 90 (apply [{ applyClamp(*${min_or_max}, ${matchinfo}); }])>; 96 (apply [{ applyClamp(*${fmed3}, ${matchinfo}); }])>; [all …]
|
| /freebsd/contrib/kyua/engine/ |
| H A D | atf_result_test.cpp | 285 ATF_REQUIRE_EQ(in_result, in_result.apply(utils::make_optional(status))); in ATF_TEST_CASE_BODY() 296 timed_out.apply(none)); in ATF_TEST_CASE_BODY() 306 ATF_REQUIRE_EQ(in_result, in_result.apply(utils::make_optional(status))); in ATF_TEST_CASE_BODY() 318 ATF_REQUIRE_EQ(any_code, any_code.apply(utils::make_optional(success))); in ATF_TEST_CASE_BODY() 319 ATF_REQUIRE_EQ(any_code, any_code.apply(utils::make_optional(failure))); in ATF_TEST_CASE_BODY() 323 ATF_REQUIRE_EQ(a_code, a_code.apply(utils::make_optional(failure))); in ATF_TEST_CASE_BODY() 338 a_code.apply(utils::make_optional(success))); in ATF_TEST_CASE_BODY() 352 any_code.apply(utils::make_optional(sig3))); in ATF_TEST_CASE_BODY() 362 ATF_REQUIRE_EQ(xfailure, xfailure.apply(utils::make_optional(status))); in ATF_TEST_CASE_BODY() 379 xfailure.apply(utils::make_optional(failure))); in ATF_TEST_CASE_BODY() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/XRay/ |
| H A D | FDRRecords.h | 67 virtual Error apply(RecordVisitor &V) = 0; 127 Error apply(RecordVisitor &V) override; 152 Error apply(RecordVisitor &V) override; 178 Error apply(RecordVisitor &V) override; 200 Error apply(RecordVisitor &V) override; 229 Error apply(RecordVisitor &V) override; 256 Error apply(RecordVisitor &V) override; 285 Error apply(RecordVisitor &V) override; 307 Error apply(RecordVisitor &V) override; 330 Error apply(RecordVisitor &V) override; [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | TargetCallingConv.td | 28 /// CCIfType - If the current argument is one of the specified types, apply 34 /// CCIf - If the predicate matches, apply A. 39 /// CCIfByVal - If the current argument has ByVal parameter attribute, apply 45 /// apply Action A. 50 /// apply Action A. 55 /// apply Action A. 60 /// apply Action A. 65 /// attribute, apply Action A. 70 /// parameter attribute, apply Action A. 78 /// CCIfInReg - If this argument is marked with the 'inreg' attribute, apply [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | OutputSections.cpp | 170 void SectionDescriptor::apply(uint64_t PatchOffset, dwarf::Form AttrForm, in apply() function in SectionDescriptor 312 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_strp, Entry->Offset); in applyPatches() 332 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_strp, Entry->Offset); in applyPatches() 340 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_line_strp, Entry->Offset); in applyPatches() 360 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_line_strp, Entry->Offset); in applyPatches() 375 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_sec_offset, FinalValue); in applyPatches() 391 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_sec_offset, FinalValue); in applyPatches() 409 Section.apply(Patch.PatchOffset, FinalForm, FinalOffset); in applyPatches() 415 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_udata, in applyPatches() 429 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_ref_addr, in applyPatches() [all …]
|
| H A D | DWARFLinkerUnit.cpp | 161 OutDebugStrOffsetsSection.apply( in emitDebugStringOffsetSection() 230 OutSection.apply(*NamesLengthOffset - in emitPubAccelerators() 241 OutSection.apply(*TypesLengthOffset - in emitPubAccelerators()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | PBQPRAConstraint.h | 41 virtual void apply(PBQPRAGraph &G) = 0; 58 void apply(PBQPRAGraph &G) override { in apply() function 60 C->apply(G); in apply()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-xray/ |
| H A D | xray-fdr-dump.cpp | 84 if (auto E = Ptr->apply(RP)) in __anonc19214950102() 96 if (auto E = Ptr->apply(BI)) in __anonc19214950102() 108 if (auto E = R->apply(BV)) in __anonc19214950102() 110 if (auto E = R->apply(BP)) in __anonc19214950102()
|
| /freebsd/contrib/elftoolchain/libdwarf/ |
| H A D | dwarf_reloc.c | 32 dwarf_set_reloc_application(int apply) in dwarf_set_reloc_application() argument 37 _libdwarf.applyreloc = apply; in dwarf_set_reloc_application()
|
| /freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | SetTheory.cpp | 40 void apply(SetTheory &ST, const DagInit *Expr, RecSet &Elts, in apply() function 48 void apply(SetTheory &ST, const DagInit *Expr, RecSet &Elts, in apply() function 64 void apply(SetTheory &ST, const DagInit *Expr, RecSet &Elts, in apply() function 83 void apply(SetTheory &ST, const DagInit *Expr, RecSet &Elts, in apply() function 159 void apply(SetTheory &ST, const DagInit *Expr, RecSet &Elts, in apply() function 178 void apply(SetTheory &ST, const DagInit *Expr, RecSet &Elts, in apply() function 305 I->second->apply(*this, DagExpr, Elts, Loc); in evaluate()
|
| /freebsd/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | inout_ptr.h | 69 …std::apply([&](auto&&... __args) { __s_ = _Smart(static_cast<_SmartPtr>(__p_), std::forward<_Args>… in ~inout_ptr_t() 72 …std::apply([&](auto&&... __args) { __s_.reset(static_cast<_SmartPtr>(__p_), std::forward<_Args>(__… in ~inout_ptr_t() 77 …std::apply([&](auto&&... __args) { __s_ = _Smart(static_cast<_SmartPtr>(__p_), std::forward<_Args>… in ~inout_ptr_t()
|
| H A D | out_ptr.h | 64 …std::apply([&](auto&&... __args) { __s_.reset(static_cast<_SmartPtr>(__p_), std::forward<_Args>(__… in ~out_ptr_t() 69 …std::apply([&](auto&&... __args) { __s_ = _Smart(static_cast<_SmartPtr>(__p_), std::forward<_Args>… in ~out_ptr_t()
|
| /freebsd/contrib/sqlite3/tea/ |
| H A D | _teaish.tester.tcl.in | 26 apply {{file} { 32 apply {{file} { 38 apply {{file} {
|
| H A D | pkgIndex.tcl.in | 13 package ifneeded {@TEAISH_PKGNAME@} {@TEAISH_VERSION@} [list apply {{dir} { 25 package ifneeded {@TEAISH_PKGNAME@} {@TEAISH_VERSION@} [list apply {{dir} {
|
| /freebsd/sys/dev/sound/pcm/ |
| H A D | feeder_volume.c | 96 feed_volume_t apply; member 110 feed_volume_t apply; member 156 info->apply = feed_volume_info_tab[i].apply; in feed_volume_init() 293 info->apply(temp_vol, matrix, info->channels, dst, j); in feed_volume_feed()
|
| /freebsd/sys/netgraph/ |
| H A D | ng_base.c | 2189 if (item->apply != NULL) { in ng_flush_input_queue() 2191 item->apply->error = ENOENT; in ng_flush_input_queue() 2192 if (refcount_release(&item->apply->refs)) { in ng_flush_input_queue() 2193 (*item->apply->apply)(item->apply->context, in ng_flush_input_queue() 2194 item->apply->error); in ng_flush_input_queue() 2243 if (item->apply) in ng_snd_item() 2244 refcount_acquire(&item->apply->refs); in ng_snd_item() 2344 if (item->apply != NULL) { in ng_snd_item() 2346 item->apply->error = error; in ng_snd_item() 2347 if (refcount_release(&item->apply->refs)) { in ng_snd_item() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | CommandLine.h | 415 void apply(Option &O) const { O.setDescription(Desc); } in apply() function 424 void apply(Option &O) const { O.setValueStr(Desc); } in apply() function 434 template <class Opt> void apply(Opt &O) const { O.setInitialValue(Init); } in apply() function 441 template <class Opt> void apply(Opt &O) const { O.setInitialValues(Inits); } in apply() function 461 template <class Opt> void apply(Opt &O) const { O.setLocation(O, Loc); } in apply() function 474 template <class Opt> void apply(Opt &O) const { O.addCategory(Category); } in apply() function 485 template <class Opt> void apply(Opt &O) const { in apply() function 501 template <typename Opt> void apply(Opt &O) const { O.setCallback(CB); } in apply() function 703 template <class Opt> void apply(Opt &O) const { 1267 template <class Opt> static void opt(const Mod &M, Opt &O) { M.apply(O); } [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | APSIntType.h | 37 void apply(llvm::APSInt &Value) const { in apply() function 50 apply(Result); in convert()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonSubtarget.h | 79 void apply(ScheduleDAGInstrs *DAG) override; 82 void apply(ScheduleDAGInstrs *DAG) override; 85 void apply(ScheduleDAGInstrs *DAG) override; 91 void apply(ScheduleDAGInstrs *DAG) override;
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | tuple.cppm | |
| /freebsd/contrib/llvm-project/libcxx/include/__ranges/ |
| H A D | zip_view.h | 63 return std::apply( in __tuple_transform() 72 std::apply( in __tuple_for_each() 119 return std::apply([](auto... __bools) { return (__bools || ...); }, __equals); in __tuple_any_equals() 184 return std::apply( in requires() 195 return std::apply( in requires() 368 return std::apply( 432 return std::apply(
|
| /freebsd/sys/contrib/device-tree/Bindings/phy/ |
| H A D | qcom,usb-hsic-phy.txt | 38 Definition: List of pinctrl settings to apply to keep HSIC pins in a glitch 44 Definition: List of pinctrl settings to apply to mux out the HSIC pins
|