Home
last modified time | relevance | path

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

12345678910>>...19

/freebsd-14.2/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 …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/
H A DCombine.td33 def apply;
81 dag Apply = apply;
157 // (apply (GIEraseRoot))
255 (apply [{
427 (apply (GIReplaceReg $dst, $y))
479 (apply (GIReplaceReg $dst, $x))
486 (apply (GIReplaceReg $dst, $x))
765 (apply (G_FABS $dst, $x))>;
824 (apply (G_SUB $dst, 0, $x))
905 (apply (COPY $x, $z))
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Combine.td18 (apply [{ applyFConstantToConstant(*${root}); }])>;
114 (apply [{ applyEXT(*${root}, ${matchinfo}); }])
122 (apply [{ applyINS(*${root}, MRI, B, ${matchinfo}); }])
130 (apply [{ applyVAshrLshrImm(*${root}, MRI, ${matchinfo}); }])
139 (apply [{ applyDupLane(*${root}, MRI, B, ${matchinfo}); }])
151 (apply [{ applyScalarizeVectorUnmerge(*${root}, MRI, B); }])
167 (apply [{ applySwapICmpOperands(*${root}, Observer); }])
192 (apply [{ applyExtMulToMULL(*${root}, MRI, B, Observer); }])
199 (apply [{ applyBuildVectorToDup(*${root}, MRI, B); }])
208 (apply [{ applyLowerVectorFCMP(*${root}, MRI, B); }])>;
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCombine.td27 (apply [{ applyUCharToFloat(*${itofp}); }])>;
34 (apply [{ Helper.applyBuildFn(*${rcp}, ${matchinfo}); }])>;
46 (apply [{ applyCvtF32UByteN(*${cvt_f32_ubyteN}, ${matchinfo}); }])>;
65 (apply [{ applyMed3(*${min_or_max}, ${matchinfo}); }])>;
74 (apply [{ applyMed3(*${min_or_max}, ${matchinfo}); }])>;
83 (apply [{ applyClamp(*${min_or_max}, ${matchinfo}); }])>;
89 (apply [{ applyClamp(*${fmed3}, ${matchinfo}); }])>;
105 (apply [{ Helper.applyFoldableFneg(*${ffn}, ${matchinfo}); }])>;
112 (apply [{ applyCombine_s_mul_u64(*${smul}, ${matchinfo}); }])>;
143 // Combines which should only apply on SI/CI
[all …]
/freebsd-14.2/contrib/kyua/engine/
H A Datf_result_test.cpp296 timed_out.apply(none)); in ATF_TEST_CASE_BODY()
352 any_code.apply(utils::make_optional(sig3))); in ATF_TEST_CASE_BODY()
384 xfailure.apply(utils::make_optional(sig3))); in ATF_TEST_CASE_BODY()
420 a_sig.apply(utils::make_optional(sig5))); in ATF_TEST_CASE_BODY()
443 ATF_REQUIRE_EQ(timeout, timeout.apply(none)); in ATF_TEST_CASE_BODY()
486 failed.apply(utils::make_optional(sig3))); in ATF_TEST_CASE_BODY()
491 failed.apply(utils::make_optional(sig4))); in ATF_TEST_CASE_BODY()
521 passed.apply(utils::make_optional(sig3))); in ATF_TEST_CASE_BODY()
526 passed.apply(utils::make_optional(sig4))); in ATF_TEST_CASE_BODY()
556 skipped.apply(utils::make_optional(sig3))); in ATF_TEST_CASE_BODY()
[all …]
/freebsd-14.2/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 …]
/freebsd-14.2/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.
82 /// CCIfNest - If this argument is marked with the 'nest' attribute, apply
[all …]
/freebsd-14.2/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()
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()
456 Section.apply(Patch.PatchOffset, dwarf::DW_FORM_ref4, in applyPatches()
[all …]
H A DDWARFLinkerUnit.cpp163 OutDebugStrOffsetsSection.apply( in emitDebugStringOffsetSection()
232 OutSection.apply(*NamesLengthOffset - in emitPubAccelerators()
243 OutSection.apply(*TypesLengthOffset - in emitPubAccelerators()
/freebsd-14.2/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()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-fdr-dump.cpp84 if (auto E = Ptr->apply(RP)) in __anon5dc80c0b0102()
96 if (auto E = Ptr->apply(BI)) in __anon5dc80c0b0102()
108 if (auto E = R->apply(BV)) in __anon5dc80c0b0102()
110 if (auto E = R->apply(BP)) in __anon5dc80c0b0102()
/freebsd-14.2/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()
/freebsd-14.2/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()
/freebsd-14.2/sys/dev/sound/pcm/
H A Dfeeder_volume.c97 feed_volume_t apply; member
111 feed_volume_t apply; member
161 info->apply = feed_volume_info_tab[i].apply; in feed_volume_init()
291 info->apply(temp_vol, matrix, info->channels, dst, j); in feed_volume_feed()
H A Dfeeder_matrix.c72 feed_matrix_t apply; member
204 feed_matrix_t apply; member
414 info->apply = NULL; in feed_matrix_init()
416 for (i = 0; info->apply == NULL && in feed_matrix_init()
419 info->apply = feed_matrix_tab[i].apply; in feed_matrix_init()
422 if (info->apply == NULL) { in feed_matrix_init()
430 info->apply = feed_matrix_apply_generic; in feed_matrix_init()
513 info->apply(info, src, dst, j); in feed_matrix_feed()
/freebsd-14.2/sys/netgraph/
H A Dng_base.c2189 if (item->apply != NULL) { in ng_flush_input_queue()
2193 (*item->apply->apply)(item->apply->context, in ng_flush_input_queue()
2243 if (item->apply) in ng_snd_item()
2344 if (item->apply != NULL) { in ng_snd_item()
2348 (*item->apply->apply)(item->apply->context, in ng_snd_item()
2349 item->apply->error); in ng_snd_item()
2381 apply = item->apply; in ng_apply_item()
2498 if (apply != NULL) { in ng_apply_item()
2500 apply->error = error; in ng_apply_item()
2502 (*apply->apply)(apply->context, apply->error); in ng_apply_item()
[all …]
H A Dng_socket.c228 struct ng_apply_info apply; in ngc_send() local
342 bzero(&apply, sizeof(apply)); in ngc_send()
343 apply.apply = ng_socket_item_applied; in ngc_send()
344 apply.context = priv; in ngc_send()
345 item->apply = &apply; in ngc_send()
/freebsd-14.2/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()
/freebsd-14.2/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;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h430 void apply(Option &O) const { O.setValueStr(Desc); } in apply() function
491 template <class Opt> void apply(Opt &O) const { in apply() function
709 template <class Opt> void apply(Opt &O) const {
1316 void apply(Opt *O, const Mod &M, const Mods &... Ms) {
1318 apply(O, Ms...);
1507 apply(this, Ms...);
1747 apply(this, Ms...);
1766 void apply(list<D, S, P> &L) const {
1903 apply(this, Ms...);
1973 apply(this, Ms...);
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/modules/std/
H A Dtuple.inc30 // [tuple.apply], calling a function with a tuple of arguments
31 using std::apply;
/freebsd-14.2/contrib/llvm-project/libcxx/include/__ranges/
H A Dzip_view.h72 return std::apply( in __tuple_transform()
82 std::apply( in __tuple_for_each()
129 return std::apply([](auto... __bools) { return (__bools || ...); }, __equals); in __tuple_any_equals()
194 return std::apply( in requires()
205 return std::apply( in requires()
400 return std::apply(
465 return std::apply(
/freebsd-14.2/tools/tools/git/
H A Dgit-arc.sh70 patch -- Try to apply a patch from a Differential revision to the
531 arc diff --message "$msg" --allow-untracked --never-apply-patches \
534 arc diff --allow-untracked --never-apply-patches --update "$diff" \
/freebsd-14.2/sys/contrib/device-tree/Bindings/phy/
H A Dqcom,usb-hsic-phy.txt38 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
/freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_user/misc/
H A Dmisc.cfg40 # these are a set of values we apply, for use when testing the
65 # these are a set of values we apply, for use when testing the
92 # these are a set of values we apply, for use when testing the

12345678910>>...19