Searched defs:mask (Results 51 - 75 of 147) sorted by relevance

123456

/include/uapi/linux/
H A Drose.h67 unsigned short mask; member in struct:rose_route_struct
/include/linux/crush/
H A Dcrush.h65 * The rule mask is used to describe what the rule is intended for.
78 struct crush_rule_mask mask; member in struct:crush_rule
/include/linux/
H A Ddma-mapping.h57 int (*dma_supported)(struct device *dev, u64 mask);
58 int (*set_dma_mask)(struct device *dev, u64 mask);
95 int dma_set_coherent_mask(struct device *dev, u64 mask);
97 static inline int dma_set_coherent_mask(struct device *dev, u64 mask) argument
99 if (!dma_supported(dev, mask))
101 dev->coherent_dma_mask = mask;
107 * Set both the DMA mask and the coherent DMA mask to the same thing.
109 * as the DMA API guarantees that the coherent DMA mask can be set to
110 * the same or smaller than the streaming DMA mask
112 dma_set_mask_and_coherent(struct device *dev, u64 mask) argument
124 dma_coerce_mask_and_coherent(struct device *dev, u64 mask) argument
160 dma_set_seg_boundary(struct device *dev, unsigned long mask) argument
[all...]
H A Dextcon.h215 extern int extcon_update_state(struct extcon_dev *edev, u32 mask, u32 state);
304 static inline int extcon_update_state(struct extcon_dev *edev, u32 mask, argument
H A Dnetfilter.h31 const union nf_inet_addr *mask)
33 result->all[0] = a1->all[0] & mask->all[0];
34 result->all[1] = a1->all[1] & mask->all[1];
35 result->all[2] = a1->all[2] & mask->all[2];
36 result->all[3] = a1->all[3] & mask->all[3];
29 nf_inet_addr_mask(const union nf_inet_addr *a1, union nf_inet_addr *result, const union nf_inet_addr *mask) argument
H A Dsm501.h112 unsigned long mask; member in struct:sm501_reg_init
H A Dclk-provider.h277 * of this register, and mask of gate bits are in higher 16-bit of this
329 * of this register, and mask of divider bits are in higher 16-bit of this
382 * register, and mask of mux bits are in higher 16-bit of this register.
390 u32 mask; member in struct:clk_mux
411 void __iomem *reg, u8 shift, u32 mask,
H A Dfsnotify_backend.h87 * should_send_event - given a group, inode, and mask this function determines
101 u32 mask, void *data, int data_type,
117 u32 mask; /* the type of access, bitwise OR for FS_* event types */ member in struct:fsnotify_event
122 * events. The mask holds the subset of event types this group cares about.
220 * of a type matching mask or only interested in those events.
228 __u32 mask; /* mask this mark is for */ member in struct:fsnotify_mark
255 extern int fsnotify(struct inode *to_tell, __u32 mask, void *data, int data_is,
257 extern int __fsnotify_parent(struct path *path, struct dentry *dentry, __u32 mask);
352 extern void fsnotify_set_mark_ignored_mask_locked(struct fsnotify_mark *mark, __u32 mask);
383 fsnotify(struct inode *to_tell, __u32 mask, void *data, int data_is, const unsigned char *name, u32 cookie) argument
389 __fsnotify_parent(struct path *path, struct dentry *dentry, __u32 mask) argument
[all...]
H A Dinetdevice.h170 __be32 mask);
177 * Check if a mask is acceptable.
180 static __inline__ int bad_mask(__be32 mask, __be32 addr) argument
183 if (addr & (mask = ~mask))
185 hmask = ntohl(mask);
249 static __inline__ int inet_mask_len(__be32 mask) argument
251 __u32 hmask = ntohl(mask);
H A Dpagemap.h76 static inline void mapping_set_gfp_mask(struct address_space *m, gfp_t mask) argument
79 (__force unsigned long)mask;
H A Dpm_qos.h138 enum pm_qos_flags_status __dev_pm_qos_flags(struct device *dev, s32 mask);
139 enum pm_qos_flags_status dev_pm_qos_flags(struct device *dev, s32 mask);
159 s32 mask)
162 s32 mask)
210 int dev_pm_qos_update_flags(struct device *dev, s32 mask, bool set);
158 __dev_pm_qos_flags(struct device *dev, s32 mask) argument
161 dev_pm_qos_flags(struct device *dev, s32 mask) argument
H A Dvia-core.h116 void viafb_irq_enable(u32 mask);
117 void viafb_irq_disable(u32 mask);
141 #define VDE_I_MCCFIEN 0x00040000 /* MC comp frame int mask enable */
217 static inline void via_write_reg_mask(u16 port, u8 index, u8 data, u8 mask) argument
223 outb((data & mask) | (old & ~mask), port + 1);
229 static inline void via_write_misc_reg_mask(u8 data, u8 mask) argument
232 outb((data & mask) | (old & ~mask), VIA_MISC_REG_WRITE);
H A Daudit.h53 u32 mask[AUDIT_BITMASK_SIZE]; member in struct:audit_krule
/include/linux/mmc/
H A Dsh_mmcif.h110 static inline int sh_mmcif_boot_cmd_poll(void __iomem *base, unsigned long mask) argument
117 if (tmp & mask) {
118 sh_mmcif_writel(base, MMCIF_CE_INT, tmp & ~mask);
/include/linux/netfilter/
H A Dx_tables.h340 const unsigned long *mask = (const unsigned long *)_mask; local
343 ret = (a[0] ^ b[0]) & mask[0];
345 ret |= (a[1] ^ b[1]) & mask[1];
347 ret |= (a[2] ^ b[2]) & mask[2];
349 ret |= (a[3] ^ b[3]) & mask[3];
/include/sound/
H A Dpcm_params.h71 static inline void snd_mask_none(struct snd_mask *mask) argument
73 memset(mask, 0, sizeof(*mask));
76 static inline void snd_mask_any(struct snd_mask *mask) argument
78 memset(mask, 0xff, SNDRV_MASK_SIZE * sizeof(u_int32_t));
81 static inline int snd_mask_empty(const struct snd_mask *mask) argument
85 if (mask->bits[i])
90 static inline unsigned int snd_mask_min(const struct snd_mask *mask) argument
94 if (mask->bits[i])
95 return ffs(mask
100 snd_mask_max(const struct snd_mask *mask) argument
110 snd_mask_set(struct snd_mask *mask, unsigned int val) argument
115 snd_mask_reset(struct snd_mask *mask, unsigned int val) argument
120 snd_mask_set_range(struct snd_mask *mask, unsigned int from, unsigned int to) argument
128 snd_mask_reset_range(struct snd_mask *mask, unsigned int from, unsigned int to) argument
136 snd_mask_leave(struct snd_mask *mask, unsigned int val) argument
144 snd_mask_intersect(struct snd_mask *mask, const struct snd_mask *v) argument
152 snd_mask_eq(const struct snd_mask *mask, const struct snd_mask *v) argument
158 snd_mask_copy(struct snd_mask *mask, const struct snd_mask *v) argument
164 snd_mask_test(const struct snd_mask *mask, unsigned int val) argument
169 snd_mask_single(const struct snd_mask *mask) argument
184 snd_mask_refine(struct snd_mask *mask, const struct snd_mask *v) argument
195 snd_mask_refine_first(struct snd_mask *mask) argument
203 snd_mask_refine_last(struct snd_mask *mask) argument
211 snd_mask_refine_min(struct snd_mask *mask, unsigned int val) argument
221 snd_mask_refine_max(struct snd_mask *mask, unsigned int val) argument
231 snd_mask_refine_set(struct snd_mask *mask, unsigned int val) argument
241 snd_mask_value(const struct snd_mask *mask) argument
[all...]
/include/uapi/linux/dvb/
H A Ddmx.h93 __u8 mask[DMX_FILTER_SIZE]; member in struct:dmx_filter
/include/uapi/linux/netfilter_arp/
H A Darp_tables.h38 char mask[ARPT_DEV_ADDR_LEN_MAX]; member in struct:arpt_devaddr_info
76 #define ARPT_F_MASK 0x00 /* All possible flag bits mask. */
89 #define ARPT_INV_MASK 0x03FF /* All possible flag bits mask. */
/include/video/
H A Dmbxfb.h88 __u32 mask; /* which bits to touch (for write) */ member in struct:mbxfb_reg
/include/crypto/
H A Dalgapi.h25 unsigned int (*ctxsize)(struct crypto_alg *alg, u32 type, u32 mask);
27 int (*init)(struct crypto_tfm *tfm, u32 type, u32 mask);
31 struct crypto_alg *(*lookup)(const char *name, u32 type, u32 mask);
65 u32 mask; member in struct:crypto_spawn
143 struct crypto_instance *inst, u32 mask);
150 u32 mask);
164 u32 type, u32 mask);
167 u32 type, u32 mask)
169 return crypto_attr_alg2(rta, NULL, type, mask);
262 u32 mask local
166 crypto_attr_alg(struct rtattr *rta, u32 type, u32 mask) argument
281 u32 mask = CRYPTO_ALG_TYPE_MASK; local
294 u32 mask = CRYPTO_ALG_TYPE_HASH_MASK; local
381 crypto_get_attr_alg(struct rtattr **tb, u32 type, u32 mask) argument
391 crypto_requires_sync(u32 type, u32 mask) argument
[all...]
/include/linux/iio/common/
H A Dst_sensors.h44 #define ST_SENSORS_LSM_CHANNELS(device_type, mask, index, mod, \
49 .info_mask_separate = mask, \
78 u8 mask; member in struct:st_sensor_odr
84 u8 mask; member in struct:st_sensor_power
91 u8 mask; member in struct:st_sensor_axis
103 u8 mask; member in struct:st_sensor_fullscale
110 * @mask: mask to write the block data update flag.
114 u8 mask; member in struct:st_sensor_bdu
120 * @mask_int1: mask t
[all...]
/include/media/
H A Drc-core.h40 * @mask: Mask of bits of scancode to compare.
44 u32 mask; member in struct:rc_scancode_filter
86 * devices, a mask is provided to allow its usage. Drivers should generally
110 * @s_tx_mask: set transmitter mask (for devices with multiple tx outputs)
163 int (*s_tx_mask)(struct rc_dev *dev, u32 mask);
263 /* extract mask bits out of data and pack them into the result */
264 static inline u32 ir_extract_bits(u32 data, u32 mask) argument
269 if (mask & 1) {
275 } while (mask >>= 1);
/include/net/
H A Dnetlabel.h360 const void *mask,
365 const void *mask,
370 const void *mask,
377 const void *mask,
386 const struct in_addr *mask,
448 const void *mask,
456 void *mask,
464 const void *mask,
474 const void *mask,
493 const struct in_addr *mask,
445 netlbl_cfg_map_del(const char *domain, u16 family, const void *addr, const void *mask, struct netlbl_audit *audit_info) argument
453 netlbl_cfg_unlbl_map_add(const char *domain, u16 family, void *addr, void *mask, struct netlbl_audit *audit_info) argument
461 netlbl_cfg_unlbl_static_add(struct net *net, const char *dev_name, const void *addr, const void *mask, u16 family, u32 secid, struct netlbl_audit *audit_info) argument
471 netlbl_cfg_unlbl_static_del(struct net *net, const char *dev_name, const void *addr, const void *mask, u16 family, struct netlbl_audit *audit_info) argument
490 netlbl_cfg_cipsov4_map_add(u32 doi, const char *domain, const struct in_addr *addr, const struct in_addr *mask, struct netlbl_audit *audit_info) argument
[all...]
/include/uapi/drm/
H A Dsavage_drm.h205 unsigned int mask; member in struct:drm_savage_cmd_header::__anon1617
/include/drm/ttm/
H A Dttm_bo_driver.h250 * @available_caching: A mask of available caching types, TTM_PL_FLAG_XX,
553 * @mask: Mask of bits to change.
555 * Convenience function to change a number of bits identified by a mask.
559 ttm_flag_masked(uint32_t *old, uint32_t new, uint32_t mask) argument
561 *old ^= (*old ^ new) & mask;

Completed in 3450 milliseconds

123456