Searched refs:anchor (Results 1 - 25 of 382) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DDominators.cpp14 void CFGDominatorTreeImpl</*IsPostDom=*/true>::anchor() {} function in class:clang::CFGDominatorTreeImpl
17 void CFGDominatorTreeImpl</*IsPostDom=*/false>::anchor() {} function in class:clang::CFGDominatorTreeImpl
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86ModRMFilters.cpp13 void ModRMFilter::anchor() { } function in class:ModRMFilter
15 void DumbFilter::anchor() { } function in class:DumbFilter
17 void ModFilter::anchor() { } function in class:ModFilter
19 void ExtendedFilter::anchor() { } function in class:ExtendedFilter
21 void ExactFilter::anchor() { } function in class:ExactFilter
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPCallbacks.cpp13 void PPChainedCallbacks::anchor() { } function in class:PPChainedCallbacks
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaConsumer.cpp13 void SemaConsumer::anchor() { } function in class:SemaConsumer
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonMachineFunctionInfo.cpp14 void HexagonMachineFunctionInfo::anchor() {} function in class:HexagonMachineFunctionInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430MachineFunctionInfo.cpp13 void MSP430MachineFunctionInfo::anchor() { } function in class:MSP430MachineFunctionInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcMachineFunctionInfo.cpp13 void SparcMachineFunctionInfo::anchor() { } function in class:SparcMachineFunctionInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMachineFunctionInfo.cpp15 void SystemZMachineFunctionInfo::anchor() {} function in class:SystemZMachineFunctionInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUMCCodeEmitter.cpp19 void AMDGPUMCCodeEmitter::anchor() {} function in class:AMDGPUMCCodeEmitter
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCMachineFunctionInfo.cpp13 void ARCFunctionInfo::anchor() {} function in class:ARCFunctionInfo
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DChainedDiagnosticConsumer.cpp13 void ChainedDiagnosticConsumer::anchor() { } function in class:ChainedDiagnosticConsumer
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/
H A DHWEventListener.cpp10 /// This file defines a vtable anchor for class HWEventListener.
20 void HWEventListener::anchor() {} function in class:llvm::mca::HWEventListener
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSubEngine.cpp13 void SubEngine::anchor() { } function in class:SubEngine
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DView.cpp10 /// This file defines the virtual anchor method in View.h to pin the vtable.
19 void View::anchor() {} function in class:llvm::mca::View
/freebsd-11-stable/sys/dev/isci/scil/
H A Dsci_simple_list.h67 * 2) it is possible to detach the entire list from its anchor
82 * Initialize the singely linked list anchor. The other macros require the
83 * list anchor to be properly initialized.
85 #define sci_simple_list_init(anchor) \
87 (anchor)->list_head = NULL; \
88 (anchor)->list_tail = NULL; \
89 (anchor)->list_count = 0; \
105 #define sci_simple_list_is_empty(anchor) ((anchor)->list_head == NULL)
111 #define sci_simple_list_get_head(anchor) ((ancho
173 sci_simple_list_insert_head( SCI_SIMPLE_LIST_T * anchor, SCI_SIMPLE_LIST_ELEMENT_T *element ) argument
200 sci_simple_list_insert_tail( SCI_SIMPLE_LIST_T * anchor, SCI_SIMPLE_LIST_ELEMENT_T *element ) argument
[all...]
H A Dsci_fast_list.h70 * - anchor : This is the list container and has a
85 * Initialize the double linked list anchor. The other macros require the list
86 * anchor to be set up using this macro.
88 #define sci_fast_list_init(anchor) \
90 (anchor)->list_head = NULL; \
91 (anchor)->list_tail = NULL; \
92 (anchor)->element_count = 0; \
106 * See if there is anything on the list by checking the list anchor.
108 #define sci_fast_list_is_empty(anchor) ((anchor)
219 sci_fast_list_insert_head( SCI_FAST_LIST_T *anchor, SCI_FAST_LIST_ELEMENT_T *element ) argument
246 sci_fast_list_insert_tail( SCI_FAST_LIST_T *anchor, SCI_FAST_LIST_ELEMENT_T *element ) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMRegisterInfo.cpp16 void ARMRegisterInfo::anchor() { } function in class:ARMRegisterInfo
H A DARMRegisterInfo.h23 virtual void anchor();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmInfoWasm.cpp17 void MCAsmInfoWasm::anchor() {} function in class:MCAsmInfoWasm
H A DMCAsmInfoCOFF.cpp19 void MCAsmInfoCOFF::anchor() {} function in class:MCAsmInfoCOFF
54 void MCAsmInfoMicrosoft::anchor() {} function in class:MCAsmInfoMicrosoft
58 void MCAsmInfoGNUCOFF::anchor() {} function in class:MCAsmInfoGNUCOFF
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAsmInfoCOFF.h17 virtual void anchor();
24 void anchor() override;
31 void anchor() override;
H A DMCAsmInfoWasm.h16 virtual void anchor();
/freebsd-11-stable/sys/netpfil/pf/
H A Dpf_ruleset.c176 struct pf_anchor *anchor; local
182 anchor = pf_find_anchor(path);
183 if (anchor == NULL)
186 return (&anchor->ruleset);
194 struct pf_anchor *anchor = NULL, *dup, *parent = NULL; local
210 parent = ruleset->anchor;
232 anchor = (struct pf_anchor *)rs_malloc(sizeof(*anchor));
233 if (anchor == NULL) {
237 RB_INIT(&anchor
[all...]
/freebsd-11-stable/usr.sbin/unbound/
H A DMakefile3 SUBDIR= daemon anchor checkconf control
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiMachineFunctionInfo.cpp13 void LanaiMachineFunctionInfo::anchor() {} function in class:LanaiMachineFunctionInfo

Completed in 179 milliseconds

1234567891011>>