/openbmc/linux/lib/ |
H A D | hashtable_test.c | 16 int visited; member 73 a.visited = 0; in hashtable_test_hash_add() 77 b.visited = 0; in hashtable_test_hash_add() 81 x->visited++; in hashtable_test_hash_add() 91 KUNIT_EXPECT_EQ(test, a.visited, 1); in hashtable_test_hash_add() 92 KUNIT_EXPECT_EQ(test, b.visited, 1); in hashtable_test_hash_add() 105 b.visited = 0; in hashtable_test_hash_del() 110 x->visited++; in hashtable_test_hash_del() 115 KUNIT_EXPECT_EQ(test, b.visited, 0); in hashtable_test_hash_del() 134 entries[i].visited = 0; in hashtable_test_hash_for_each() [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/map_tests/ |
H A D | array_map_batch_ops.c | 40 static void map_batch_verify(int *visited, __u32 max_entries, int *keys, in map_batch_verify() argument 46 memset(visited, 0, max_entries * sizeof(*visited)); in map_batch_verify() 62 visited[i] = 1; in map_batch_verify() 65 CHECK(visited[i] != 1, "visited checking", in map_batch_verify() 72 int map_fd, *keys, *visited; in __test_map_lookup_and_update_batch() local 94 visited = calloc(max_entries, sizeof(*visited)); in __test_map_lookup_and_update_batch() 95 CHECK(!keys || !values || !visited, "malloc()", "error:%s\n", in __test_map_lookup_and_update_batch() 102 map_batch_verify(visited, max_entries, keys, values, is_pcpu); in __test_map_lookup_and_update_batch() 130 map_batch_verify(visited, max_entries, keys, values, is_pcpu); in __test_map_lookup_and_update_batch() 140 free(visited); in __test_map_lookup_and_update_batch()
|
H A D | lpm_trie_map_batch_ops.c | 44 static void map_batch_verify(int *visited, __u32 max_entries, in map_batch_verify() argument 51 memset(visited, 0, max_entries * sizeof(*visited)); in map_batch_verify() 58 visited[i] = 1; in map_batch_verify() 61 CHECK(visited[i] != 1, "visited checking", in map_batch_verify() 70 int map_fd, *values, *visited; in test_lpm_trie_map_batch_ops() local 88 visited = malloc(max_entries * sizeof(int)); in test_lpm_trie_map_batch_ops() 89 CHECK(!keys || !values || !visited, "malloc()", "error:%s\n", in test_lpm_trie_map_batch_ops() 95 map_batch_verify(visited, max_entries, keys, values); in test_lpm_trie_map_batch_ops() 120 map_batch_verify(visited, max_entries, keys, values); in test_lpm_trie_map_batch_ops() 153 free(visited); in test_lpm_trie_map_batch_ops()
|
H A D | htab_map_batch_ops.c | 41 static void map_batch_verify(int *visited, __u32 max_entries, in map_batch_verify() argument 51 memset(visited, 0, max_entries * sizeof(*visited)); in map_batch_verify() 68 visited[i] = 1; in map_batch_verify() 72 CHECK(visited[i] != 1, "visited checking", in map_batch_verify() 81 int map_fd, *keys, *visited, key; in __test_map_lookup_and_delete_batch() local 103 visited = malloc(max_entries * sizeof(int)); in __test_map_lookup_and_delete_batch() 104 CHECK(!keys || !values || !visited, "malloc()", in __test_map_lookup_and_delete_batch() 133 map_batch_verify(visited, max_entries, keys, values, is_pcpu); in __test_map_lookup_and_delete_batch() 181 map_batch_verify(visited, max_entries, keys, values, is_pcpu); in __test_map_lookup_and_delete_batch() 245 map_batch_verify(visited, max_entries, keys, values, is_pcpu); in __test_map_lookup_and_delete_batch() [all …]
|
/openbmc/linux/sound/usb/ |
H A D | clock.c | 278 unsigned long *visited, bool validate) in __uac_clock_find_source() argument 289 if (test_and_set_bit(entity_id, visited)) { in __uac_clock_find_source() 347 visited, validate); in __uac_clock_find_source() 376 visited, true); in __uac_clock_find_source() 398 visited, validate); in __uac_clock_find_source() 417 DECLARE_BITMAP(visited, 256); in snd_usb_clock_find_source() 418 memset(visited, 0, sizeof(visited)); in snd_usb_clock_find_source() 423 return __uac_clock_find_source(chip, fmt, fmt->clock, visited, in snd_usb_clock_find_source()
|
/openbmc/linux/drivers/net/ethernet/microchip/lan966x/ |
H A D | lan966x_lag.c | 9 u32 visited = GENMASK(lan966x->num_phys_ports - 1, 0); in lan966x_lag_set_aggr_pgids() local 18 lan_wr(ANA_PGID_PGID_SET(visited), in lan966x_lag_set_aggr_pgids() 35 visited &= ~BIT(p); in lan966x_lag_set_aggr_pgids() 46 if (!port || !port->bond || (visited & BIT(lag))) in lan966x_lag_set_aggr_pgids() 88 visited |= BIT(p); in lan966x_lag_set_aggr_pgids()
|
/openbmc/linux/fs/ |
H A D | pnode.c | 557 static void cleanup_umount_visitations(struct list_head *visited) in cleanup_umount_visitations() argument 559 while (!list_empty(visited)) { in cleanup_umount_visitations() 561 list_first_entry(visited, struct mount, mnt_umounting); in cleanup_umount_visitations() 578 LIST_HEAD(visited); in propagate_umount() 594 list_add_tail(&mnt->mnt_umounting, &visited); in propagate_umount() 619 list_add_tail(&child->mnt_umounting, &visited); in propagate_umount() 636 cleanup_umount_visitations(&visited); in propagate_umount()
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | spdx30.py | 67 def iter_objects(self, value, recursive, visited): argument 70 def link_prop(self, value, objectset, missing, visited): argument 272 def iter_objects(self, value, recursive, visited): argument 276 if value not in visited: 277 visited.add(value) 281 for c in value.iter_objects(recursive=True, visited=visited): 311 def link_prop(self, value, objectset, missing, visited): argument 331 value.link_helper(objectset, missing, visited) 438 def iter_objects(self, value, recursive, visited): argument 440 for c in self.prop.iter_objects(v, recursive, visited): [all …]
|
/openbmc/linux/scripts/genksyms/ |
H A D | genksyms.c | 289 sym->visited = NULL; in __add_symbol() 631 if (!sym->visited) { in expand_and_crc_sym() 633 end = &sym->visited; in expand_and_crc_sym() 634 sym->visited = (struct symbol *)-1L; in expand_and_crc_sym() 855 visited_symbols = sym->visited; in main() 856 sym->visited = NULL; in main()
|
H A D | genksyms.h | 39 struct symbol *visited; member
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/openbox/files/ |
H A D | 0001-Fix-list-traversal-issue-in-client_calc_layer.patch | 35 /* find the windows in the fullscreen layer, and mark them not-visited */ 46 !WINDOW_AS_CLIENT(it->data)->visited)
|
/openbmc/linux/tools/perf/util/ |
H A D | metricgroup.c | 800 const struct visited_metric *visited; member 817 const struct visited_metric *visited, 847 const struct visited_metric *visited, in resolve_metric() argument 893 root_metric, visited, table); in resolve_metric() 931 const struct visited_metric *visited, in __add_metric() argument 940 .parent = visited, in __add_metric() 943 for (vm = visited; vm; vm = vm->parent) { in __add_metric() 1084 const struct visited_metric *visited, in add_metric() argument 1094 system_wide, root_metric, visited, table); in add_metric() 1108 system_wide, root_metric, visited, table); in add_metric() [all …]
|
/openbmc/qemu/tests/qtest/libqos/ |
H A D | qgraph.c | 359 e->node->visited = false; in qos_pop() 406 if (v->visited) { in qos_traverse_graph() 410 v->visited = true; in qos_traverse_graph() 415 v->visited = false; in qos_traverse_graph() 429 if (!dest_node->visited && dest_node->available) { in qos_traverse_graph()
|
H A D | qgraph_internal.h | 57 bool visited; /* used during graph walk */ member
|
/openbmc/qemu/scripts/ |
H A D | minikconf.py | 123 def dfs(self, visited, f): argument 124 if self in visited: 126 visited.add(self) 128 v.dfs(visited, f) 235 visited = set() 243 v.dfs(visited, visit_fn)
|
/openbmc/phosphor-webui/app/common/styles/base/ |
H A D | core.scss | 19 &:visited {
|
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dml/dcn32/ |
H A D | display_rq_dlg_calc_32.c | 304 bool visited[DC__NUM_PIPES__MAX]; in dml32_rq_dlg_get_dlg_reg() local 308 visited[k] = false; in dml32_rq_dlg_get_dlg_reg() 313 if (e2e_pipe_param[i].pipe.src.is_hsplit && !visited[i]) { in dml32_rq_dlg_get_dlg_reg() 320 && e2e_pipe_param[j].pipe.src.is_hsplit && !visited[j]) { in dml32_rq_dlg_get_dlg_reg() 325 visited[j] = true; in dml32_rq_dlg_get_dlg_reg()
|
/openbmc/u-boot/test/py/ |
H A D | multiplexed_log.css | 101 a:visited {
|
/openbmc/linux/tools/objtool/include/objtool/ |
H A D | check.h | 65 visited : 4, member
|
/openbmc/qemu/ |
H A D | block.c | 110 GHashTable *visited, Transaction *tran, 1230 GHashTable *visited, Transaction *tran, in bdrv_child_cb_change_aio_ctx() argument 1234 return bdrv_change_aio_context(bs, ctx, visited, tran, errp); in bdrv_child_cb_change_aio_ctx() 3026 GHashTable *visited; in bdrv_attach_child_common_abort() local 3032 visited = g_hash_table_new(NULL, NULL); in bdrv_attach_child_common_abort() 3034 visited, tran, &error_abort); in bdrv_attach_child_common_abort() 3035 g_hash_table_destroy(visited); in bdrv_attach_child_common_abort() 3104 GHashTable *visited = g_hash_table_new(NULL, NULL); in bdrv_attach_child_common() local 3107 g_hash_table_add(visited, new_child); in bdrv_attach_child_common() 3109 visited, aio_ctx_tran, in bdrv_attach_child_common() [all …]
|
H A D | blockjob.c | 148 GHashTable *visited, Transaction *tran, in child_job_change_aio_ctx() argument 157 if (!bdrv_child_change_aio_context(sibling, ctx, visited, in child_job_change_aio_ctx()
|
/openbmc/linux/tools/objtool/ |
H A D | check.c | 3549 u8 visited; in validate_branch() local 3573 visited = VISITED_BRANCH << state.uaccess; in validate_branch() 3574 if (insn->visited & VISITED_BRANCH_MASK) { in validate_branch() 3578 if (insn->visited & visited) in validate_branch() 3606 if (!save_insn->visited) { in validate_branch() 3639 insn->visited |= visited; in validate_branch() 3797 if (insn->hint && !insn->visited && !insn->ignore) { in validate_unwind_hint() 3843 if (insn->visited & VISITED_UNRET) in validate_unret() 3846 insn->visited |= VISITED_UNRET; in validate_unret() 4048 if (insn->visited) in ignore_unreachable_insn() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/ |
H A D | jquery-ui.theme.min.css | 5 …visited{color:#1c94c4;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-…
|
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dml/dcn30/ |
H A D | display_rq_dlg_calc_30.c | 1188 bool visited[DC__NUM_PIPES__MAX] = { false }; in dml_rq_dlg_get_dlg_params() local 1192 visited[k] = false; in dml_rq_dlg_get_dlg_params() 1197 if (e2e_pipe_param[i].pipe.src.is_hsplit && !visited[i]) { in dml_rq_dlg_get_dlg_params() 1204 && e2e_pipe_param[j].pipe.src.is_hsplit && !visited[j]) { in dml_rq_dlg_get_dlg_params() 1208 visited[j] = true; in dml_rq_dlg_get_dlg_params()
|
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dml/dcn31/ |
H A D | display_rq_dlg_calc_31.c | 1063 bool visited[DC__NUM_PIPES__MAX]; in dml_rq_dlg_get_dlg_params() local 1067 visited[k] = false; in dml_rq_dlg_get_dlg_params() 1072 if (e2e_pipe_param[i].pipe.src.is_hsplit && !visited[i]) { in dml_rq_dlg_get_dlg_params() 1078 …_pipe_param[j].pipe.src.hsplit_grp == grp && e2e_pipe_param[j].pipe.src.is_hsplit && !visited[j]) { in dml_rq_dlg_get_dlg_params() 1082 visited[j] = true; in dml_rq_dlg_get_dlg_params()
|