/kernel/linux/linux-6.6/arch/sh/kernel/cpu/sh4/ |
H A D | sq.c | 34 struct sq_mapping *next; member 78 p = &tmp->next; in sq_mapping_list_add() 80 map->next = tmp; in sq_mapping_list_add() 92 for (p = &sq_mapping_list; (tmp = *p); p = &tmp->next) in sq_mapping_list_del() 94 *p = tmp->next; in sq_mapping_list_del() 139 * Remaps the physical address @phys through the next available store queue 212 for (p = &sq_mapping_list; (map = *p); p = &map->next) in sq_unmap() 294 for (list = &sq_mapping_list; (entry = *list); list = &entry->next) in mapping_show()
|
/kernel/linux/linux-5.10/drivers/media/pci/saa7134/ |
H A D | saa7134-ts.c | 33 struct saa7134_buf *next) in buffer_activate() 42 if (NULL == next) in buffer_activate() 43 next = buf; in buffer_activate() 45 ts_dbg("- [top] buf=%p next=%p\n", buf, next); in buffer_activate() 47 saa_writel(SAA7134_RS_BA2(5),saa7134_buffer_base(next)); in buffer_activate() 50 ts_dbg("- [bottom] buf=%p next=%p\n", buf, next); in buffer_activate() 51 saa_writel(SAA7134_RS_BA1(5),saa7134_buffer_base(next)); in buffer_activate() 31 buffer_activate(struct saa7134_dev *dev, struct saa7134_buf *buf, struct saa7134_buf *next) buffer_activate() argument
|
/kernel/linux/linux-5.10/drivers/vfio/mdev/ |
H A D | mdev_core.c | 71 list_for_each_entry(parent, &parent_list, next) { in __find_parent_device() 195 list_add(&parent->next, &parent_list); in mdev_register_device() 236 list_del(&parent->next); in mdev_unregister_device() 258 list_del(&mdev->next); in mdev_device_free() 287 list_for_each_entry(tmp, &mdev_list, next) { in mdev_device_create() 303 list_add(&mdev->next, &mdev_list); in mdev_device_create() 361 list_for_each_entry(tmp, &mdev_list, next) { in mdev_device_remove()
|
/kernel/linux/linux-5.10/net/sunrpc/ |
H A D | stats.c | 266 struct rpc_clnt *next = clnt; in rpc_clnt_show_stats() local 268 _add_rpc_iostats(&stats, &next->cl_metrics[op]); in rpc_clnt_show_stats() 269 if (next == next->cl_parent) in rpc_clnt_show_stats() 271 next = next->cl_parent; in rpc_clnt_show_stats() 272 } while (next); in rpc_clnt_show_stats()
|
/kernel/linux/linux-5.10/scripts/dtc/ |
H A D | dtc.h | 110 struct marker *next; member 123 for (; (m); (m) = (m)->next) 163 struct label *next; member 175 struct property *next; member 204 for ((l) = (l0); (l); (l) = (l)->next) 211 for ((p) = (n)->proplist; (p); (p) = (p)->next) 275 struct reserve_info *next; member
|
/kernel/linux/linux-5.10/sound/isa/gus/ |
H A D | gus_dma.c | 91 gus->gf1.dma_data_pcm = block->next; in snd_gf1_dma_next_block() 99 gus->gf1.dma_data_synth = block->next; in snd_gf1_dma_next_block() 168 gus->gf1.dma_data_pcm = block->next; in snd_gf1_dma_done() 172 gus->gf1.dma_data_synth = block->next; in snd_gf1_dma_done() 195 block->next = NULL; in snd_gf1_dma_transfer_block() 209 gus->gf1.dma_data_synth_last->next = block; in snd_gf1_dma_transfer_block() 217 gus->gf1.dma_data_pcm_last->next = block; in snd_gf1_dma_transfer_block()
|
/kernel/linux/linux-5.10/scripts/genksyms/ |
H A D | parse.y | 30 *p = node->next; 57 r->next = (*keyw)->next; *body = r; (*keyw)->next = NULL; 140 struct string_list *decl = (*$3)->next; 141 (*$3)->next = NULL; 410 { remove_list($2, &(*$1)->next); $$ = $2; }
|
/kernel/linux/linux-5.10/lib/ |
H A D | bootconfig.c | 22 * simply a key word or a value. A key node may have a next key node or/and 23 * a child node (both key and value). A value node may have a next value 95 * xbc_node_get_next() - Get the next sibling XBC node 98 * Return the NEXT sibling node of @node. If the node has no next sibling, 105 return node->next ? &xbc_nodes[node->next] : NULL; in xbc_node_get_next() 266 * xbc_node_find_next_leaf() - Find the next leaf node under given node 270 * Search the next leaf node (which means the terminal key node) of @node 272 * Return the next node or NULL if next lea 517 char *next; xbc_parse_array() local 597 char *next; xbc_parse_kv() local [all...] |
/kernel/linux/linux-5.10/kernel/gcov/ |
H A D | gcc_4_7.c | 86 * @next: list head for a singly-linked list 95 * at run-time with the exception of the next pointer. 99 struct gcov_info *next; member 130 * gcov_info_next - return next profiling data set 133 * Returns next gcov_info following @info or first gcov_info in the chain if 141 return info->next; in gcov_info_next() 150 info->next = gcov_info_head; in gcov_info_link() 162 prev->next = info->next; in gcov_info_unlink() 164 gcov_info_head = info->next; in gcov_info_unlink() [all...] |
/kernel/linux/linux-5.10/drivers/greybus/ |
H A D | manifest.c | 54 struct manifest_desc *next; in release_manifest_descriptors() local 56 list_for_each_entry_safe(descriptor, next, &intf->manifest_descs, links) in release_manifest_descriptors() 79 struct manifest_desc *next; in get_next_bundle_desc() local 81 list_for_each_entry_safe(descriptor, next, &intf->manifest_descs, links) in get_next_bundle_desc() 232 struct manifest_desc *desc, *next, *tmp; in gb_manifest_parse_cports() local 240 list_for_each_entry_safe(desc, next, &intf->manifest_descs, links) { in gb_manifest_parse_cports() 286 list_for_each_entry_safe(desc, next, &list, links) { in gb_manifest_parse_cports()
|
/kernel/linux/linux-6.6/drivers/net/appletalk/ |
H A D | ipddp.c | 135 for(rt = ipddp_route_list; rt != NULL; rt = rt->next) in ipddp_xmit() 206 rt->next = NULL; in ipddp_create() 219 rt->next = ipddp_route_list; in ipddp_create() 243 *r = tmp->next; in ipddp_delete() 248 r = &tmp->next; in ipddp_delete() 262 for(f = ipddp_route_list; f != NULL; f = f->next) in __ipddp_find_route() 338 p = ipddp_route_list->next; in ipddp_cleanup_module()
|
/kernel/linux/linux-6.6/drivers/clocksource/ |
H A D | em_sti.c | 116 static u64 em_sti_set_next(struct em_sti_priv *p, u64 next) in em_sti_set_next() argument 126 em_sti_write(p, STI_COMPA_H, next >> 32); in em_sti_set_next() 127 em_sti_write(p, STI_COMPA_L, next & 0xffffffff); in em_sti_set_next() 137 return next; in em_sti_set_next() 253 u64 next; in em_sti_clock_event_next() local 256 next = em_sti_set_next(p, em_sti_count(p) + delta); in em_sti_clock_event_next() 257 safe = em_sti_count(p) < (next - 1); in em_sti_clock_event_next()
|
/kernel/linux/linux-6.6/kernel/gcov/ |
H A D | gcc_4_7.c | 83 * @next: list head for a singly-linked list 92 * at run-time with the exception of the next pointer. 96 struct gcov_info *next; member 127 * gcov_info_next - return next profiling data set 130 * Returns next gcov_info following @info or first gcov_info in the chain if 138 return info->next; in gcov_info_next() 147 info->next = gcov_info_head; in gcov_info_link() 159 prev->next = info->next; in gcov_info_unlink() 161 gcov_info_head = info->next; in gcov_info_unlink() [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/saa7134/ |
H A D | saa7134-ts.c | 33 struct saa7134_buf *next) in buffer_activate() 42 if (NULL == next) in buffer_activate() 43 next = buf; in buffer_activate() 45 ts_dbg("- [top] buf=%p next=%p\n", buf, next); in buffer_activate() 47 saa_writel(SAA7134_RS_BA2(5),saa7134_buffer_base(next)); in buffer_activate() 50 ts_dbg("- [bottom] buf=%p next=%p\n", buf, next); in buffer_activate() 51 saa_writel(SAA7134_RS_BA1(5),saa7134_buffer_base(next)); in buffer_activate() 31 buffer_activate(struct saa7134_dev *dev, struct saa7134_buf *buf, struct saa7134_buf *next) buffer_activate() argument
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/ |
H A D | i915_gem_evict.c | 11 * The above copyright notice and this permission notice (including the next 157 struct i915_vma *vma, *next; in i915_gem_evict_something() local 199 list_for_each_entry_safe(vma, next, &vm->bound_list, vm_link) { in i915_gem_evict_something() 235 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) { in i915_gem_evict_something() 256 * enabling us to evict them on the next iteration. in i915_gem_evict_something() 282 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) { in i915_gem_evict_something() 293 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) { in i915_gem_evict_something() 337 struct i915_vma *vma, *next; in i915_gem_evict_for_node() local 428 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) { in i915_gem_evict_for_node()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gvt/ |
H A D | cfg_space.c | 11 * The above copyright notice and this permission notice (including the next 326 u8 next; in intel_vgpu_init_cfg_space() local 366 next = vgpu_cfg_space(vgpu)[PCI_CAPABILITY_LIST]; in intel_vgpu_init_cfg_space() 368 if (vgpu_cfg_space(vgpu)[next + PCI_CAP_LIST_ID] == PCI_CAP_ID_PM) { in intel_vgpu_init_cfg_space() 369 vgpu->cfg_space.pmcsr_off = next + PCI_PM_CTRL; in intel_vgpu_init_cfg_space() 372 next = vgpu_cfg_space(vgpu)[next + PCI_CAP_LIST_NEXT]; in intel_vgpu_init_cfg_space() 373 } while (next); in intel_vgpu_init_cfg_space()
|
/kernel/linux/linux-6.6/drivers/greybus/ |
H A D | manifest.c | 54 struct manifest_desc *next; in release_manifest_descriptors() local 56 list_for_each_entry_safe(descriptor, next, &intf->manifest_descs, links) in release_manifest_descriptors() 79 struct manifest_desc *next; in get_next_bundle_desc() local 81 list_for_each_entry_safe(descriptor, next, &intf->manifest_descs, links) in get_next_bundle_desc() 232 struct manifest_desc *desc, *next, *tmp; in gb_manifest_parse_cports() local 240 list_for_each_entry_safe(desc, next, &intf->manifest_descs, links) { in gb_manifest_parse_cports() 286 list_for_each_entry_safe(desc, next, &list, links) { in gb_manifest_parse_cports()
|
/kernel/linux/linux-6.6/net/sunrpc/ |
H A D | stats.c | 271 struct rpc_clnt *next = clnt; in rpc_clnt_show_stats() local 273 _add_rpc_iostats(&stats, &next->cl_metrics[op]); in rpc_clnt_show_stats() 274 if (next == next->cl_parent) in rpc_clnt_show_stats() 276 next = next->cl_parent; in rpc_clnt_show_stats() 277 } while (next); in rpc_clnt_show_stats()
|
/kernel/linux/linux-6.6/scripts/genksyms/ |
H A D | parse.y | 30 *p = node->next; 57 r->next = (*keyw)->next; *body = r; (*keyw)->next = NULL; 143 struct string_list *decl = (*$3)->next; 144 (*$3)->next = NULL; 413 { remove_list($2, &(*$1)->next); $$ = $2; }
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/ |
H A D | unpriv_bpf_disabled.c | 159 __u32 next; in test_unpriv_bpf_disabled_negative() local 166 * - get next prog/map/link id in test_unpriv_bpf_disabled_negative() 183 ASSERT_EQ(bpf_prog_get_next_id(prog_id, &next), -EPERM, "prog_get_next_id_fails"); in test_unpriv_bpf_disabled_negative() 184 ASSERT_EQ(bpf_prog_get_next_id(0, &next), -EPERM, "prog_get_next_id_fails"); in test_unpriv_bpf_disabled_negative() 189 ASSERT_EQ(bpf_map_get_next_id(map_info.id, &next), -EPERM, in test_unpriv_bpf_disabled_negative() 192 ASSERT_EQ(bpf_map_get_next_id(0, &next), -EPERM, "map_get_next_id_fails"); in test_unpriv_bpf_disabled_negative() 198 ASSERT_EQ(bpf_link_get_next_id(link_info.id, &next), -EPERM, in test_unpriv_bpf_disabled_negative() 201 ASSERT_EQ(bpf_link_get_next_id(0, &next), -EPERM, "link_get_next_id_fails"); in test_unpriv_bpf_disabled_negative()
|
/kernel/linux/linux-6.6/sound/isa/gus/ |
H A D | gus_dma.c | 91 gus->gf1.dma_data_pcm = block->next; in snd_gf1_dma_next_block() 99 gus->gf1.dma_data_synth = block->next; in snd_gf1_dma_next_block() 168 gus->gf1.dma_data_pcm = block->next; in snd_gf1_dma_done() 172 gus->gf1.dma_data_synth = block->next; in snd_gf1_dma_done() 195 block->next = NULL; in snd_gf1_dma_transfer_block() 209 gus->gf1.dma_data_synth_last->next = block; in snd_gf1_dma_transfer_block() 217 gus->gf1.dma_data_pcm_last->next = block; in snd_gf1_dma_transfer_block()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | lower_int64.cpp | 11 * The above copyright notice and this permission notice (including the next 152 exec_node *const before = instructions->head_sentinel.next; in lower_64bit_integer_instructions() 153 exec_node *const head = v.function_list.head_sentinel.next; in lower_64bit_integer_instructions() 156 before->next = head; in lower_64bit_integer_instructions() 160 tail->next = after; in lower_64bit_integer_instructions() 303 exec_node *const head = instructions.head_sentinel.next; in lower_op_to_function_call() 306 before->next = head; in lower_op_to_function_call() 310 tail->next = after; in lower_op_to_function_call()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | lib.c | 265 pre_buffer_next = &end->next; in add_pre_buffer() 314 struct token *next = token->next; in sparse_tokenstream() local 316 if (next->pos.whitespace) in sparse_tokenstream() 318 if (next->pos.newline) { in sparse_tokenstream() 320 prec = next->pos.pos; in sparse_tokenstream() 325 token = next; in sparse_tokenstream()
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_ctx.c | 28 struct bignum_pool_item *prev, *next; member 94 item = item->next; in ctxdbg() 171 pool = pool->next; in BN_CTX_free() 309 p->current = p->head->next; in BN_POOL_finish() 335 item->next = NULL; in BN_POOL_get() 340 p->tail->next = item; in BN_POOL_get() 353 p->current = p->current->next; in BN_POOL_get()
|
/third_party/node/deps/uvwasi/src/ |
H A D | path_resolver.c | 41 char* next; in uvwasi__normalize_path() local 52 for (cur = path; cur != NULL; cur = next + 1) { in uvwasi__normalize_path() 53 next = uvwasi__strchr_slash(cur); in uvwasi__normalize_path() 54 cur_len = (next == NULL) ? strlen(cur) : (size_t) (next - cur); in uvwasi__normalize_path() 57 if (ptr == normalized_path && next != NULL && is_absolute) { in uvwasi__normalize_path() 108 if (next == NULL) in uvwasi__normalize_path()
|