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

1234567891011>>

/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DX86ModRMFilters.cpp14 void ModRMFilter::anchor() { } function in class:ModRMFilter
16 void DumbFilter::anchor() { } function in class:DumbFilter
18 void ModFilter::anchor() { } function in class:ModFilter
20 void EscapeFilter::anchor() { } function in class:EscapeFilter
22 void AddRegEscapeFilter::anchor() { } function in class:AddRegEscapeFilter
24 void ExtendedFilter::anchor() { } function in class:ExtendedFilter
26 void ExactFilter::anchor() { } function in class:ExactFilter
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DAttrImpl.cpp23 void InheritableAttr::anchor() { } function in class:InheritableAttr
25 void InheritableParamAttr::anchor() { } function in class:InheritableParamAttr
27 void MSInheritanceAttr::anchor() { } function in class:MSInheritanceAttr
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DJITCodeEmitter.cpp14 void JITCodeEmitter::anchor() { } function in class:JITCodeEmitter
H A DMachineCodeEmitter.cpp14 void MachineCodeEmitter::anchor() { } function in class:MachineCodeEmitter
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DIntrusiveRefCntPtr.cpp14 void RefCountedBaseVPTR::anchor() { } function in class:RefCountedBaseVPTR
/freebsd-9.3-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.cpp10 // This file just contains the anchor for the AArch64MachineFunctionInfo to
18 void AArch64MachineFunctionInfo::anchor() { } function in class:AArch64MachineFunctionInfo
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/
H A DARMMachineFunctionInfo.cpp14 void ARMFunctionInfo::anchor() { } function in class:ARMFunctionInfo
H A DARMRegisterInfo.cpp19 void ARMRegisterInfo::anchor() { } function in class:ARMRegisterInfo
/freebsd-9.3-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonMachineFunctionInfo.cpp15 void HexagonMachineFunctionInfo::anchor() {} function in class:HexagonMachineFunctionInfo
/freebsd-9.3-release/contrib/llvm/lib/Target/MSP430/
H A DMSP430MachineFunctionInfo.cpp14 void MSP430MachineFunctionInfo::anchor() { } function in class:MSP430MachineFunctionInfo
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCMachineFunctionInfo.cpp14 void PPCFunctionInfo::anchor() { } function in class:PPCFunctionInfo
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/MCTargetDesc/
H A DAMDGPUMCCodeEmitter.cpp20 void AMDGPUMCCodeEmitter::anchor() {} function in class:AMDGPUMCCodeEmitter
/freebsd-9.3-release/contrib/llvm/lib/Target/Sparc/
H A DSparcMachineFunctionInfo.cpp14 void SparcMachineFunctionInfo::anchor() { } function in class:SparcMachineFunctionInfo
/freebsd-9.3-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZMachineFunctionInfo.cpp16 void SystemZMachineFunctionInfo::anchor() {} function in class:SystemZMachineFunctionInfo
/freebsd-9.3-release/contrib/llvm/lib/Target/
H A DTargetJITInfo.cpp14 void TargetJITInfo::anchor() { } function in class:TargetJITInfo
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86MachineFunctionInfo.cpp14 void X86MachineFunctionInfo::anchor() { } function in class:X86MachineFunctionInfo
/freebsd-9.3-release/contrib/llvm/lib/Target/XCore/
H A DXCoreMachineFunctionInfo.cpp14 void XCoreFunctionInfo::anchor() { } function in class:XCoreFunctionInfo
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DDominators.cpp14 void DominatorTree::anchor() { } function in class:DominatorTree
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DChainedDiagnosticConsumer.cpp14 void ChainedDiagnosticConsumer::anchor() { } function in class:ChainedDiagnosticConsumer
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPCallbacks.cpp14 void PPChainedCallbacks::anchor() { } function in class:PPChainedCallbacks
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaConsumer.cpp14 void SemaConsumer::anchor() { } function in class:SemaConsumer
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DSubEngine.cpp14 void SubEngine::anchor() { } function in class:SubEngine
/freebsd-9.3-release/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 ths 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-9.3-release/contrib/llvm/lib/MC/
H A DMCAsmInfoELF.cpp18 void MCAsmInfoELF::anchor() { } function in class:MCAsmInfoELF

Completed in 241 milliseconds

1234567891011>>