/external/kmod/libkmod/ |
D | libkmod-internal.h | 74 #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 : \
|
D | libkmod.h | 91 #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/ |
D | inode_com.c | 29 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/v8/src/ic/ |
D | stub-cache.h | 56 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-7.0/llvm/lib/ExecutionEngine/ |
D | GDBRegistrationListener.cpp | 45 struct jit_code_entry *first_entry; member 127 jit_code_entry* NextEntry = __jit_debug_descriptor.first_entry; in NotifyDebugger() 132 __jit_debug_descriptor.first_entry = JITCodeEntry; in NotifyDebugger() 215 assert(__jit_debug_descriptor.first_entry == JITCodeEntry); in deregisterObjectInternal() 216 __jit_debug_descriptor.first_entry = NextEntry; in deregisterObjectInternal()
|
/external/llvm/lib/ExecutionEngine/ |
D | GDBRegistrationListener.cpp | 44 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/tensorflow/tensorflow/lite/micro/memory_planner/ |
D | greedy_memory_planner.cc | 153 ListEntry* first_entry = &buffers_sorted_by_offset_[0]; in CalculateOffsetsIfNeeded() local 154 first_entry->offset = 0; in CalculateOffsetsIfNeeded() 155 first_entry->requirements_index = buffer_ids_sorted_by_size_[0]; in CalculateOffsetsIfNeeded() 156 first_entry->next_entry_index = -1; in CalculateOffsetsIfNeeded() 219 ListEntry* current_entry = first_entry; in CalculateOffsetsIfNeeded()
|
/external/v8/src/objects/ |
D | code.cc | 851 bool first_entry = true; in Disassemble() local 853 if (first_entry) { in Disassemble() 854 first_entry = false; in Disassemble()
|
/external/v8/src/builtins/ |
D | builtins-collections-gen.cc | 764 const TNode<IntPtrT> first_entry = SmiUntag(CAST(UnsafeLoadFixedArrayElement( in FindOrderedHashTableEntry() local 771 TVARIABLE(IntPtrT, var_entry, first_entry); in FindOrderedHashTableEntry()
|
/external/v8/src/compiler/ |
D | effect-control-linearizer.cc | 6335 Node* first_entry = ChangeSmiToIntPtr(__ Load( in LowerFindOrderedHashMapEntryForInt32Key() local 6343 __ Goto(&loop, first_entry); in LowerFindOrderedHashMapEntryForInt32Key()
|