Home
last modified time | relevance | path

Searched refs:first_entry (Results 1 – 7 of 7) sorted by relevance

/external/kmod/libkmod/
Dlibkmod-internal.h74 #define kmod_list_foreach(list_entry, first_entry) \ argument
75 for (list_entry = ((first_entry) == NULL) ? NULL : (first_entry); \
77 list_entry = (list_entry->node.next == &((first_entry)->node)) ? NULL : \
81 #define kmod_list_foreach_reverse(list_entry, first_entry) \ argument
82 …for (list_entry = (((first_entry) == NULL) ? NULL : container_of(first_entry->node.prev, struct km…
84 list_entry = ((list_entry == first_entry) ? NULL : \
Dlibkmod.h91 #define kmod_list_foreach(list_entry, first_entry) \ argument
92 for (list_entry = first_entry; \
94 list_entry = kmod_list_next(first_entry, list_entry))
96 #define kmod_list_foreach_reverse(list_entry, first_entry) \ argument
97 for (list_entry = kmod_list_last(first_entry); \
99 list_entry = kmod_list_prev(first_entry, list_entry))
/external/e2fsprogs/ext2ed/
Dinode_com.c29 long group_num,group_offset,entry_num,block_num,first_entry,last_entry; in type_ext2_inode___prev() local
49 first_entry=0;last_entry=file_system_info.super_block.s_inodes_per_group-1; in type_ext2_inode___prev()
76 long group_num,group_offset,entry_num,block_num,first_entry,last_entry; in type_ext2_inode___next() local
97 first_entry=0;last_entry=file_system_info.super_block.s_inodes_per_group-1; in type_ext2_inode___next()
127 long group_num,group_offset,entry_num,block_num,first_entry,last_entry,inode_num; in type_ext2_inode___show() local
138 first_entry=0;last_entry=file_system_info.super_block.s_inodes_per_group-1; in type_ext2_inode___show()
276 if (entry_num==first_entry) { in type_ext2_inode___show()
403 long group_num,group_offset,entry_num,block_num,first_entry,last_entry,inode_num; in inode_offset_to_inode_num() local
414 first_entry=0;last_entry=file_system_info.super_block.s_inodes_per_group-1; in inode_offset_to_inode_num()
/external/llvm/lib/ExecutionEngine/
DGDBRegistrationListener.cpp44 struct jit_code_entry *first_entry; member
136 jit_code_entry* NextEntry = __jit_debug_descriptor.first_entry; in NotifyDebugger()
141 __jit_debug_descriptor.first_entry = JITCodeEntry; in NotifyDebugger()
224 assert(__jit_debug_descriptor.first_entry == JITCodeEntry); in deregisterObjectInternal()
225 __jit_debug_descriptor.first_entry = NextEntry; in deregisterObjectInternal()
/external/v8/src/ic/
Dstub-cache.h56 reinterpret_cast<Address>(&first_entry(table)->key)); in key_reference()
61 reinterpret_cast<Address>(&first_entry(table)->map)); in map_reference()
66 reinterpret_cast<Address>(&first_entry(table)->value)); in value_reference()
69 StubCache::Entry* first_entry(StubCache::Table table) { in first_entry() function
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
DJITDebugRegisterer.cpp154 jit_code_entry *NextEntry = __jit_debug_descriptor.first_entry; in RegisterFunction()
159 __jit_debug_descriptor.first_entry = JITCodeEntry; in RegisterFunction()
183 assert(__jit_debug_descriptor.first_entry == JITCodeEntry); in UnregisterFunctionInternal()
184 __jit_debug_descriptor.first_entry = NextEntry; in UnregisterFunctionInternal()
DJITDebugRegisterer.h44 struct jit_code_entry *first_entry; member