Searched refs:set (Results 51 - 75 of 2146) sorted by relevance

1234567891011>>

/linux-master/arch/s390/include/asm/
H A Dasm-extable.h34 stringify_in_c(.set .Lfound, 0;) \
35 stringify_in_c(.set .Lcurr, 0;) \
38 stringify_in_c( .set .Lfound, 1;) \
39 stringify_in_c( .set .Lregerr, .Lcurr;) \
41 stringify_in_c( .set .Lcurr, .Lcurr+1;) \
46 stringify_in_c(.set .Lfound, 0;) \
47 stringify_in_c(.set .Lcurr, 0;) \
50 stringify_in_c( .set .Lfound, 1;) \
51 stringify_in_c( .set .Lregaddr, .Lcurr;) \
53 stringify_in_c( .set
[all...]
/linux-master/drivers/gpu/drm/
H A Ddrm_crtc_helper.c264 * 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.
395 drm_dbg_kms(dev, "[ENCODER:%d:%s] set [MODE:%s]\n",
401 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
516 * drm_crtc_helper_set_config - set a new config from userspace
517 * @set: mode set configuration
540 * performs a full mode set sequenc
553 drm_crtc_helper_set_config(struct drm_mode_set *set, struct drm_modeset_acquire_ctx *ctx) argument
1053 struct drm_mode_set set = { local
[all...]
/linux-master/net/netfilter/ipset/
H A Dip_set_hash_gen.h19 #define ipset_dereference_set(p, set) \
22 lockdep_is_held(&(set)->lock))
35 * are serialized by the nfnl mutex. During resizing the set is
77 struct ip_set *set; /* Set the gc belongs to */ member in struct:htable_gc
99 /* Book-keeping of the prefixes added to the set */
159 #define SET_ELEM_EXPIRED(set, d) \
160 (SET_WITH_TIMEOUT(set) && \
161 ip_set_timeout_expired(ext_timeout(d, set)))
326 mtype_add_cidr(struct ip_set *set, struct htype *h, u8 cidr, u8 n) argument
330 spin_lock_bh(&set
353 mtype_del_cidr(struct ip_set *set, struct htype *h, u8 cidr, u8 n) argument
386 mtype_ext_cleanup(struct ip_set *set, struct hbucket *n) argument
397 mtype_flush(struct ip_set *set) argument
429 mtype_ahash_destroy(struct ip_set *set, struct htable *t, bool ext_destroy) argument
450 mtype_destroy(struct ip_set *set) argument
484 mtype_gc_do(struct ip_set *set, struct htype *h, struct htable *t, u32 r) argument
560 struct ip_set *set; local
602 mtype_cancel_gc(struct ip_set *set) argument
622 mtype_resize(struct ip_set *set, bool retried) argument
808 mtype_ext_size(struct ip_set *set, u32 *elements, size_t *ext_size) argument
839 mtype_add(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) argument
1034 mtype_del(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) argument
1145 mtype_data_match(struct mtype_elem *data, const struct ip_set_ext *ext, struct ip_set_ext *mext, struct ip_set *set, u32 flags) argument
1159 mtype_test_cidrs(struct ip_set *set, struct mtype_elem *d, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) argument
1215 mtype_test(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags) argument
1264 mtype_head(struct ip_set *set, struct sk_buff *skb) argument
1329 mtype_uref(struct ip_set *set, struct netlink_callback *cb, bool start) argument
1353 mtype_list(const struct ip_set *set, struct sk_buff *skb, struct netlink_callback *cb) argument
[all...]
H A Dip_set_bitmap_port.c4 /* Kernel module implementing an IP set type: the bitmap:port type */
33 unsigned long *members; /* the set members */
36 u32 elements; /* number of max elements in the set */
39 struct ip_set *set; /* attached to this ip_set */ member in struct:bitmap_port
127 bitmap_port_kadt(struct ip_set *set, const struct sk_buff *skb, argument
131 struct bitmap_port *map = set->data;
132 ipset_adtfn adtfn = set->variant->adt[adt];
134 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set);
149 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags);
153 bitmap_port_uadt(struct ip_set *set, struc argument
231 init_map_port(struct ip_set *set, struct bitmap_port *map, u16 first_port, u16 last_port) argument
249 bitmap_port_create(struct net *net, struct ip_set *set, struct nlattr *tb[], u32 flags) argument
[all...]
H A Dip_set_hash_ipmark.c4 /* Kernel module implementing an IP set type: the hash:ip,mark type */
80 hash_ipmark4_kadt(struct ip_set *set, const struct sk_buff *skb, argument
84 const struct hash_ipmark4 *h = set->data;
85 ipset_adtfn adtfn = set->variant->adt[adt];
87 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set);
93 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags);
97 hash_ipmark4_uadt(struct ip_set *set, struct nlattr *tb[], argument
100 struct hash_ipmark4 *h = set->data;
101 ipset_adtfn adtfn = set->variant->adt[adt];
103 struct ip_set_ext ext = IP_SET_INIT_UEXT(set);
215 hash_ipmark6_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) argument
232 hash_ipmark6_uadt(struct ip_set *set, struct nlattr *tb[], enum ipset_adt adt, u32 *lineno, u32 flags, bool retried) argument
[all...]
H A Dip_set_hash_ip.c4 /* Kernel module implementing an IP set type: the hash:ip type */
80 hash_ip4_kadt(struct ip_set *set, const struct sk_buff *skb, argument
84 const struct hash_ip4 *h = set->data;
85 ipset_adtfn adtfn = set->variant->adt[adt];
87 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set);
96 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags);
100 hash_ip4_uadt(struct ip_set *set, struct nlattr *tb[], argument
103 struct hash_ip4 *h = set->data;
104 ipset_adtfn adtfn = set->variant->adt[adt];
106 struct ip_set_ext ext = IP_SET_INIT_UEXT(set);
216 hash_ip6_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) argument
234 hash_ip6_uadt(struct ip_set *set, struct nlattr *tb[], enum ipset_adt adt, u32 *lineno, u32 flags, bool retried) argument
[all...]
/linux-master/drivers/media/pci/bt8xx/
H A Dbttv-audio-hook.c55 void gvbctv3pci_audio(struct bttv *btv, struct v4l2_tuner *t, int set) argument
59 if (!set) {
86 void gvbctv5pci_audio(struct bttv *btv, struct v4l2_tuner *t, int set) argument
94 if (set) {
150 * input/output sound connection, so both must be set for output mode.
157 void avermedia_tvphone_audio(struct bttv *btv, struct v4l2_tuner *t, int set) argument
161 if (!set) {
188 void avermedia_tv_stereo_audio(struct bttv *btv, struct v4l2_tuner *t, int set) argument
192 if (!set) {
221 void lt9415_audio(struct bttv *btv, struct v4l2_tuner *t, int set) argument
259 terratv_audio(struct bttv *btv, struct v4l2_tuner *t, int set) argument
292 winfast2000_audio(struct bttv *btv, struct v4l2_tuner *t, int set) argument
328 pvbt878p9b_audio(struct bttv *btv, struct v4l2_tuner *t, int set) argument
369 fv2000s_audio(struct bttv *btv, struct v4l2_tuner *t, int set) argument
408 windvr_audio(struct bttv *btv, struct v4l2_tuner *t, int set) argument
443 adtvk503_audio(struct bttv *btv, struct v4l2_tuner *t, int set) argument
[all...]
/linux-master/arch/mips/kernel/
H A Dgenex.S33 .set push
34 .set noat
42 .set pop
52 .set push
53 .set arch=r4000
54 .set noat
58 .set push
59 .set noreorder
60 .set nomacro
67 .set po
[all...]
/linux-master/drivers/firmware/efi/libstub/
H A Dzboot-header.S6 .set .Lextra_characteristics, 0x0
7 .set .Lpe_opt_magic, PE_OPT_MAGIC_PE32PLUS
9 .set .Lextra_characteristics, IMAGE_FILE_32BIT_MACHINE
10 .set .Lpe_opt_magic, PE_OPT_MAGIC_PE32
109 .set .Lefi_debug_table_size, . - .Lefi_debug_table
138 .set .Lsection_count, (. - .Lsection_table) / 40
154 .set .Lefi_debug_entry_size, . - .Lefi_debug_entry
/linux-master/arch/x86/crypto/
H A Daes-xts-avx-x86_64.S84 .set KEY, %rdi // Initially points to crypto_aes_ctx, then is
86 .set SRC, %rsi // Pointer to next source data
87 .set DST, %rdx // Pointer to next destination data
88 .set LEN, %ecx // Remaining length in bytes
89 .set LEN8, %cl
90 .set LEN64, %rcx
91 .set TWEAK, %r8 // Pointer to next tweak
94 .set KEYLEN, %eax
95 .set KEYLEN64, %rax
101 .set
[all...]
/linux-master/arch/mips/pci/
H A Dfixup-sb1250.c24 * bus, so we set the bus's DMA limit accordingly. However the HT link
28 * numbers and do not set the limit for devices present in the inclusive
32 bool set; member in struct:sb1250_bus_dma_limit_exclude
43 exclude_this = exclude->set && (dev->bus->number >= exclude->start &&
45 ht_bridge = !exclude->set && (dev->vendor == PCI_VENDOR_ID_SIBYTE &&
53 exclude->set = true;
66 struct sb1250_bus_dma_limit_exclude exclude = { .set = false };
/linux-master/tools/testing/selftests/x86/
H A Dcorrupt_xstate_header.c63 cpu_set_t set; local
73 CPU_ZERO(&set);
74 CPU_SET(0, &set);
80 sched_setaffinity(getpid(), sizeof(set), &set); local
/linux-master/tools/perf/util/
H A Dconfig.h33 int perf_config_set(struct perf_config_set *set,
47 void perf_config_set__delete(struct perf_config_set *set);
48 int perf_config_set__collect(struct perf_config_set *set, const char *file_name,
71 * @set: evlist instance to iterate
75 #define perf_config_set__for_each_entry(set, section, item) \
76 perf_config_sections__for_each_entry(&set->sections, section) \
/linux-master/net/netfilter/
H A Dnft_objref.c100 struct nft_set *set; member in struct:nft_objref_map
110 const struct nft_set *set = priv->set; local
116 found = nft_set_do_lookup(net, set, &regs->data[priv->sreg], &ext);
118 ext = nft_set_catchall_lookup(net, set);
134 struct nft_set *set; local
137 set = nft_set_lookup_global(ctx->net, ctx->table,
140 if (IS_ERR(set))
141 return PTR_ERR(set);
143 if (!(set
[all...]
H A Dnft_set_rbtree.c42 static int nft_rbtree_cmp(const struct nft_set *set, argument
47 set->klen);
55 static bool __nft_rbtree_lookup(const struct net *net, const struct nft_set *set, argument
59 struct nft_rbtree *priv = nft_set_priv(set);
72 d = memcmp(nft_set_ext_key(&rbe->ext), key, set->klen);
76 !nft_rbtree_cmp(set, rbe, interval) &&
93 if (nft_set_is_anonymous(set))
105 if (set->flags & NFT_SET_INTERVAL && interval != NULL &&
117 bool nft_rbtree_lookup(const struct net *net, const struct nft_set *set, argument
120 struct nft_rbtree *priv = nft_set_priv(set);
136 __nft_rbtree_get(const struct net *net, const struct nft_set *set, const u32 *key, struct nft_rbtree_elem **elem, unsigned int seq, unsigned int flags, u8 genmask) argument
201 nft_rbtree_get(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem, unsigned int flags) argument
226 nft_rbtree_gc_elem_remove(struct net *net, struct nft_set *set, struct nft_rbtree *priv, struct nft_rbtree_elem *rbe) argument
239 struct nft_set *set = (struct nft_set *)__set; local
291 nft_rbtree_update_first(const struct nft_set *set, struct nft_rbtree_elem *rbe, struct rb_node *first) argument
307 __nft_rbtree_insert(const struct net *net, const struct nft_set *set, struct nft_rbtree_elem *new, struct nft_elem_priv **elem_priv) argument
486 nft_rbtree_insert(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem, struct nft_elem_priv **elem_priv) argument
519 nft_rbtree_remove(const struct net *net, const struct nft_set *set, struct nft_elem_priv *elem_priv) argument
529 nft_rbtree_activate(const struct net *net, const struct nft_set *set, struct nft_elem_priv *elem_priv) argument
538 nft_rbtree_flush(const struct net *net, const struct nft_set *set, struct nft_elem_priv *elem_priv) argument
548 nft_rbtree_deactivate(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem) argument
589 nft_rbtree_walk(const struct nft_ctx *ctx, struct nft_set *set, struct nft_set_iter *iter) argument
615 nft_rbtree_gc_remove(struct net *net, struct nft_set *set, struct nft_rbtree *priv, struct nft_rbtree_elem *rbe) argument
623 nft_rbtree_gc(struct nft_set *set) argument
691 nft_rbtree_init(const struct nft_set *set, const struct nft_set_desc *desc, const struct nlattr * const nla[]) argument
706 nft_rbtree_destroy(const struct nft_ctx *ctx, const struct nft_set *set) argument
738 nft_rbtree_commit(struct nft_set *set) argument
746 nft_rbtree_gc_init(const struct nft_set *set) argument
[all...]
/linux-master/drivers/gpu/drm/amd/display/modules/power/
H A Dpower_helpers.c261 * as set of thresholds and set of offsets, together, implying
293 * as set of thresholds and set of offsets, together, implying
313 unsigned int set = params.set; local
324 ram_table->min_reduction[0][0] = min_reduction_table[abm_config[set][0]];
325 ram_table->min_reduction[1][0] = min_reduction_table[abm_config[set][0]];
326 ram_table->min_reduction[2][0] = min_reduction_table[abm_config[set][0]];
327 ram_table->min_reduction[3][0] = min_reduction_table[abm_config[set][
487 unsigned int set = params.set; local
634 unsigned int set = params.set; local
698 unsigned int set = params.set; local
[all...]
/linux-master/arch/xtensa/variants/csp/include/variant/
H A Dtie-asm.h65 * continue If macro invoked as part of a larger store sequence, set to 1
83 .set .Lxchal_ofs_, .Lxchal_ofs_ + 4
86 .set .Lxchal_ofs_, .Lxchal_ofs_ + 4
95 .set .Lxchal_ofs_, .Lxchal_ofs_ + 8
98 .set .Lxchal_ofs_, .Lxchal_ofs_ + 8
115 .set .Lxchal_ofs_, .Lxchal_ofs_ + 24
118 .set .Lxchal_ofs_, .Lxchal_ofs_ + 24
131 * continue If macro invoked as part of a larger load sequence, set to 1
149 .set .Lxchal_ofs_, .Lxchal_ofs_ + 4
152 .set
[all...]
/linux-master/arch/xtensa/variants/dc233c/include/variant/
H A Dtie-asm.h66 * continue If macro invoked as part of a larger store sequence, set to 1
84 .set .Lxchal_ofs_, .Lxchal_ofs_ + 4
87 .set .Lxchal_ofs_, .Lxchal_ofs_ + 4
96 .set .Lxchal_ofs_, .Lxchal_ofs_ + 8
99 .set .Lxchal_ofs_, .Lxchal_ofs_ + 8
114 .set .Lxchal_ofs_, .Lxchal_ofs_ + 20
117 .set .Lxchal_ofs_, .Lxchal_ofs_ + 20
130 * continue If macro invoked as part of a larger load sequence, set to 1
148 .set .Lxchal_ofs_, .Lxchal_ofs_ + 4
151 .set
[all...]
/linux-master/kernel/trace/
H A Dtrace_nop.c26 { } /* Always set a last empty entry */
64 static int nop_set_flag(struct trace_array *tr, u32 old_flags, u32 bit, int set) argument
71 printk(KERN_DEBUG "nop_test_accept flag set to %d: we accept."
73 set);
78 printk(KERN_DEBUG "nop_test_refuse flag set to %d: we refuse."
80 set);
/linux-master/block/
H A Dblk-mq.c216 * @set: tag_set to wait on
221 * the quiesce flag set using blk_mq_quiesce_queue_nowait.
223 void blk_mq_wait_quiesce_done(struct blk_mq_tag_set *set) argument
225 if (set->flags & BLK_MQ_F_BLOCKING)
226 synchronize_srcu(set->srcu);
277 void blk_mq_quiesce_tagset(struct blk_mq_tag_set *set) argument
281 mutex_lock(&set->tag_list_lock);
282 list_for_each_entry(q, &set->tag_list, tag_set_list) {
286 blk_mq_wait_quiesce_done(set);
287 mutex_unlock(&set
291 blk_mq_unquiesce_tagset(struct blk_mq_tag_set *set) argument
3256 blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags, unsigned int hctx_idx) argument
3307 hctx_idx_to_type(struct blk_mq_tag_set *set, unsigned int hctx_idx) argument
3326 blk_mq_get_hctx_node(struct blk_mq_tag_set *set, unsigned int hctx_idx) argument
3334 blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, unsigned int hctx_idx, unsigned int nr_tags, unsigned int reserved_tags) argument
3371 blk_mq_init_request(struct blk_mq_tag_set *set, struct request *rq, unsigned int hctx_idx, int node) argument
3386 blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags, unsigned int hctx_idx, unsigned int depth) argument
3650 blk_mq_exit_hctx(struct request_queue *q, struct blk_mq_tag_set *set, struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx) argument
3677 blk_mq_exit_hw_queues(struct request_queue *q, struct blk_mq_tag_set *set, int nr_queue) argument
3690 blk_mq_init_hctx(struct request_queue *q, struct blk_mq_tag_set *set, struct blk_mq_hw_ctx *hctx, unsigned hctx_idx) argument
3728 blk_mq_alloc_hctx(struct request_queue *q, struct blk_mq_tag_set *set, int node) argument
3795 struct blk_mq_tag_set *set = q->tag_set; local
3822 blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set, unsigned int hctx_idx, unsigned int depth) argument
3842 __blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set, int hctx_idx) argument
3857 blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags, unsigned int hctx_idx) argument
3867 __blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set, unsigned int hctx_idx) argument
3882 struct blk_mq_tag_set *set = q->tag_set; local
4009 blk_mq_update_tag_set_shared(struct blk_mq_tag_set *set, bool shared) argument
4025 struct blk_mq_tag_set *set = q->tag_set; local
4039 blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set, struct request_queue *q) argument
4117 blk_mq_alloc_queue(struct blk_mq_tag_set *set, struct queue_limits *lim, void *queuedata) argument
4164 __blk_mq_alloc_disk(struct blk_mq_tag_set *set, struct queue_limits *lim, void *queuedata, struct lock_class_key *lkclass) argument
4200 blk_mq_alloc_and_init_hctx( struct blk_mq_tag_set *set, struct request_queue *q, int hctx_idx, int node) argument
4234 blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set, struct request_queue *q) argument
4279 struct blk_mq_tag_set *set = q->tag_set; local
4288 blk_mq_init_allocated_queue(struct blk_mq_tag_set *set, struct request_queue *q) argument
4340 struct blk_mq_tag_set *set = q->tag_set; local
4348 __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set) argument
4385 blk_mq_alloc_set_map_and_rqs(struct blk_mq_tag_set *set) argument
4415 blk_mq_update_queue_map(struct blk_mq_tag_set *set) argument
4452 blk_mq_realloc_tag_set_tags(struct blk_mq_tag_set *set, int new_nr_hw_queues) argument
4492 blk_mq_alloc_tag_set(struct blk_mq_tag_set *set) argument
4591 blk_mq_alloc_sq_tag_set(struct blk_mq_tag_set *set, const struct blk_mq_ops *ops, unsigned int queue_depth, unsigned int set_flags) argument
4606 blk_mq_free_tag_set(struct blk_mq_tag_set *set) argument
4634 struct blk_mq_tag_set *set = q->tag_set; local
4762 __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues) argument
4835 blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues) argument
[all...]
/linux-master/drivers/usb/typec/
H A Dmux.h10 typec_switch_set_fn_t set; member in struct:typec_switch_dev
15 typec_mux_set_fn_t set; member in struct:typec_mux_dev
/linux-master/arch/parisc/include/asm/
H A Dbitops.h16 * on use of volatile and __*_bit() (set/clear/change):
59 int set; local
64 set = (old & mask) ? 1 : 0;
65 if (!set)
69 return set;
77 int set; local
82 set = (old & mask) ? 1 : 0;
83 if (set)
87 return set;
111 * __ffs() return is undefined if no bit is set
[all...]
/linux-master/drivers/soc/ti/
H A Dti_sci_inta_msi.c69 int set, i, count = 0; local
74 for (set = 0; set < res->sets; set++) {
75 for (i = 0; i < res->desc[set].num; i++, count++) {
76 msi_desc.msi_index = res->desc[set].start + i;
81 for (i = 0; i < res->desc[set].num_sec; i++, count++) {
82 msi_desc.msi_index = res->desc[set].start_sec + i;
/linux-master/arch/m68k/sun3/
H A Dsun3.h14 int sun3_hwclk(int set, struct rtc_time *t);
/linux-master/include/linux/netfilter/ipset/
H A Dip_set.h59 /* Mark set with an extension which needs to call destroy */
84 void (*destroy)(struct ip_set *set, void *ext);
136 typedef int (*ipset_adtfn)(struct ip_set *set, void *value,
155 int (*kadt)(struct ip_set *set, const struct sk_buff *skb,
163 int (*uadt)(struct ip_set *set, struct nlattr *tb[],
169 /* When adding entries and set is full, try to resize the set */
170 int (*resize)(struct ip_set *set, bool retried);
171 /* Destroy the set */
172 void (*destroy)(struct ip_set *set);
286 ip_set_ext_destroy(struct ip_set *set, void *data) argument
367 ip_set_enomatch(int ret, u32 flags, enum ipset_adt adt, struct ip_set *set) argument
[all...]

Completed in 532 milliseconds

1234567891011>>