Searched refs:map (Results 176 - 200 of 2546) sorted by last modified time

1234567891011>>

/linux-master/tools/lib/bpf/
H A DMakefile7 VERSION_SCRIPT := libbpf.map
/linux-master/sound/soc/
H A Dsoc-core.c1080 * It will be a map seen from a larger number of DAI.
1097 /* check default map size */
1104 /* Compensate missing map for ... */
1527 struct snd_soc_codec_conf *map = &card->codec_conf[i]; local
1529 if (snd_soc_is_matching_component(&map->dlc, component) &&
1530 map->name_prefix) {
1531 component->name_prefix = map->name_prefix;
/linux-master/scripts/package/
H A Dkernel.spec62 cp System.map %{buildroot}/lib/modules/%{KERNELRELEASE}
73 for x in System.map config kernel modules.builtin \
83 for x in System.map config vmlinuz; do
102 for file in vmlinuz System.map config; do
H A Dbuilddeb44 cp System.map "${pdir}/usr/lib/uml/modules/${KERNELRELEASE}/System.map"
49 cp System.map "${pdir}/boot/System.map-${KERNELRELEASE}"
/linux-master/kernel/bpf/
H A Dcpumap.c8 * DOC: cpu map
9 * The 'cpumap' is primarily used as a backend map for XDP BPF helper
13 * this map type redirects raw XDP frames to another CPU. The remote
57 /* Struct for every remote "destination" CPU in map */
59 u32 cpu; /* kthread CPU and map index */
60 int map_id; /* Back reference to map */
77 struct bpf_map map; member in struct:bpf_cpu_map
78 /* Below members specific for map type */
104 bpf_map_init_from_attr(&cmap->map, attr);
107 cmap->cpu_map = bpf_map_area_alloc(cmap->map
369 __cpu_map_load_bpf_program(struct bpf_cpu_map_entry *rcpu, struct bpf_map *map, int fd) argument
391 __cpu_map_entry_alloc(struct bpf_map *map, struct bpf_cpumap_val *value, u32 cpu) argument
515 cpu_map_delete_elem(struct bpf_map *map, void *key) argument
528 cpu_map_update_elem(struct bpf_map *map, void *key, void *value, u64 map_flags) argument
566 cpu_map_free(struct bpf_map *map) argument
602 __cpu_map_lookup_elem(struct bpf_map *map, u32 key) argument
615 cpu_map_lookup_elem(struct bpf_map *map, void *key) argument
623 cpu_map_get_next_key(struct bpf_map *map, void *key, void *next_key) argument
640 cpu_map_redirect(struct bpf_map *map, u64 index, u64 flags) argument
646 cpu_map_mem_usage(const struct bpf_map *map) argument
[all...]
/linux-master/include/linux/
H A Duio_driver.h40 * @map: for use by the UIO core only.
51 struct uio_map *map; member in struct:uio_mem
H A Drcupdate.h327 static inline void rcu_lock_acquire(struct lockdep_map *map) argument
329 lock_acquire(map, 0, 0, 2, 0, NULL, _THIS_IP_);
332 static inline void rcu_try_lock_acquire(struct lockdep_map *map) argument
334 lock_acquire(map, 0, 1, 2, 0, NULL, _THIS_IP_);
337 static inline void rcu_lock_release(struct lockdep_map *map) argument
339 lock_release(map, _THIS_IP_);
714 * example, reference counting or locking. In C11, it would map to
H A Dnetdevice.h732 /* XPS map type and offset of the xps map within net_device->xps_maps[]. */
741 * This structure holds an XPS map which can be of variable length. The
742 * map is an array of queues.
769 struct xps_map __rcu *attr_map[]; /* Either CPUs map or RXQs map */
1079 * int (*ndo_set_config)(struct net_device *dev, struct ifmap *map);
1386 struct ifmap *map);
H A Dfb.h115 struct fb_cmap_user cmap; /* color map info */
328 __u32 length; /* number of tiles in the map */
329 const __u8 *data; /* actual tile map: a bitmap array, packed
338 __u32 index; /* what tile to use: index to tile map */
361 __u32 *indices; /* array of indices to tile map */
375 void (*fb_settile)(struct fb_info *info, struct fb_tilemap *map);
388 /* get maximum length of the tile map */
H A Dbitmap.h67 * bitmap_scatter(dst, src, mask, nbits) *dst = map(dense, sparse)(src)
68 * bitmap_gather(dst, src, mask, nbits) *dst = map(sparse, dense)(src)
69 * bitmap_remap(dst, src, old, new, nbits) *dst = map(old, new)(src)
70 * bitmap_bitremap(oldbit, old, new, nbits) newbit = map(old, new)(oldbit)
84 * bitmap_get_value8(map, start) Get 8bit value from map at start
85 * bitmap_set_value8(map, value, start) Set 8bit value to map at start
180 void __bitmap_set(unsigned long *map, unsigned int start, int len);
181 void __bitmap_clear(unsigned long *map, unsigne
203 bitmap_find_next_zero_area(unsigned long *map, unsigned long size, unsigned long start, unsigned int nr, unsigned long align_mask) argument
445 bitmap_set(unsigned long *map, unsigned int start, unsigned int nbits) argument
461 bitmap_clear(unsigned long *map, unsigned int start, unsigned int nbits) argument
732 bitmap_get_value8(const unsigned long *map, unsigned long start) argument
747 bitmap_set_value8(unsigned long *map, unsigned long value, unsigned long start) argument
[all...]
/linux-master/fs/xfs/
H A Dxfs_dquot.c316 struct xfs_bmbt_irec map; local
354 XFS_DQUOT_CLUSTER_SIZE_FSB, XFS_BMAPI_METADATA, 0, &map,
359 ASSERT(map.br_blockcount == XFS_DQUOT_CLUSTER_SIZE_FSB);
361 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
362 (map.br_startblock != HOLESTARTBLOCK));
367 dqp->q_blkno = XFS_FSB_TO_DADDR(mp, map.br_startblock);
434 struct xfs_bmbt_irec map; local
453 * Find the block map; no allocations yet
456 XFS_DQUOT_CLUSTER_SIZE_FSB, &map, &nmaps, 0);
462 ASSERT(map
[all...]
/linux-master/drivers/video/fbdev/
H A Dvga16fb.c653 static const unsigned char map[] = { 000, 001, 010, 011 }; local
658 val = map[red>>14] | ((map[green>>14]) << 1) | ((map[blue>>14]) << 2);
1333 printk(KERN_ERR "vga16fb: unable to map device\n");
H A Ds3fb.c290 static void s3fb_settile_fast(struct fb_info *info, struct fb_tilemap *map) argument
292 const u8 *font = map->data;
296 if ((map->width != 8) || (map->height != 16) ||
297 (map->depth != 1) || (map->length != 256)) {
299 map->width, map->height, map->depth, map
[all...]
H A Darkfb.c120 static void arkfb_settile(struct fb_info *info, struct fb_tilemap *map) argument
122 const u8 *font = map->data;
126 if ((map->width != 8) || (map->height != 16) ||
127 (map->depth != 1) || (map->length != 256)) {
129 map->width, map->height, map->depth, map
[all...]
/linux-master/drivers/video/fbdev/core/
H A Dsvgalib.c194 void svga_settile(struct fb_info *info, struct fb_tilemap *map) argument
196 const u8 *font = map->data;
200 if ((map->width != 8) || (map->height != 16) ||
201 (map->depth != 1) || (map->length != 256)) {
203 map->width, map->height, map->depth, map
[all...]
H A Dtileblit.c133 struct fb_tilemap map; local
144 map.width = vc->vc_font.width;
145 map.height = vc->vc_font.height;
146 map.depth = 1;
147 map.length = vc->vc_font.charcount;
148 map.data = ops->p->fontdata;
149 info->tileops->fb_settile(info, &map);
/linux-master/drivers/usb/serial/
H A Dftdi_sio.c1941 unsigned long map = priv->gpio_altfunc; local
1943 bitmap_complement(valid_mask, &map, ngpios);
/linux-master/drivers/tty/vt/
H A DMakefile3 # This file contains the font map for the default (hardware) font
26 # loadkeys version for the map. By default, we'll use the shipped
32 $(obj)/defkeymap.c: $(obj)/%.c: $(src)/%.map
/linux-master/drivers/staging/gdm724x/
H A Dgdm_lte.c62 static int gdm_lte_set_config(struct net_device *dev, struct ifmap *map) argument
/linux-master/drivers/scsi/
H A Dscsi_debug.c380 void *map_storep; /* provisioning map */
7175 static DRIVER_ATTR_RO(map);
7762 pr_err("LBP map oom\n");
7986 struct blk_mq_queue_map *map = &shost->tag_set.map[i]; local
7988 map->nr_queues = 0;
7991 map->nr_queues = submit_queues - poll_queues;
7993 map->nr_queues = poll_queues;
7995 if (!map->nr_queues) {
8000 map
[all...]
/linux-master/drivers/remoteproc/
H A Dstm32_rproc.c53 struct regmap *map; member in struct:stm32_syscon
122 dev_dbg(dev, "map memory: %pad+%zx\n", &mem->dma, mem->len);
125 dev_err(dev, "Unable to map memory region: %pad+0x%zx\n",
239 /* No need to map vdev buffer */
439 err = regmap_update_bits(hold_boot.map, hold_boot.reg,
479 if (ddata->pdds.map) {
480 err = regmap_update_bits(ddata->pdds.map, ddata->pdds.reg,
545 if (ddata->pdds.map) {
546 err = regmap_update_bits(ddata->pdds.map, ddata->pdds.reg,
555 if (ddata->m4_state.map) {
[all...]
H A Dremoteproc_virtio.c13 #include <linux/dma-map-ops.h>
31 const struct bus_dma_region *map = from->dma_range_map, *new_map, *r; local
34 if (!map)
37 for (r = map; r->size; r++)
40 new_map = kmemdup(map, array_size(num_ranges + 1, sizeof(*map)),
H A Dqcom_q6v5_mss.c479 dev_err(qproc->dev, "unable to map memory region: %pa+%zx\n",
869 static int q6v5proc_enable_qchannel(struct q6v5 *qproc, struct regmap *map, u32 offset) argument
889 regmap_write(map, offset + QACCEPT_REQ_REG, 1);
892 ret = regmap_read_poll_timeout(map, offset + QACCEPT_ACCEPT_REG, val, val, 5,
902 static void q6v5proc_disable_qchannel(struct q6v5 *qproc, struct regmap *map, u32 offset) argument
916 regmap_read_poll_timeout(map, offset + QACCEPT_ACTIVE_REG, val, !val, 5,
920 regmap_write(map, offset + QACCEPT_REQ_REG, 0);
930 ret = regmap_read(map, offset + QACCEPT_DENY_REG, &val);
932 regmap_write(map, offset + QACCEPT_REQ_REG, 1);
936 ret = regmap_read(map, offse
[all...]
/linux-master/drivers/phy/tegra/
H A Dxusb.c423 const struct tegra_xusb_lane_map *map,
428 for (; map->type; map++) {
429 if (port->index != map->port)
432 lane = tegra_xusb_find_lane(port->padctl, map->type,
433 map->index);
442 map->type, map->index, match->soc->name);
809 usb2->base.lane = usb2->base.ops->map(&usb2->base);
876 ulpi->base.lane = ulpi->base.ops->map(
422 tegra_xusb_port_find_lane(struct tegra_xusb_port *port, const struct tegra_xusb_lane_map *map, const char *function) argument
[all...]
/linux-master/drivers/net/wan/
H A Dfsl_qmc_hdlc.c349 dev_err(qmc_hdlc->dev, "failed to map skb\n");
409 DECLARE_BITMAP(map, 64);
419 bitmap_from_u64(map, slot_map);
420 bitmap_scatter(ts_mask, map, ts_mask_avail, 64);
422 if (bitmap_weight(ts_mask, 64) != bitmap_weight(map, 64)) {
424 map, ts_mask_avail, ts_mask);
438 DECLARE_BITMAP(map, 64);
455 bitmap_gather(map, ts_mask, ts_mask_avail, 64);
457 if (bitmap_weight(ts_mask, 64) != bitmap_weight(map, 64)) {
459 ts_mask_avail, ts_mask, map);
[all...]

Completed in 505 milliseconds

1234567891011>>