Searched refs:chain_head (Results 1 – 3 of 3) sorted by relevance
/external/libchrome/base/allocator/ |
D | allocator_shim.cc | 104 const allocator::AllocatorDispatch* const chain_head = GetChainHead(); in UncheckedAlloc() local 105 return chain_head->alloc_function(chain_head, size, nullptr); in UncheckedAlloc() 112 const AllocatorDispatch* chain_head = GetChainHead(); in InsertAllocatorDispatch() local 113 dispatch->next = chain_head; in InsertAllocatorDispatch() 123 reinterpret_cast<subtle::AtomicWord>(chain_head); in InsertAllocatorDispatch() 166 const allocator::AllocatorDispatch* const chain_head = GetChainHead(); in ShimCppNew() local 173 ptr = chain_head->alloc_function(chain_head, size, context); in ShimCppNew() 183 const allocator::AllocatorDispatch* const chain_head = GetChainHead(); in ShimCppDelete() local 184 return chain_head->free_function(chain_head, address, context); in ShimCppDelete() 188 const allocator::AllocatorDispatch* const chain_head = GetChainHead(); in ShimMalloc() local [all …]
|
/external/iptables/libiptc/ |
D | libiptc.c | 77 struct chain_head; 101 struct chain_head *chain; 108 struct chain_head *jump; /* jump target, if IPTCC_R_JUMP */ 114 struct chain_head struct 140 struct chain_head *chain_iterator_cur; argument 145 struct chain_head **chain_index; /* array for fast chain list access*/ 163 static struct chain_head *iptcc_alloc_chain_head(const char *name, int hooknum) in iptcc_alloc_chain_head() 165 struct chain_head *c = malloc(sizeof(*c)); in iptcc_alloc_chain_head() 178 static struct rule_head *iptcc_alloc_rule(struct chain_head *c, unsigned int size) in iptcc_alloc_rule() 322 static inline unsigned int iptcc_is_builtin(struct chain_head *c); [all …]
|
/external/vulkan-validation-layers/loader/ |
D | trampoline.c | 112 VkEnumerateInstanceExtensionPropertiesChain *chain_head = &chain_tail; in vkEnumerateInstanceExtensionProperties() local 154 chain_link->pNextLink = chain_head; in vkEnumerateInstanceExtensionProperties() 156 chain_head = chain_link; in vkEnumerateInstanceExtensionProperties() 161 … res = chain_head->pfnNextLayer(chain_head->pNextLink, pLayerName, pPropertyCount, pProperties); in vkEnumerateInstanceExtensionProperties() 168 while (chain_head != &chain_tail) { in vkEnumerateInstanceExtensionProperties() 169 VkEnumerateInstanceExtensionPropertiesChain *holder = chain_head; in vkEnumerateInstanceExtensionProperties() 170 chain_head = (VkEnumerateInstanceExtensionPropertiesChain *)chain_head->pNextLink; in vkEnumerateInstanceExtensionProperties() 200 VkEnumerateInstanceLayerPropertiesChain *chain_head = &chain_tail; in vkEnumerateInstanceLayerProperties() local 242 chain_link->pNextLink = chain_head; in vkEnumerateInstanceLayerProperties() 244 chain_head = chain_link; in vkEnumerateInstanceLayerProperties() [all …]
|