/kernel/linux/linux-6.6/drivers/scsi/qedi/ |
H A D | qedi.h | 120 struct list_head list; member 138 struct list_head list; member 177 struct list_head list; member 371 struct list_head list; member
|
/kernel/linux/linux-6.6/drivers/scsi/lpfc/ |
H A D | lpfc_sli.h | 51 struct list_head list; member 70 struct list_head list; member 179 struct list_head list; /* ptr to next mailbox command */ member 397 struct list_head list; member 405 /* linked list of extra sli4_hybrid_sge */ 408 /* list head for fcp_cmd_rsp buf */ 448 * fcp_cmd, fcp_rsp and a scatter gather bde list that
|
/kernel/linux/linux-6.6/drivers/s390/cio/ |
H A D | airq.c | 56 hlist_add_head_rcu(&airq->list, &airq_lists[airq->isc]); in register_adapter_interrupt() 70 if (hlist_unhashed(&airq->list)) in unregister_adapter_interrupt() 75 hlist_del_rcu(&airq->list); in unregister_adapter_interrupt() 98 hlist_for_each_entry_rcu(airq, head, list) in do_airq_interrupt()
|
/kernel/linux/linux-6.6/lib/reed_solomon/ |
H A D | reed_solomon.c | 52 /* This list holds all currently allocated rs codec structures */ 54 /* Protection for the list */ 80 INIT_LIST_HEAD(&rs->list); in codec_init() 156 list_add(&rs->list, &codec_list); in codec_init() 187 list_del(&cd->list); in free_rs() 243 /* Walk through the list and look for a matching entry */ in init_rs_internal() 245 struct rs_codec *cd = list_entry(tmp, struct rs_codec, list); in init_rs_internal()
|
/kernel/linux/linux-6.6/lib/ |
H A D | klist.c | 8 * struct list_head to provide explicit list "head" (struct klist) and list 10 * included that protects access to the actual list itself. struct 13 * in the list. 15 * The entire point is to provide an interface for iterating over a list 16 * that is safe and allows for modification of the list during the 18 * current node on the list. 22 * next element in the list. It returns NULL if there are no more items. 29 * Only when the count goes to 0 is the node removed from the list. 30 * klist_remove() will try to delete the node from the list an 174 struct list_head list; global() member [all...] |
/kernel/linux/linux-6.6/net/can/j1939/ |
H A D | bus.c | 22 list_del(&ecu->list); in __j1939_ecu_release() 163 INIT_LIST_HEAD(&ecu->list); in j1939_ecu_create_locked() 167 list_add_tail(&ecu->list, &priv->ecus); in j1939_ecu_create_locked() 215 list_for_each_entry(ecu, &priv->ecus, list) { in j1939_ecu_find_by_name_locked()
|
/kernel/linux/linux-6.6/sound/usb/ |
H A D | media.c | 20 #include <linux/list.h> 187 list_for_each_entry(mixer, &chip->mixer_list, list) { in snd_media_mixer_init() 235 list_for_each_entry(mixer, &chip->mixer_list, list) { in snd_media_mixer_delete() 316 list_for_each_entry(stream, &chip->pcm_list, list) { in snd_media_device_delete()
|
/kernel/linux/linux-6.6/sound/soc/intel/avs/boards/ |
H A D | hdaudio.c | 32 pcm = list_first_entry(&codec->pcm_list_head, struct hda_pcm, list); in avs_create_dai_links() 34 for (i = 0; i < pcm_count; i++, pcm = list_next_entry(pcm, list)) { in avs_create_dai_links() 105 list_for_each_entry(hpcm, &codec->pcm_list_head, list) { in avs_card_late_probe() 140 list_for_each_entry(pcm, &codec->pcm_list_head, list) in avs_probing_link_init()
|
/third_party/exfatprogs/lib/ |
H A D | exfat_fs.c | 34 INIT_LIST_HEAD(&node->list); in exfat_alloc_inode() 61 list_del(&node->list); in exfat_free_children() 96 list_for_each_entry_safe(dir, i, &exfat->dir_list, list) { in exfat_free_dir_list() 100 list_del(&dir->list); in exfat_free_dir_list()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
H A D | DataRecord.java | 104 List<ScopeData> list = new ArrayList<ScopeData>(); // of ScopeData in read() 107 list.add(data); in read() 110 record.scopeData = list.toArray(new ScopeData[list.size()]); in read()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
H A D | DisplayNameTest.java | 72 // TODO fix once there is a way to get a list of all script codes 74 // TODO fix once there is a way to get a list of all currency codes 163 ArrayList list = new ArrayList(); in getZoneString() 167 list.add(entry); in getZoneString() 169 data.put(key, list.toArray(new String[list.size()])); in getZoneString() 335 * Hack to get code list
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
H A D | DisplayNameTest.java | 69 // TODO fix once there is a way to get a list of all script codes 71 // TODO fix once there is a way to get a list of all currency codes 160 ArrayList list = new ArrayList(); in getZoneString() 164 list.add(entry); in getZoneString() 166 data.put(key, list.toArray(new String[list.size()])); in getZoneString() 332 * Hack to get code list
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/impl/ |
H A D | DataRecord.java | 106 List<ScopeData> list = new ArrayList<ScopeData>(); // of ScopeData in read() 109 list.add(data); in read() 112 record.scopeData = list.toArray(new ScopeData[list.size()]); in read()
|
/third_party/mesa3d/bin/pick/ |
H A D | ui.py | 109 :previous_commits: A list of commits to main since this branch was created 121 previous_commits: typing.List['core.Commit'] = attr.ib(factory=list, init=False) 122 new_commits: typing.List['core.Commit'] = attr.ib(factory=list, init=False) 172 for commit in reversed(list(itertools.chain(self.new_commits, self.previous_commits))): 207 for c in reversed(list(itertools.chain(self.new_commits, self.previous_commits))):
|
/third_party/mbedtls/scripts/ |
H A D | generate_ssl_debug_helpers.py | 237 matches = list(sig_alg_pattern.finditer(source_code, start, end)) 244 assert isinstance(definitions, list) and definitions 296 matches = list(named_group_pattern.finditer(source_code, start, end)) 303 assert isinstance(definitions, list) and definitions
|
/third_party/node/src/ |
H A D | debug_utils-inl.h | 136 inline void FORCE_INLINE Debug(EnabledDebugList* list, in Debug() argument 140 if (!UNLIKELY(list->enabled(cat))) return; in Debug() 144 inline void FORCE_INLINE Debug(EnabledDebugList* list, in Debug() argument 147 if (!UNLIKELY(list->enabled(cat))) return; in Debug()
|
/third_party/node/test/parallel/ |
H A D | test-perf-hooks-resourcetiming.js | 277 const obs = new PerformanceObserver(common.mustCall((list) => { 279 const entries = list.getEntries(); 284 const entries = list.getEntriesByType('resource'); 289 const entries = list.getEntriesByName('http://localhost:8080');
|
/third_party/mesa3d/src/panfrost/vulkan/ |
H A D | panvk_formats.c | 125 VkDrmFormatModifierPropertiesListEXT *list = in panvk_GetPhysicalDeviceFormatProperties2() local 127 if (list) { in panvk_GetPhysicalDeviceFormatProperties2() 129 list->pDrmFormatModifierProperties, in panvk_GetPhysicalDeviceFormatProperties2() 130 &list->drmFormatModifierCount); in panvk_GetPhysicalDeviceFormatProperties2()
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
H A D | gpir.h | 28 #include "util/list.h" 33 /* list of operations that a node can do. */ 153 struct list_head list; member 214 struct list_head list; member 270 struct list_head list; member 339 struct list_head list; member
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
H A D | node_to_instr.c | 235 * added to the ready list. */ in ppir_node_score() 326 list_for_each_entry(ppir_block, block, &comp->block_list, list) { in ppir_create_instr_from_node() 327 list_for_each_entry(ppir_node, node, &block->node_list, list) { in ppir_create_instr_from_node() 340 list_for_each_entry(ppir_block, block, &comp->block_list, list) { in ppir_build_instr_dependency() 341 list_for_each_entry(ppir_instr, instr, &block->instr_list, list) { in ppir_build_instr_dependency()
|
/third_party/mesa3d/src/gallium/auxiliary/hud/ |
H A D | hud_sensors_temp.c | 33 #include "util/list.h" 58 struct list_head list; member 151 list_for_each_entry(struct sensors_temp_info, sti, &gsensors_temp_list, list) { in find_sti_by_name() 268 list_addtail(&sti->list, &gsensors_temp_list); in create_object() 323 * \param displayhelp true if the list of detected devices should be 351 list_for_each_entry(struct sensors_temp_info, sti, &gsensors_temp_list, list) { in hud_get_num_sensors()
|
/third_party/python/Lib/ |
H A D | filecmp.py | 93 IGNORE is a list of names to ignore, 95 HIDE is a list of names to hide, 110 common: a list of names in both dir1 and dir2. 116 same_files: list of identical files. 117 diff_files: list of filenames which differ. 118 funny_files: list of files which could not be compared. 147 self.common = list(map(a.__getitem__, filter(b.__contains__, a))) 148 self.left_only = list(map(a.__getitem__, filterfalse(b.__contains__, a))) 149 self.right_only = list(map(b.__getitem__, filterfalse(a.__contains__, b))) 262 common -- list o [all...] |
/third_party/skia/third_party/externals/spirv-tools/test/tools/ |
H A D | spirv_test_framework.py | 26 The transformed list elements are then supplied as arguments to the spirv-* 33 a list, its element will be joined together with '' to form a single 76 A list of superclasses of the given class. The order guarantees that 99 A list of validation methods. The order guarantees that 187 * The class needs to have spirv_args defined as a list. 190 of bool, str, or list type. 203 if not isinstance(cls.spirv_args, list): 204 raise SpirvTestException('spirv_args needs to be a list') 209 [isinstance(v, (bool, str, list)) for v in get_all_variables(cls)]): 212 'list typ [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/ |
H A D | spirv_test_framework.py | 26 The transformed list elements are then supplied as arguments to the spirv-* 33 a list, its element will be joined together with '' to form a single 76 A list of superclasses of the given class. The order guarantees that 99 A list of validation methods. The order guarantees that 187 * The class needs to have spirv_args defined as a list. 190 of bool, str, or list type. 203 if not isinstance(cls.spirv_args, list): 204 raise SpirvTestException('spirv_args needs to be a list') 209 [isinstance(v, (bool, str, list)) for v in get_all_variables(cls)]): 212 'list typ [all...] |
/third_party/python/Lib/test/ |
H A D | test_dbm_gnu.py | 114 self.assertEqual(list(db.keys()), [b"gdbm context manager"]) 125 self.assertEqual(list(db.keys()), [b'bytes key \xbd']) 133 self.assertEqual(list(db.keys()), ['Unicode key \U0001f40d'.encode()]) 161 self.assertEqual(list(db.keys()), [b'key'])
|