/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/ |
H A D | arg_parsing.c | 6 static void init_test_filter_set(struct test_filter_set *set) in init_test_filter_set() argument 8 set->cnt = 0; in init_test_filter_set() 9 set->tests = NULL; in init_test_filter_set() 12 static void free_test_filter_set(struct test_filter_set *set) in free_test_filter_set() argument 16 for (i = 0; i < set->cnt; i++) { in free_test_filter_set() 17 for (j = 0; j < set->tests[i].subtest_cnt; j++) in free_test_filter_set() 18 free((void *)set->tests[i].subtests[j]); in free_test_filter_set() 19 free(set->tests[i].subtests); in free_test_filter_set() 20 free(set->tests[i].name); in free_test_filter_set() 23 free(set in free_test_filter_set() 29 struct test_filter_set set; test_parse_test_list() local 118 struct test_filter_set set; test_parse_test_list_file() local [all...] |
/kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
H A D | fpsp.h | 79 .set LOCAL_SIZE,192 | bytes needed for local variables 80 .set LV,-LOCAL_SIZE | convenient base value 82 .set USER_DA,LV+0 | save space for D0-D1,A0-A1 83 .set USER_D0,LV+0 | saved user D0 84 .set USER_D1,LV+4 | saved user D1 85 .set USER_A0,LV+8 | saved user A0 86 .set USER_A1,LV+12 | saved user A1 87 .set USER_FP0,LV+16 | saved user FP0 88 .set USER_FP1,LV+28 | saved user FP1 89 .set USER_FP [all...] |
/kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
H A D | fpsp.h | 79 .set LOCAL_SIZE,192 | bytes needed for local variables 80 .set LV,-LOCAL_SIZE | convenient base value 82 .set USER_DA,LV+0 | save space for D0-D1,A0-A1 83 .set USER_D0,LV+0 | saved user D0 84 .set USER_D1,LV+4 | saved user D1 85 .set USER_A0,LV+8 | saved user A0 86 .set USER_A1,LV+12 | saved user A1 87 .set USER_FP0,LV+16 | saved user FP0 88 .set USER_FP1,LV+28 | saved user FP1 89 .set USER_FP [all...] |
/kernel/linux/linux-6.6/arch/mips/include/asm/ |
H A D | asmmacro.h | 22 /* preprocessor replaces the fp in ".set fp=64" with $30 otherwise */ 85 .set push 86 .set hardfloat 105 .set pop 109 .set push 110 .set mips64r2 111 .set fp=64 112 .set hardfloat 129 .set pop 144 .set pus [all...] |
/kernel/linux/linux-6.6/tools/lib/bpf/ |
H A D | strset.c | 18 /* lookup index for each unique string in strings set */ 41 struct strset *set = calloc(1, sizeof(*set)); in strset__new() local 45 if (!set) in strset__new() 48 hash = hashmap__new(strset_hash_fn, strset_equal_fn, set); in strset__new() 52 set->strs_data_max_len = max_data_sz; in strset__new() 53 set->strs_hash = hash; in strset__new() 58 set->strs_data = malloc(init_data_sz); in strset__new() 59 if (!set->strs_data) in strset__new() 62 memcpy(set in strset__new() 84 strset__free(struct strset *set) strset__free() argument 94 strset__data_size(const struct strset *set) strset__data_size() argument 99 strset__data(const struct strset *set) strset__data() argument 104 strset_add_str_mem(struct strset *set, size_t add_sz) strset_add_str_mem() argument 116 strset__find_str(struct strset *set, const char *s) strset__find_str() argument 142 strset__add_str(struct strset *set, const char *s) strset__add_str() argument [all...] |
/kernel/linux/linux-5.10/drivers/s390/cio/ |
H A D | idset.c | 26 struct idset *set; in idset_new() local 28 set = vmalloc(sizeof(struct idset) + bitmap_size(num_ssid, num_id)); in idset_new() 29 if (set) { in idset_new() 30 set->num_ssid = num_ssid; in idset_new() 31 set->num_id = num_id; in idset_new() 32 memset(set->bitmap, 0, bitmap_size(num_ssid, num_id)); in idset_new() 34 return set; in idset_new() 37 void idset_free(struct idset *set) in idset_free() argument 39 vfree(set); in idset_free() 42 void idset_fill(struct idset *set) in idset_fill() argument 47 idset_add(struct idset *set, int ssid, int id) idset_add() argument 52 idset_del(struct idset *set, int ssid, int id) idset_del() argument 57 idset_contains(struct idset *set, int ssid, int id) idset_contains() argument 67 idset_sch_add(struct idset *set, struct subchannel_id schid) idset_sch_add() argument 72 idset_sch_del(struct idset *set, struct subchannel_id schid) idset_sch_del() argument 78 idset_sch_del_subseq(struct idset *set, struct subchannel_id schid) idset_sch_del_subseq() argument 85 idset_sch_contains(struct idset *set, struct subchannel_id schid) idset_sch_contains() argument 90 idset_is_empty(struct idset *set) idset_is_empty() argument [all...] |
/kernel/linux/linux-6.6/drivers/s390/cio/ |
H A D | idset.c | 26 struct idset *set; in idset_new() local 28 set = vmalloc(sizeof(struct idset) + bitmap_size(num_ssid, num_id)); in idset_new() 29 if (set) { in idset_new() 30 set->num_ssid = num_ssid; in idset_new() 31 set->num_id = num_id; in idset_new() 32 memset(set->bitmap, 0, bitmap_size(num_ssid, num_id)); in idset_new() 34 return set; in idset_new() 37 void idset_free(struct idset *set) in idset_free() argument 39 vfree(set); in idset_free() 42 void idset_fill(struct idset *set) in idset_fill() argument 47 idset_add(struct idset *set, int ssid, int id) idset_add() argument 52 idset_del(struct idset *set, int ssid, int id) idset_del() argument 57 idset_contains(struct idset *set, int ssid, int id) idset_contains() argument 67 idset_sch_add(struct idset *set, struct subchannel_id schid) idset_sch_add() argument 72 idset_sch_del(struct idset *set, struct subchannel_id schid) idset_sch_del() argument 78 idset_sch_del_subseq(struct idset *set, struct subchannel_id schid) idset_sch_del_subseq() argument 85 idset_sch_contains(struct idset *set, struct subchannel_id schid) idset_sch_contains() argument 90 idset_is_empty(struct idset *set) idset_is_empty() argument [all...] |
/kernel/linux/linux-5.10/arch/mips/include/asm/ |
H A D | asmmacro.h | 22 /* preprocessor replaces the fp in ".set fp=64" with $30 otherwise */ 85 .set push 105 .set pop 109 .set push 110 .set mips64r2 111 .set fp=64 129 .set pop 144 .set push 164 .set pop 168 .set pus [all...] |
/kernel/linux/linux-5.10/net/netfilter/ipset/ |
H A D | ip_set_bitmap_gen.h | 34 #define get_ext(set, map, id) ((map)->extensions + ((set)->dsize * (id))) 37 mtype_gc_init(struct ip_set *set, void (*gc)(struct timer_list *t)) in mtype_gc_init() argument 39 struct mtype *map = set->data; in mtype_gc_init() 42 mod_timer(&map->gc, jiffies + IPSET_GC_PERIOD(set->timeout) * HZ); in mtype_gc_init() 46 mtype_ext_cleanup(struct ip_set *set) in mtype_ext_cleanup() argument 48 struct mtype *map = set->data; in mtype_ext_cleanup() 53 ip_set_ext_destroy(set, get_ext(set, map, id)); in mtype_ext_cleanup() 57 mtype_destroy(struct ip_set *set) in mtype_destroy() argument 70 mtype_flush(struct ip_set *set) mtype_flush() argument 90 mtype_head(struct ip_set *set, struct sk_buff *skb) mtype_head() argument 114 mtype_test(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_test() argument 128 mtype_add(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_add() argument 153 mtype_add_timeout(ext_timeout(x, set), e, ext, set, map, ret); mtype_add() local 173 mtype_del(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_del() argument 201 mtype_list(const struct ip_set *set, struct sk_buff *skb, struct netlink_callback *cb) mtype_list() argument 266 struct ip_set *set = map->set; mtype_gc() local 290 mtype_cancel_gc(struct ip_set *set) mtype_cancel_gc() argument [all...] |
H A D | ip_set_list_set.c | 4 /* Kernel module implementing an IP set type: the list:set type */ 22 IP_SET_MODULE_DESC("list:set", IPSET_TYPE_REV_MIN, IPSET_TYPE_REV_MAX); 23 MODULE_ALIAS("ip_set_list:set"); 29 struct ip_set *set; /* Sigh, in order to cleanup reference */ member 41 u32 size; /* size of set list array */ 43 struct ip_set *set; /* attached to this ip_set */ member 45 struct list_head members; /* the set members */ 49 list_set_ktest(struct ip_set *set, const struct sk_buff *skb, in list_set_ktest() argument 53 struct list_set *map = set in list_set_ktest() 74 list_set_kadd(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, struct ip_set_adt_opt *opt, const struct ip_set_ext *ext) list_set_kadd() argument 94 list_set_kdel(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, struct ip_set_adt_opt *opt, const struct ip_set_ext *ext) list_set_kdel() argument 114 list_set_kadt(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, enum ipset_adt adt, struct ip_set_adt_opt *opt) list_set_kadt() argument 146 struct ip_set *set = e->set; __list_set_del_rcu() local 153 list_set_del(struct ip_set *set, struct set_elem *e) list_set_del() argument 164 list_set_replace(struct ip_set *set, struct set_elem *e, struct set_elem *old) list_set_replace() argument 174 set_cleanup_entries(struct ip_set *set) set_cleanup_entries() argument 185 list_set_utest(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_utest() argument 217 list_set_init_extensions(struct ip_set *set, const struct ip_set_ext *ext, struct set_elem *e) list_set_init_extensions() argument 232 list_set_uadd(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_uadd() argument 314 list_set_udel(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_udel() argument 346 list_set_uadt(struct ip_set *set, struct nlattr *tb[], enum ipset_adt adt, u32 *lineno, u32 flags, bool retried) list_set_uadt() argument 412 list_set_flush(struct ip_set *set) list_set_flush() argument 424 list_set_destroy(struct ip_set *set) list_set_destroy() argument 456 list_set_head(struct ip_set *set, struct sk_buff *skb) list_set_head() argument 480 list_set_list(const struct ip_set *set, struct sk_buff *skb, struct netlink_callback *cb) list_set_list() argument 546 list_set_cancel_gc(struct ip_set *set) list_set_cancel_gc() argument 574 struct ip_set *set = map->set; list_set_gc() local 585 list_set_gc_init(struct ip_set *set, void (*gc)(struct timer_list *t)) list_set_gc_init() argument 596 init_list_set(struct net *net, struct ip_set *set, u32 size) init_list_set() argument 614 list_set_create(struct net *net, struct ip_set *set, struct nlattr *tb[], u32 flags) list_set_create() argument [all...] |
/kernel/linux/linux-6.6/net/netfilter/ipset/ |
H A D | ip_set_bitmap_gen.h | 34 #define get_ext(set, map, id) ((map)->extensions + ((set)->dsize * (id))) 37 mtype_gc_init(struct ip_set *set, void (*gc)(struct timer_list *t)) in mtype_gc_init() argument 39 struct mtype *map = set->data; in mtype_gc_init() 42 mod_timer(&map->gc, jiffies + IPSET_GC_PERIOD(set->timeout) * HZ); in mtype_gc_init() 46 mtype_ext_cleanup(struct ip_set *set) in mtype_ext_cleanup() argument 48 struct mtype *map = set->data; in mtype_ext_cleanup() 53 ip_set_ext_destroy(set, get_ext(set, map, id)); in mtype_ext_cleanup() 57 mtype_destroy(struct ip_set *set) in mtype_destroy() argument 70 mtype_flush(struct ip_set *set) mtype_flush() argument 90 mtype_head(struct ip_set *set, struct sk_buff *skb) mtype_head() argument 114 mtype_test(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_test() argument 128 mtype_add(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_add() argument 153 mtype_add_timeout(ext_timeout(x, set), e, ext, set, map, ret); mtype_add() local 173 mtype_del(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) mtype_del() argument 201 mtype_list(const struct ip_set *set, struct sk_buff *skb, struct netlink_callback *cb) mtype_list() argument 266 struct ip_set *set = map->set; mtype_gc() local 290 mtype_cancel_gc(struct ip_set *set) mtype_cancel_gc() argument [all...] |
H A D | ip_set_list_set.c | 4 /* Kernel module implementing an IP set type: the list:set type */ 22 IP_SET_MODULE_DESC("list:set", IPSET_TYPE_REV_MIN, IPSET_TYPE_REV_MAX); 23 MODULE_ALIAS("ip_set_list:set"); 29 struct ip_set *set; /* Sigh, in order to cleanup reference */ member 41 u32 size; /* size of set list array */ 43 struct ip_set *set; /* attached to this ip_set */ member 45 struct list_head members; /* the set members */ 49 list_set_ktest(struct ip_set *set, const struct sk_buff *skb, in list_set_ktest() argument 53 struct list_set *map = set in list_set_ktest() 74 list_set_kadd(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, struct ip_set_adt_opt *opt, const struct ip_set_ext *ext) list_set_kadd() argument 94 list_set_kdel(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, struct ip_set_adt_opt *opt, const struct ip_set_ext *ext) list_set_kdel() argument 114 list_set_kadt(struct ip_set *set, const struct sk_buff *skb, const struct xt_action_param *par, enum ipset_adt adt, struct ip_set_adt_opt *opt) list_set_kadt() argument 146 struct ip_set *set = e->set; __list_set_del_rcu() local 153 list_set_del(struct ip_set *set, struct set_elem *e) list_set_del() argument 164 list_set_replace(struct ip_set *set, struct set_elem *e, struct set_elem *old) list_set_replace() argument 174 set_cleanup_entries(struct ip_set *set) set_cleanup_entries() argument 185 list_set_utest(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_utest() argument 217 list_set_init_extensions(struct ip_set *set, const struct ip_set_ext *ext, struct set_elem *e) list_set_init_extensions() argument 232 list_set_uadd(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_uadd() argument 314 list_set_udel(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) list_set_udel() argument 346 list_set_uadt(struct ip_set *set, struct nlattr *tb[], enum ipset_adt adt, u32 *lineno, u32 flags, bool retried) list_set_uadt() argument 412 list_set_flush(struct ip_set *set) list_set_flush() argument 424 list_set_destroy(struct ip_set *set) list_set_destroy() argument 456 list_set_head(struct ip_set *set, struct sk_buff *skb) list_set_head() argument 480 list_set_list(const struct ip_set *set, struct sk_buff *skb, struct netlink_callback *cb) list_set_list() argument 546 list_set_cancel_gc(struct ip_set *set) list_set_cancel_gc() argument 574 struct ip_set *set = map->set; list_set_gc() local 585 list_set_gc_init(struct ip_set *set, void (*gc)(struct timer_list *t)) list_set_gc_init() argument 596 init_list_set(struct net *net, struct ip_set *set, u32 size) init_list_set() argument 614 list_set_create(struct net *net, struct ip_set *set, struct nlattr *tb[], u32 flags) list_set_create() argument [all...] |
/kernel/linux/linux-5.10/arch/x86/crypto/ |
H A D | sha1_avx2_x86_64_asm.S | 59 * SHA-1 implementation with Intel(R) AVX2 instruction set extensions. 100 .set A, REG_A 101 .set B, REG_B 102 .set C, REG_C 103 .set D, REG_D 104 .set E, REG_E 105 .set TB, REG_TB 106 .set TA, REG_TA 108 .set RA, REG_RA 109 .set R [all...] |
/kernel/linux/linux-6.6/arch/x86/crypto/ |
H A D | sha1_avx2_x86_64_asm.S | 59 * SHA-1 implementation with Intel(R) AVX2 instruction set extensions. 100 .set A, REG_A 101 .set B, REG_B 102 .set C, REG_C 103 .set D, REG_D 104 .set E, REG_E 105 .set TB, REG_TB 106 .set TA, REG_TA 108 .set RA, REG_RA 109 .set R [all...] |
/test/testfwk/xdevice/plugins/devicetest/core/ |
H A D | report.py | 56 testsuites.set("name", test_name) 58 testsuites.set("name", ReportConstants.report_xml) 65 testsuites.set("tests", str(tests_total)) 66 testsuites.set("failures", str(tests_error)) 67 testsuites.set("disabled", '') 68 testsuites.set("errors", "") 69 testsuites.set("starttime", self.get_strftime(start_time)) 70 testsuites.set("endtime", self.get_now_strftime()) 71 testsuites.set("report_version", "1.0") 117 testcase.set("nam [all...] |
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nft_dynset.c | 19 struct nft_set *set; member 30 static void *nft_dynset_new(struct nft_set *set, const struct nft_expr *expr, in nft_dynset_new() argument 38 if (!atomic_add_unless(&set->nelems, 1, set->size)) in nft_dynset_new() 41 timeout = priv->timeout ? : set->timeout; in nft_dynset_new() 42 elem = nft_set_elem_init(set, &priv->tmpl, in nft_dynset_new() 49 ext = nft_set_elem_ext(set, elem); in nft_dynset_new() 57 nft_set_elem_destroy(set, elem, false); in nft_dynset_new() 59 if (set->size) in nft_dynset_new() 60 atomic_dec(&set in nft_dynset_new() 68 struct nft_set *set = priv->set; nft_dynset_eval() local 115 struct nft_set *set; nft_dynset_init() local [all...] |
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nft_lookup.c | 19 struct nft_set *set; member 28 bool nft_set_do_lookup(const struct net *net, const struct nft_set *set, in nft_set_do_lookup() argument 31 if (set->ops == &nft_set_hash_fast_type.ops) in nft_set_do_lookup() 32 return nft_hash_lookup_fast(net, set, key, ext); in nft_set_do_lookup() 33 if (set->ops == &nft_set_hash_type.ops) in nft_set_do_lookup() 34 return nft_hash_lookup(net, set, key, ext); in nft_set_do_lookup() 36 if (set->ops == &nft_set_rhash_type.ops) in nft_set_do_lookup() 37 return nft_rhash_lookup(net, set, key, ext); in nft_set_do_lookup() 39 if (set->ops == &nft_set_bitmap_type.ops) in nft_set_do_lookup() 40 return nft_bitmap_lookup(net, set, ke in nft_set_do_lookup() 63 const struct nft_set *set = priv->set; nft_lookup_eval() local 103 struct nft_set *set; nft_lookup_init() local [all...] |
H A D | nft_dynset.c | 16 struct nft_set *set; member 47 static void *nft_dynset_new(struct nft_set *set, const struct nft_expr *expr, in nft_dynset_new() argument 55 if (!atomic_add_unless(&set->nelems, 1, set->size)) in nft_dynset_new() 58 timeout = priv->timeout ? : set->timeout; in nft_dynset_new() 59 elem = nft_set_elem_init(set, &priv->tmpl, in nft_dynset_new() 66 ext = nft_set_elem_ext(set, elem); in nft_dynset_new() 73 nft_set_elem_destroy(set, elem, false); in nft_dynset_new() 75 if (set->size) in nft_dynset_new() 76 atomic_dec(&set in nft_dynset_new() 84 struct nft_set *set = priv->set; nft_dynset_eval() local 125 nft_dynset_expr_alloc(const struct nft_ctx *ctx, const struct nft_set *set, const struct nlattr *attr, int pos) nft_dynset_expr_alloc() argument 167 struct nft_set *set; nft_dynset_init() local [all...] |
H A D | nft_set_hash.c | 35 const struct nft_set *set; member 60 if (memcmp(nft_set_ext_key(&he->ext), x->key, x->set->klen)) in nft_rhash_cmp() 80 bool nft_rhash_lookup(const struct net *net, const struct nft_set *set, in nft_rhash_lookup() argument 83 struct nft_rhash *priv = nft_set_priv(set); in nft_rhash_lookup() 87 .set = set, in nft_rhash_lookup() 98 static void *nft_rhash_get(const struct net *net, const struct nft_set *set, in nft_rhash_get() argument 101 struct nft_rhash *priv = nft_set_priv(set); in nft_rhash_get() 105 .set = set, in nft_rhash_get() 116 nft_rhash_update(struct nft_set *set, const u32 *key, void *(*new)(struct nft_set *, const struct nft_expr *, struct nft_regs *regs), const struct nft_expr *expr, struct nft_regs *regs, const struct nft_set_ext **ext) nft_rhash_update() argument 163 nft_rhash_insert(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem, struct nft_set_ext **ext) nft_rhash_insert() argument 187 nft_rhash_activate(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem) nft_rhash_activate() argument 195 nft_rhash_flush(const struct net *net, const struct nft_set *set, void *priv) nft_rhash_flush() argument 205 nft_rhash_deactivate(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem) nft_rhash_deactivate() argument 227 nft_rhash_remove(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem) nft_rhash_remove() argument 237 nft_rhash_delete(const struct nft_set *set, const u32 *key) nft_rhash_delete() argument 257 nft_rhash_walk(const struct nft_ctx *ctx, struct nft_set *set, struct nft_set_iter *iter) nft_rhash_walk() argument 296 nft_rhash_expr_needs_gc_run(const struct nft_set *set, struct nft_set_ext *ext) nft_rhash_expr_needs_gc_run() argument 315 struct nft_set *set; nft_rhash_gc() local 393 nft_rhash_gc_init(const struct nft_set *set) nft_rhash_gc_init() argument 401 nft_rhash_init(const struct nft_set *set, const struct nft_set_desc *desc, const struct nlattr * const tb[]) nft_rhash_init() argument 425 const struct nft_set *set; global() member 435 nft_rhash_destroy(const struct nft_ctx *ctx, const struct nft_set *set) nft_rhash_destroy() argument 484 nft_hash_lookup(const struct net *net, const struct nft_set *set, const u32 *key, const struct nft_set_ext **ext) nft_hash_lookup() argument 504 nft_hash_get(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem, unsigned int flags) nft_hash_get() argument 523 nft_hash_lookup_fast(const struct net *net, const struct nft_set *set, const u32 *key, const struct nft_set_ext **ext) nft_hash_lookup_fast() argument 546 nft_jhash(const struct nft_set *set, const struct nft_hash *priv, const struct nft_set_ext *ext) nft_jhash() argument 563 nft_hash_insert(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem, struct nft_set_ext **ext) nft_hash_insert() argument 585 nft_hash_activate(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem) nft_hash_activate() argument 593 nft_hash_flush(const struct net *net, const struct nft_set *set, void *priv) nft_hash_flush() argument 602 nft_hash_deactivate(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem) nft_hash_deactivate() argument 623 nft_hash_remove(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem) nft_hash_remove() argument 632 nft_hash_walk(const struct nft_ctx *ctx, struct nft_set *set, struct nft_set_iter *iter) nft_hash_walk() argument 665 nft_hash_init(const struct nft_set *set, const struct nft_set_desc *desc, const struct nlattr * const tb[]) nft_hash_init() argument 677 nft_hash_destroy(const struct nft_ctx *ctx, const struct nft_set *set) nft_hash_destroy() argument [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
H A D | drm_crtc_helper.c | 252 * drm_crtc_helper_set_mode - internal helper to set a mode 259 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance 260 * to fixup or reject the mode prior to trying to set it. This is an internal 269 * True if the mode was set successfully, false otherwise. 381 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%s]\n", in drm_crtc_helper_set_mode() 387 /* Now enable the clocks, plane, pipe, and connectors that we set up. */ in drm_crtc_helper_set_mode() 479 * drm_crtc_helper_set_config - set a new config from userspace 480 * @set: mode set configuration 503 * performs a full mode set sequenc 516 drm_crtc_helper_set_config(struct drm_mode_set *set, struct drm_modeset_acquire_ctx *ctx) drm_crtc_helper_set_config() argument 1010 struct drm_mode_set set = { drm_helper_force_disable_all() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/ |
H A D | drm_crtc_helper.c | 264 * drm_crtc_helper_set_mode - internal helper to set a mode 271 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance 272 * to fixup or reject the mode prior to trying to set it. This is an internal 281 * True if the mode was set successfully, false otherwise. 393 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%s]\n", in drm_crtc_helper_set_mode() 399 /* Now enable the clocks, plane, pipe, and connectors that we set up. */ in drm_crtc_helper_set_mode() 517 * drm_crtc_helper_set_config - set a new config from userspace 518 * @set: mode set configuration 541 * performs a full mode set sequenc 554 drm_crtc_helper_set_config(struct drm_mode_set *set, struct drm_modeset_acquire_ctx *ctx) drm_crtc_helper_set_config() argument 1048 struct drm_mode_set set = { drm_helper_force_disable_all() local [all...] |
/kernel/linux/linux-5.10/arch/sh/boards/mach-se/7724/ |
H A D | irq.c | 44 struct fpga_irq set; in get_fpga_irq() local 48 set.sraddr = IRQ0_SR; in get_fpga_irq() 49 set.mraddr = IRQ0_MR; in get_fpga_irq() 50 set.mask = IRQ0_MASK; in get_fpga_irq() 51 set.base = IRQ0_BASE; in get_fpga_irq() 54 set.sraddr = IRQ1_SR; in get_fpga_irq() 55 set.mraddr = IRQ1_MR; in get_fpga_irq() 56 set.mask = IRQ1_MASK; in get_fpga_irq() 57 set.base = IRQ1_BASE; in get_fpga_irq() 60 set in get_fpga_irq() 73 struct fpga_irq set = get_fpga_irq(fpga2irq(irq)); disable_se7724_irq() local 81 struct fpga_irq set = get_fpga_irq(fpga2irq(irq)); enable_se7724_irq() local 95 struct fpga_irq set = get_fpga_irq(irq); se7724_irq_demux() local [all...] |
/kernel/linux/linux-6.6/arch/sh/boards/mach-se/7724/ |
H A D | irq.c | 44 struct fpga_irq set; in get_fpga_irq() local 48 set.sraddr = IRQ0_SR; in get_fpga_irq() 49 set.mraddr = IRQ0_MR; in get_fpga_irq() 50 set.mask = IRQ0_MASK; in get_fpga_irq() 51 set.base = IRQ0_BASE; in get_fpga_irq() 54 set.sraddr = IRQ1_SR; in get_fpga_irq() 55 set.mraddr = IRQ1_MR; in get_fpga_irq() 56 set.mask = IRQ1_MASK; in get_fpga_irq() 57 set.base = IRQ1_BASE; in get_fpga_irq() 60 set in get_fpga_irq() 73 struct fpga_irq set = get_fpga_irq(fpga2irq(irq)); disable_se7724_irq() local 81 struct fpga_irq set = get_fpga_irq(fpga2irq(irq)); enable_se7724_irq() local 95 struct fpga_irq set = get_fpga_irq(irq); se7724_irq_demux() local [all...] |
/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | signal.h | 48 #define sigaddset(set,sig) \ 50 ? __const_sigaddset((set), (sig)) \ 51 : __gen_sigaddset((set), (sig))) 53 static inline void __gen_sigaddset(sigset_t *set, int _sig) in __gen_sigaddset() argument 55 asm("btsl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc"); in __gen_sigaddset() 58 static inline void __const_sigaddset(sigset_t *set, int _sig) in __const_sigaddset() argument 61 set->sig[sig / _NSIG_BPW] |= 1 << (sig % _NSIG_BPW); in __const_sigaddset() 64 #define sigdelset(set, sig) \ 66 ? __const_sigdelset((set), (sig)) \ 67 : __gen_sigdelset((set), (si 70 __gen_sigdelset(sigset_t *set, int _sig) __gen_sigdelset() argument 75 __const_sigdelset(sigset_t *set, int _sig) __const_sigdelset() argument 81 __const_sigismember(sigset_t *set, int _sig) __const_sigismember() argument 87 __gen_sigismember(sigset_t *set, int _sig) __gen_sigismember() argument [all...] |
/kernel/linux/linux-6.6/arch/x86/include/asm/ |
H A D | signal.h | 44 #define sigaddset(set,sig) \ 46 ? __const_sigaddset((set), (sig)) \ 47 : __gen_sigaddset((set), (sig))) 49 static inline void __gen_sigaddset(sigset_t *set, int _sig) in __gen_sigaddset() argument 51 asm("btsl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc"); in __gen_sigaddset() 54 static inline void __const_sigaddset(sigset_t *set, int _sig) in __const_sigaddset() argument 57 set->sig[sig / _NSIG_BPW] |= 1 << (sig % _NSIG_BPW); in __const_sigaddset() 60 #define sigdelset(set, sig) \ 62 ? __const_sigdelset((set), (sig)) \ 63 : __gen_sigdelset((set), (si 66 __gen_sigdelset(sigset_t *set, int _sig) __gen_sigdelset() argument 71 __const_sigdelset(sigset_t *set, int _sig) __const_sigdelset() argument 77 __const_sigismember(sigset_t *set, int _sig) __const_sigismember() argument 83 __gen_sigismember(sigset_t *set, int _sig) __gen_sigismember() argument [all...] |