Home
last modified time | relevance | path

Searched refs:apply (Results 1 – 25 of 484) sorted by relevance

12345678910>>...20

/src/contrib/llvm-project/llvm/lib/XRay/
H A DFDRRecords.cpp18 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 …]
/src/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/
H A DCombine.td33 def apply;
64 /// Declares data that is passed from the match stage to the apply stage.
70 class GICombineRule<dag defs, dag match, dag apply> : GICombine {
79 /// Defines the things which happen after the decision is made to apply a
81 dag Apply = apply;
119 // In an apply pattern, GITypeOf can be used to set the type of a new temporary
122 // This can only be used on temporary registers defined by the apply pattern.
142 // (apply (GIReplaceReg $old, $new))
149 // - Can only appear in an 'apply' pattern.
157 // (apply (GIEraseRoot))
[all …]
/src/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Combine.td18 (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 …]
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCombine.td21 (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 …]
/src/contrib/kyua/engine/
H A Datf_result_test.cpp285 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 …]
/src/contrib/llvm-project/llvm/include/llvm/XRay/
H A DFDRRecords.h66 virtual Error apply(RecordVisitor &V) = 0;
126 Error apply(RecordVisitor &V) override;
151 Error apply(RecordVisitor &V) override;
177 Error apply(RecordVisitor &V) override;
199 Error apply(RecordVisitor &V) override;
228 Error apply(RecordVisitor &V) override;
255 Error apply(RecordVisitor &V) override;
284 Error apply(RecordVisitor &V) override;
306 Error apply(RecordVisitor &V) override;
329 Error apply(RecordVisitor &V) override;
[all …]
/src/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetCallingConv.td28 /// 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 …]
/src/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DOutputSections.cpp171 void SectionDescriptor::apply(uint64_t PatchOffset, dwarf::Form AttrForm, in apply() function in SectionDescriptor
313 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_strp, Entry->Offset); in applyPatches()
333 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_strp, Entry->Offset); in applyPatches()
341 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_line_strp, Entry->Offset); in applyPatches()
361 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_line_strp, Entry->Offset); in applyPatches()
376 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_sec_offset, FinalValue); in applyPatches()
392 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_sec_offset, FinalValue); in applyPatches()
410 Section.apply(Patch.PatchOffset, FinalForm, FinalOffset); in applyPatches()
416 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_udata, in applyPatches()
430 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_ref_addr, in applyPatches()
[all …]
H A DDWARFLinkerUnit.cpp161 OutDebugStrOffsetsSection.apply( in emitDebugStringOffsetSection()
230 OutSection.apply(*NamesLengthOffset - in emitPubAccelerators()
241 OutSection.apply(*TypesLengthOffset - in emitPubAccelerators()
/src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DPBQPRAConstraint.h40 virtual void apply(PBQPRAGraph &G) = 0;
52 void apply(PBQPRAGraph &G) override { in apply() function
54 C->apply(G); in apply()
/src/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-fdr-dump.cpp84 if (auto E = Ptr->apply(RP)) in __anoneb974aca0102()
96 if (auto E = Ptr->apply(BI)) in __anoneb974aca0102()
108 if (auto E = R->apply(BV)) in __anoneb974aca0102()
110 if (auto E = R->apply(BP)) in __anoneb974aca0102()
/src/contrib/elftoolchain/libdwarf/
H A Ddwarf_reloc.c32 dwarf_set_reloc_application(int apply) in dwarf_set_reloc_application() argument
37 _libdwarf.applyreloc = apply; in dwarf_set_reloc_application()
/src/contrib/llvm-project/llvm/lib/TableGen/
H A DSetTheory.cpp39 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, in apply() function
47 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, in apply() function
63 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, in apply() function
82 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, in apply() function
158 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, in apply() function
177 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, in apply() function
304 I->second->apply(*this, DagExpr, Elts, Loc); in evaluate()
/src/contrib/llvm-project/libcxx/include/__memory/
H A Dinout_ptr.h68 …std::apply([&](auto&&... __args) { __s_ = _Smart(static_cast<_SmartPtr>(__p_), std::forward<_Args>… in ~inout_ptr_t()
71 …std::apply([&](auto&&... __args) { __s_.reset(static_cast<_SmartPtr>(__p_), std::forward<_Args>(__… in ~inout_ptr_t()
76 …std::apply([&](auto&&... __args) { __s_ = _Smart(static_cast<_SmartPtr>(__p_), std::forward<_Args>… in ~inout_ptr_t()
H A Dout_ptr.h63 …std::apply([&](auto&&... __args) { __s_.reset(static_cast<_SmartPtr>(__p_), std::forward<_Args>(__… in ~out_ptr_t()
68 …std::apply([&](auto&&... __args) { __s_ = _Smart(static_cast<_SmartPtr>(__p_), std::forward<_Args>… in ~out_ptr_t()
/src/contrib/sqlite3/tea/
H A D_teaish.tester.tcl.in26 apply {{file} {
32 apply {{file} {
38 apply {{file} {
H A DpkgIndex.tcl.in13 package ifneeded {@TEAISH_PKGNAME@} {@TEAISH_VERSION@} [list apply {{dir} {
25 package ifneeded {@TEAISH_PKGNAME@} {@TEAISH_VERSION@} [list apply {{dir} {
/src/sys/dev/sound/pcm/
H A Dfeeder_volume.c102 feed_volume_t apply; member
116 feed_volume_t apply; member
168 info->apply = feed_volume_info_tab[i].apply; in feed_volume_init()
305 info->apply(temp_vol, matrix, info->channels, dst, j); in feed_volume_feed()
/src/sys/netgraph/
H A Dng_base.c2189 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 …]
/src/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.h79 void apply(ScheduleDAGInstrs *DAG) override;
82 void apply(ScheduleDAGInstrs *DAG) override;
85 void apply(ScheduleDAGInstrs *DAG) override;
91 void apply(ScheduleDAGInstrs *DAG) override;
/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h414 void apply(Option &O) const { O.setDescription(Desc); } in apply() function
423 void apply(Option &O) const { O.setValueStr(Desc); } in apply() function
433 template <class Opt> void apply(Opt &O) const { O.setInitialValue(Init); } in apply() function
440 template <class Opt> void apply(Opt &O) const { O.setInitialValues(Inits); } in apply() function
460 template <class Opt> void apply(Opt &O) const { O.setLocation(O, Loc); } in apply() function
473 template <class Opt> void apply(Opt &O) const { O.addCategory(Category); } in apply() function
484 template <class Opt> void apply(Opt &O) const { in apply() function
500 template <typename Opt> void apply(Opt &O) const { O.setCallback(CB); } in apply() function
702 template <class Opt> void apply(Opt &O) const {
1261 template <class Opt> static void opt(const Mod &M, Opt &O) { M.apply(O); }
[all …]
/src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h37 void apply(llvm::APSInt &Value) const { in apply() function
50 apply(Result); in convert()
/src/contrib/llvm-project/libcxx/modules/std/
H A Dtuple.inc30 // [tuple.apply], calling a function with a tuple of arguments
31 using std::apply;
/src/contrib/llvm-project/libcxx/include/__ranges/
H A Dzip_view.h73 return std::apply( in __tuple_transform()
83 std::apply( in __tuple_for_each()
130 return std::apply([](auto... __bools) { return (__bools || ...); }, __equals); in __tuple_any_equals()
195 return std::apply( in requires()
206 return std::apply( in requires()
401 return std::apply(
466 return std::apply(
/src/sys/contrib/dev/iwlwifi/mld/
H A Ddebugfs.c118 struct iwl_mld_sniffer_apply *apply = data; in iwl_mld_sniffer_apply() local
120 apply->mld->monitor.cur_aid = cpu_to_le16(apply->aid); in iwl_mld_sniffer_apply()
121 memcpy(apply->mld->monitor.cur_bssid, apply->bssid, in iwl_mld_sniffer_apply()
122 sizeof(apply->mld->monitor.cur_bssid)); in iwl_mld_sniffer_apply()
133 struct iwl_mld_sniffer_apply apply = { in iwl_dbgfs_he_sniffer_params_write() local
157 apply.aid = aid; in iwl_dbgfs_he_sniffer_params_write()
158 apply.bssid = (void *)he_mon_cmd.bssid; in iwl_dbgfs_he_sniffer_params_write()
170 iwl_mld_sniffer_apply, &apply); in iwl_dbgfs_he_sniffer_params_write()

12345678910>>...20